packages feed

bench-show (empty) → 0.2.0

raw patch · 26 files changed

+5156/−0 lines, 26 filesdep +Chartdep +Chart-diagramsdep +ansi-wl-pprint

Dependencies added: Chart, Chart-diagrams, ansi-wl-pprint, base, bench-show, csv, directory, filepath, mwc-random, split, statistics, text, transformers, vector

Files

+ Changelog.md view
@@ -0,0 +1,69 @@+## 0.2.0++### Release Notes++* Due to a bug in the `statistics` package, reporting may crash on certain+  inputs with a `vector index out of bounds` message. The bug has been fixed+  and will be available in an upcoming release.++### Breaking Changes++* The package `bench-graph` has been renamed to `bench-show` to reflect the+  fact that it now includes text reports as well. This includes the change of+  module name `BenchGraph` to `BenchShow`.+* The `bgraph` API has been removed and replaced by `graph`+* The way output file is generated has changed. Now field name or group name+  being plotted or both may be suffixed to the output file name automatically.+  The estimator type (e.g. mean or median) is also suffixed to the filename.+* Changes to `Config` record:+    * `chartTitle` field has been renamed to `title`.+    * The type of `outputDir` is now a `Maybe`.+    * `comparisonStyle` has been replaced by `presentation`+    * `ComparisonStyle` has been replaced by `Presentation`+    * `sortBenchmarks` has been replaced by `selectBenchmarks`. The new+      function can be defined as follows in terms of an older definition:+        `selectBenchmarks = \g ->+            sortBenchmarks $ either error (map fst) $ f (ColumnIndex 0)`+    * `sortBenchGroups` has been replaced by `selectGroups`+    * `setYScale` field has been broken down into two fields `fieldRanges` and+      `fieldTicks`. Now you also need to specify which fields' scale+      you want to set.++### Enhancements++* A `report` API has been added to generate textual reports+* More ways to compare groups have been added, including percent and percent+  difference+* Now we can show multiple fields as columns in a single benchmark group report+* Field units are now automatically selected based on the range of values+* Additions to `Config` record type:+  * `selectFields` added to select the fields to be plotted and to change+    their presentation order.+  * `selectBenchmarks` can now sort the results based on values corresponding to+    any field or benchmark group.+  * new fields added: `diffStrategy`, `verbose`, `estimator`, `threshold`++## 0.1.4++* Fix a bug resulting in a bogus error, something like "Field [time] found at+  different indexes.." even though the field has exactly the same index at all+  places.++## 0.1.3++* Add maxrss plotting support++## 0.1.2++* Fixed a bug that caused missing graphs in some cases when multiple iterations+  of a benchmark are present in the bechmark results file.++* Better error reporting to pinpoint errors when a problem occurs.++## 0.1.1++* Support GHC 8.4++## 0.1.0++* Initial release
+ LICENSE view
@@ -0,0 +1,27 @@+Copyright (c) 2018, Harendra Kumar+All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met:++1. Redistributions of source code must retain the above copyright notice, this+list of conditions and the following disclaimer.++2. Redistributions in binary form must reproduce the above copyright notice,+this list of conditions and the following disclaimer in the documentation+and/or other materials provided with the distribution.++3. Neither the name of the copyright holder nor the names of its contributors+may be used to endorse or promote products derived from this software without+specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ README.md view
@@ -0,0 +1,158 @@+# bench-show++Generate text reports and graphical charts from the benchmark results+generated by `gauge` or `criterion`, showing or comparing benchmarks in+many useful ways. In a few lines of code, we can report time taken, peak+memory usage, allocations, among many other fields; we can group benchmarks+and compare the groups; we can compare benchmarks before and after a change;+we can show absolute or percentage difference from the baseline; we can sort+the results to get the worst affected benchmarks by percentage change.++It can help us in answering questions like the following, visually or+textually:++* Across two benchmark runs, show all the operations that resulted in a+  regression of more than 10%, so that we can quickly identify and fix+  performance problems in our application.+* Across two (or more) packages providing similar functionality, show all the+  operations where the performance differs by more than 10%, so that we can+  critically analyze the packages and choose the right one.++## Quick Start++Use `gauge` or `criterion` to generate a `results.csv` file, and then use the+following code to generate a textual report or a graph:++```+report "results.csv"  Nothing defaultConfig+graph  "results.csv" "output" defaultConfig+```++For advanced usage, control the generated report by modifying the+`defaultConfig`.++## Reports and Charts++`report` with `Fields` presentation style generates a multi-column report.  We+can select many fields from a `gauge` raw report.  Units of the fields are+automatically determined based on the range of values:++```haskell+report "results.csv" Nothing defaultConfig { presentation = Fields }+```++```+Benchmark     time(μs) maxrss(MiB)+------------- -------- -----------+vector/fold     641.62        2.75+streamly/fold   639.96        2.75+vector/map      638.89        2.72+streamly/map    653.36        2.66+vector/zip      651.42        2.58+streamly/zip    644.33        2.59+```++`graph` generates one bar chart per field:++```+graph "results.csv" "output" defaultConfig+```++When the input file contains results from a single benchmark run, by default+all the benchmarks are placed in a single benchmark group named "default".++[![Median Time Grouped](https://github.com/composewell/bench-show/blob/master/docs/full-median-time.svg)](https://github.com/composewell/bench-show/blob/master/docs/full-median-time.svg)++## Grouping++Let's write a benchmark classifier to put the `streamly` and `vector`+benchmarks in their own groups:++```haskell+   classifier name =+       case splitOn "/" name of+           grp : bench -> Just (grp, concat bench)+           _          -> Nothing+```++Now we can show the two benchmark groups as separate columns. We can+generate reports comparing different benchmark fields (e.g. `time` and+`maxrss`) for all the groups:++```haskell+   report "results.csv" Nothing+     defaultConfig { classifyBenchmark = classifier }+```++```+(time)(Median)+Benchmark streamly(μs) vector(μs)+--------- ------------ ----------+fold            639.96     641.62+map             653.36     638.89+zip             644.33     651.42+```++We can do the same graphically as well, just replace `report` with `graph`+in the code above.  Each group is placed as a cluster on the graph. Multiple+clusters are placed side by side (i.e. on the same scale) for easy+comparison. For example:++[![Median Time Grouped](https://github.com/composewell/bench-show/blob/master/docs/grouped-median-time.svg)](https://github.com/composewell/bench-show/blob/master/docs/grouped-median-time.svg)++## Regression, Percentage Difference and Sorting++We can append benchmarks results from multiple runs to the same file. These+runs can then be compared. We can run benchmarks before and after a change+and then report the regressions by percentage change in a sorted order:++Given a results file with two runs, this code generates the report that+follows:++```haskell+   report "results.csv" Nothing+     defaultConfig+         { classifyBenchmark = classifier+         , presentation = Groups PercentDiff+         , selectBenchmarks = \f ->+              reverse+              $ map fst+              $ sortBy (comparing snd)+              $ either error id $ f $ ColumnIndex 1+         }+```++```+(time)(Median)(Diff using min estimator)+Benchmark streamly(0)(μs)(base) streamly(1)(%)(-base)+--------- --------------------- ---------------------+zip                      644.33                +23.28+map                      653.36                 +7.65+fold                     639.96                -15.63+```++It tells us that in the second run the worst affected benchmark is zip+taking 23.28 percent more time compared to the baseline.++Graphically:++[![Median Time Regression](https://github.com/composewell/bench-show/blob/master/docs/regression-percent-descending-median-time.svg)](https://github.com/composewell/bench-show/blob/master/docs/regression-percent-descending-median-time.svg)++## Full Documentation and examples++* See the [haddock documentation](http://hackage.haskell.org/package/bench-show) on Hackage+* See the [comprehensive tutorial](http://hackage.haskell.org/package/bench-show) module in the haddock docs+* For examples see the [test directory](https://github.com/composewell/bench-show/tree/master/test) in the package++## Contributions and Feedback++Contributions are welcome! Please see the [TODO.md](TODO.md) file or the+existing [issues](https://github.com/composewell/bench-show/issues) if you want+to pick up something to work on.++Any feedback on improvements or the direction of the package is welcome. You+can always send an email to the+[maintainer](https://github.com/composewell/bench-show/blob/master/bench-show.cabal)+or [raise an issue](https://github.com/composewell/bench-show/issues/new) for+anything you want to suggest or discuss, or send a PR for any change that you+would like to make.
+ bench-show.cabal view
@@ -0,0 +1,156 @@+name:               bench-show+version:            0.2.0+license:            BSD3+author:             Harendra Kumar+maintainer:         harendra.kumar@gmail.com+bug-reports:        https://github.com/composewell/bench-show/issues+synopsis:           Show, plot and compare benchmark results+description:+  Generate text reports and graphical charts from benchmark results+  generated by @gauge@ or @criterion@, showing or comparing benchmarks in+  many useful ways. In a few lines of code, we can report time taken, peak+  memory usage, allocations, among many other fields; we can arrange benchmarks+  in groups and compare the groups; we can compare benchmark results before and+  after a change; we can show the difference from baseline in absolute terms or+  as a percentage; we can sort the results by percentage change to get the+  worst affected benchmarks.+  .+  @bench-show@ helps us in answering questions like the following, visually or+  textually:+  .+  * Across two benchmark runs, show all the operations that resulted in a+    regression of more than 10%, so that we can quickly identify and fix+    performance problems in our application.+  * Across two (or more) packages (providing similar functionality), show all+    the operations where the performance differs by more than 10%, so that we+    can critically analyze the packages and choose the right one.+  .+  Quick Start: Use @gauge@ or @criterion@ to generate a @results.csv@ file, and+  then use the following code to generate a textual report or a graph:+  .+  @+  report "results.csv"  Nothing defaultConfig+  graph  "results.csv" "output" defaultConfig+  @+  .+  For example, you can show can show % regression from a baseline in descending+  order texttually as follows:+  .+  @+  (time)(Median)(Diff using min estimator)+  Benchmark streamly(0)(μs)(base) streamly(1)(%)(-base)+  \--------- --------------------- ---------------------+  zip                      644.33                +23.28+  map                      653.36                 +7.65+  fold                     639.96                -15.63+  @+  .+  To show the same graphically:+  .+  <<docs/regression-percent-descending-median-time.svg>>+  .+  See the README and the "BenchShow.Tutorial" module for comprehensive+  documentation.++category:            Performance, Benchmarking+homepage:            https://github.com/composewell/bench-show+license-file:        LICENSE+tested-with:           GHC==8.4.3+                     , GHC==8.2.2+                     , GHC==7.10.3+copyright:           2017, 2018 Composewell Technologies+stability:           Experimental+build-type:          Simple+cabal-version:       1.18++extra-source-files:+    Changelog.md+    README.md+    stack.yaml+    stack-8.2.yaml+    test/results.csv+    test/results.csvraw+    test/results-doc.csv+    test/results-doc-multi.csv++    docs/full-median-time.svg+    docs/grouped-median-time.svg+    docs/grouped-delta-median-time.svg+    docs/grouped-percent-delta-coeff-time.svg+    docs/grouped-percent-delta-median-time.svg+    docs/grouped-percent-delta-sorted-median-time.svg+    docs/grouped-single-estimator-coeff-time.svg+    docs/regression-percent-descending-median-time.svg++extra-doc-files:+    docs/full-median-time.svg+    docs/grouped-median-time.svg+    docs/grouped-delta-median-time.svg+    docs/grouped-percent-delta-coeff-time.svg+    docs/grouped-percent-delta-median-time.svg+    docs/grouped-percent-delta-sorted-median-time.svg+    docs/grouped-single-estimator-coeff-time.svg+    docs/regression-percent-descending-median-time.svg++source-repository head+    type: git+    location: https://github.com/composewell/bench-show++library+    hs-source-dirs:   lib+    exposed-modules:  BenchShow+                    , BenchShow.Tutorial+    other-modules:    BenchShow.Analysis+                    , BenchShow.Common+                    , BenchShow.Graph+                    , BenchShow.Report+    default-language: Haskell2010+    default-extensions:+        OverloadedStrings+        RecordWildCards+    ghc-options: -Wall+    build-depends:+          base              >= 4.8     && < 5+        , Chart             >= 1.6     && < 2+        , Chart-diagrams    >= 1.6     && < 2+        , csv               >= 0.1     && < 0.2+        , filepath          >= 1.3     && < 1.5+        , mwc-random        >= 0.13    && < 0.15+        , directory         >= 1.2     && < 1.4+        , transformers      >= 0.4     && < 0.6+        , ansi-wl-pprint    >= 0.6     && < 0.7+        , split             >= 0.2     && < 0.3+        , statistics        >= 0.14    && < 0.16+        , vector            >= 0.10    && < 0.13++test-suite test+    type: exitcode-stdio-1.0+    default-language: Haskell2010+    default-extensions:+        OverloadedStrings+        RecordWildCards+    hs-source-dirs: test+    main-is: Main.hs+    ghc-options: -Wall++    build-depends:+          bench-show+        , base              >= 4.8 && < 5+        , split             >= 0.2     && < 0.3+        , text              >= 1.1.1   && < 1.3+        -- , typed-process     >= 0.1.0.0 && < 0.3++test-suite doc+    type: exitcode-stdio-1.0+    default-language: Haskell2010+    default-extensions:+        OverloadedStrings+        RecordWildCards+    hs-source-dirs: test+    main-is: Doc.hs+    ghc-options: -Wall++    build-depends:+          bench-show+        , base              >= 4.8 && < 5+        , split             >= 0.2 && < 0.3
+ docs/full-median-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.5683,20.1694 ZM 321.8044,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 325.3978,20.1694 ZM 327.5796,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 335.2284,20.1694 ZM 338.7705,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 338.7705,5.5647 ZM 336.8968,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 342.3126,20.1694 ZM 343.9810,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 364.3095,20.1694 ZM 365.2336,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 365.2336,13.8039 ZM 373.4471,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 377.6052,20.1694 ZM 378.8373,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 386.4348,20.1694 ZM 391.6709,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 395.2644,20.1694 ZM 397.2408,3.4343 h 4.0041 l 2.7977,7.5205 l 1.0010,2.9261 h 0.1027 l 1.0010,-2.9261 l 2.7207,-7.5205 h 3.9784 v 16.7351 h -3.5164 v -6.1345 c 0.0000,-0.6160 0.0513,-1.3604 0.0513 -1.3604c 0.0513,-0.7444 0.1283,-1.5015 0.1283 -1.5015c 0.0770,-0.7572 0.1540,-1.4887 0.1540 -1.4887c 0.0770,-0.7315 0.1540,-1.3475 0.1540 -1.3475h -0.1027 l -1.3860,3.8758 l -2.5667,6.4938 h -1.5144 l -2.5667,-6.4938 l -1.3347,-3.8758 h -0.1027 c 0.0770,0.6160 0.1540,1.3475 0.1540 1.3475c 0.0770,0.7315 0.1412,1.4887 0.1412 1.4887c 0.0642,0.7572 0.1155,1.5015 0.1155 1.5015c 0.0513,0.7444 0.0513,1.3604 0.0513 1.3604v 6.1345 h -3.4651 v -16.7351 ZM 414.8229,20.1694 ZM 415.7469,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 415.7469,13.8039 ZM 423.9605,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 428.1186,20.1694 ZM 429.1196,13.8039 c 0.0000,-1.5657 0.4492,-2.7977 0.4492 -2.7977c 0.4492,-1.2320 1.1807,-2.0919 1.1807 -2.0919c 0.7315,-0.8599 1.6940,-1.3219 1.6940 -1.3219c 0.9625,-0.4620 1.9636,-0.4620 1.9636 -0.4620c 1.0780,0.0000 1.7710,0.3593 1.7710 0.3593c 0.6930,0.3593 1.3604,0.9754 1.3604 0.9754l -0.1540,-1.9507 v -4.3378 h 3.7731 v 17.9928 h -3.0801 l -0.2567,-1.2577 h -0.1027 c -0.6674,0.6674 -1.5657,1.1165 -1.5657 1.1165c -0.8984,0.4492 -1.8224,0.4492 -1.8224 0.4492c -1.1807,-0.0000 -2.1432,-0.4620 -2.1432 -0.4620c -0.9625,-0.4620 -1.6427,-1.3219 -1.6427 -1.3219c -0.6802,-0.8599 -1.0524,-2.0919 -1.0524 -2.0919c -0.3722,-1.2320 -0.3722,-2.7977 -0.3722 -2.7977ZM 429.1196,13.8039 ZM 432.9954,13.7526 c 0.0000,1.8994 0.6032,2.7721 0.6032 2.7721c 0.6032,0.8727 1.7069,0.8727 1.7069 0.8727c 0.6160,0.0000 1.1165,-0.2567 1.1165 -0.2567c 0.5005,-0.2567 0.9625,-0.8984 0.9625 -0.8984v -5.2105 c -0.5133,-0.4620 -1.0524,-0.6417 -1.0524 -0.6417c -0.5390,-0.1797 -1.0524,-0.1797 -1.0524 -0.1797c -0.8984,-0.0000 -1.5914,0.8599 -1.5914 0.8599c -0.6930,0.8599 -0.6930,2.6822 -0.6930 2.6822ZM 442.8260,20.1694 ZM 446.3681,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 446.3681,5.5647 ZM 444.4944,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 449.9102,20.1694 ZM 451.1165,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 451.1165,16.6273 ZM 454.7100,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 463.6165,20.1694 ZM 465.2849,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 478.2983,20.1694 ZM 479.5303,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,516.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,449.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,382.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,315.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,248.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,181.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,114.0000 h 731.6618 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,47.0000 h 731.6618 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 73.3382,516.0000 v -429.8860 h 55.9718 v 429.8860 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 129.3100,516.0000 v -428.7720 h 55.9718 v 428.7720 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 185.2819,516.0000 v -428.0572 h 55.9718 v 428.0572 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,165,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 241.2537,516.0000 v -437.7545 h 55.9718 v 437.7545 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 297.2255,516.0000 v -436.4516 h 55.9718 v 436.4516 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(238,130,238)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 353.1973,516.0000 v -431.7041 h 55.9718 v 431.7041 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 73.3382,516.0000 v -429.8860 h 55.9718 v 429.8860 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 129.3100,516.0000 v -428.7720 h 55.9718 v 428.7720 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 185.2819,516.0000 v -428.0572 h 55.9718 v 428.0572 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 241.2537,516.0000 v -437.7545 h 55.9718 v 437.7545 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 297.2255,516.0000 v -436.4516 h 55.9718 v 436.4516 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 58.3382,47.0000 v 469.0000 h 731.6618 v -469.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 353.1973,516.0000 v -431.7041 h 55.9718 v 431.7041 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 58.3382,516.0000 v -469.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,516.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,502.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,489.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,475.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,462.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,449.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,435.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,422.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,408.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,395.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,382.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,368.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,355.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,341.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,328.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,315.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,301.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,288.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,274.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,261.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,248.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,234.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,221.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,207.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,194.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,181.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,167.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,154.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,140.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,127.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,114.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,100.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,87.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,73.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,60.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,516.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,449.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,382.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,315.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,248.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,181.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,114.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 25.0147,520.8235 ZM 28.6765,521.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.6765,521.0000 ZM 28.6765,520.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.2941,520.8235 ZM 36.3971,513.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.2941,520.8235 ZM 44.3088,519.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.9118,453.8235 ZM 12.0735,452.8235 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 18.2206,453.8235 ZM 21.8824,454.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.8824,454.0000 ZM 21.8824,453.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 25.5294,453.8235 ZM 29.1912,454.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 29.1912,454.0000 ZM 29.1912,453.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.8088,453.8235 ZM 36.9118,446.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.8088,453.8235 ZM 44.8235,452.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.2794,386.8235 ZM 10.8676,386.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 17.5882,386.8235 ZM 21.2500,387.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.2500,387.0000 ZM 21.2500,386.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.8971,386.8235 ZM 28.5588,387.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.5588,387.0000 ZM 28.5588,386.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.1765,386.8235 ZM 36.2794,379.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.1765,386.8235 ZM 44.1912,385.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.1324,319.8235 ZM 11.1324,317.8824 c 0.4265,0.4412 0.9926,0.7794 0.9926 0.7794c 0.5662,0.3382 1.4044,0.3382 1.4044 0.3382c 0.8529,0.0000 1.3971,-0.4632 1.3971 -0.4632c 0.5441,-0.4632 0.5441,-1.2574 0.5441 -1.2574c 0.0000,-0.4118 -0.1544,-0.7574 -0.1544 -0.7574c -0.1544,-0.3456 -0.5074,-0.5956 -0.5074 -0.5956c -0.3529,-0.2500 -0.9265,-0.3824 -0.9265 -0.3824c -0.5735,-0.1324 -1.4118,-0.1324 -1.4118 -0.1324v -0.9265 c 0.7500,0.0000 1.2574,-0.1324 1.2574 -0.1324c 0.5074,-0.1324 0.8235,-0.3676 0.8235 -0.3676c 0.3162,-0.2353 0.4485,-0.5588 0.4485 -0.5588c 0.1324,-0.3235 0.1324,-0.6912 0.1324 -0.6912c 0.0000,-0.6912 -0.4338,-1.0882 -0.4338 -1.0882c -0.4338,-0.3971 -1.1838,-0.3971 -1.1838 -0.3971c -0.5882,-0.0000 -1.0809,0.2647 -1.0809 0.2647c -0.4926,0.2647 -0.9191,0.6912 -0.9191 0.6912l -0.6471,-0.7647 c 0.5441,-0.5147 1.1985,-0.8456 1.1985 -0.8456c 0.6544,-0.3309 1.4926,-0.3309 1.4926 -0.3309c 0.6176,0.0000 1.1324,0.1618 1.1324 0.1618c 0.5147,0.1618 0.8897,0.4632 0.8897 0.4632c 0.3750,0.3015 0.5809,0.7426 0.5809 0.7426c 0.2059,0.4412 0.2059,1.0147 0.2059 1.0147c 0.0000,0.8529 -0.4706,1.3971 -0.4706 1.3971c -0.4706,0.5441 -1.2353,0.8382 -1.2353 0.8382v 0.0588 c 0.4265,0.1029 0.7941,0.3015 0.7941 0.3015c 0.3676,0.1985 0.6471,0.5000 0.6471 0.5000c 0.2794,0.3015 0.4338,0.6985 0.4338 0.6985c 0.1544,0.3971 0.1544,0.8824 0.1544 0.8824c 0.0000,0.6176 -0.2426,1.1176 -0.2426 1.1176c -0.2426,0.5000 -0.6618,0.8456 -0.6618 0.8456c -0.4191,0.3456 -0.9779,0.5294 -0.9779 0.5294c -0.5588,0.1838 -1.2059,0.1838 -1.2059 0.1838c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8456,-0.2941 -0.8456 -0.2941c -0.3824,-0.1838 -0.6838,-0.4191 -0.6838 -0.4191c -0.3015,-0.2353 -0.5368,-0.5000 -0.5368 -0.5000ZM 17.4412,319.8235 ZM 21.1029,320.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.1029,320.0000 ZM 21.1029,319.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.7500,319.8235 ZM 28.4118,320.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.4118,320.0000 ZM 28.4118,319.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.0294,319.8235 ZM 36.1324,312.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.0294,319.8235 ZM 44.0441,318.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,252.8235 ZM 14.4706,249.2647 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 14.4706,249.2647 ZM 16.8971,250.2353 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 17.3088,252.8235 ZM 20.9706,253.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 20.9706,253.0000 ZM 20.9706,252.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.6176,252.8235 ZM 28.2794,253.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.2794,253.0000 ZM 28.2794,252.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 34.8971,252.8235 ZM 36.0000,245.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 42.8971,252.8235 ZM 43.9118,251.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.1176,185.8235 ZM 11.0735,183.9265 c 0.4118,0.4265 0.9779,0.7500 0.9779 0.7500c 0.5662,0.3235 1.3897,0.3235 1.3897 0.3235c 0.4265,0.0000 0.8015,-0.1544 0.8015 -0.1544c 0.3750,-0.1544 0.6544,-0.4338 0.6544 -0.4338c 0.2794,-0.2794 0.4412,-0.6765 0.4412 -0.6765c 0.1618,-0.3971 0.1618,-0.8824 0.1618 -0.8824c 0.0000,-0.9706 -0.5441,-1.5147 -0.5441 -1.5147c -0.5441,-0.5441 -1.4559,-0.5441 -1.4559 -0.5441c -0.4853,-0.0000 -0.8309,0.1471 -0.8309 0.1471c -0.3456,0.1471 -0.7721,0.4265 -0.7721 0.4265l -0.6471,-0.4118 l 0.3088,-4.5147 h 4.6912 v 1.0441 h -3.6324 l -0.2500,2.7794 c 0.3382,-0.1765 0.6765,-0.2794 0.6765 -0.2794c 0.3382,-0.1029 0.7647,-0.1029 0.7647 -0.1029c 0.6029,0.0000 1.1324,0.1765 1.1324 0.1765c 0.5294,0.1765 0.9265,0.5368 0.9265 0.5368c 0.3971,0.3603 0.6250,0.9118 0.6250 0.9118c 0.2279,0.5515 0.2279,1.3162 0.2279 1.3162c 0.0000,0.7647 -0.2647,1.3529 -0.2647 1.3529c -0.2647,0.5882 -0.7059,0.9926 -0.7059 0.9926c -0.4412,0.4044 -1.0074,0.6176 -1.0074 0.6176c -0.5662,0.2132 -1.1838,0.2132 -1.1838 0.2132c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8382,-0.2868 -0.8382 -0.2868c -0.3750,-0.1765 -0.6765,-0.4044 -0.6765 -0.4044c -0.3015,-0.2279 -0.5368,-0.4779 -0.5368 -0.4779ZM 17.4265,185.8235 ZM 21.0882,186.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.0882,186.0000 ZM 21.0882,185.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.7353,185.8235 ZM 28.3971,186.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.3971,186.0000 ZM 28.3971,185.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.0147,185.8235 ZM 36.1176,178.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.0147,185.8235 ZM 44.0294,184.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.4559,118.8235 ZM 14.3971,118.0441 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 14.3971,118.0441 ZM 16.3235,111.0147 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 17.7647,118.8235 ZM 21.4265,119.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.4265,119.0000 ZM 21.4265,118.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 25.0735,118.8235 ZM 28.7353,119.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.7353,119.0000 ZM 28.7353,118.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.3529,118.8235 ZM 36.4559,111.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.3529,118.8235 ZM 44.3676,117.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.3971,51.8235 ZM 13.0000,51.8235 c 0.0588,-1.3235 0.2353,-2.4265 0.2353 -2.4265c 0.1765,-1.1029 0.4926,-2.0956 0.4926 -2.0956c 0.3162,-0.9926 0.8088,-1.9191 0.8088 -1.9191c 0.4926,-0.9265 1.1838,-1.8971 1.1838 -1.8971h -4.6765 v -1.0441 h 6.0441 v 0.7500 c -0.8382,1.0588 -1.3603,2.0294 -1.3603 2.0294c -0.5221,0.9706 -0.8309,1.9779 -0.8309 1.9779c -0.3088,1.0074 -0.4485,2.1324 -0.4485 2.1324c -0.1397,1.1250 -0.1985,2.4926 -0.1985 2.4926h -1.2500 h 0.0000 ZM 17.7059,51.8235 ZM 21.3676,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.3676,52.0000 ZM 21.3676,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 25.0147,51.8235 ZM 28.6765,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.6765,52.0000 ZM 28.6765,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.2941,51.8235 ZM 36.3971,44.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.2941,51.8235 ZM 44.3088,50.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 58.3382,516.0000 h 731.6618 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 204.1780,542.0000 ZM 204.9680,537.9328 c 0.0000,-0.9916 0.2941,-1.7899 0.2941 -1.7899c 0.2941,-0.7983 0.7815,-1.3529 0.7815 -1.3529c 0.4874,-0.5546 1.1261,-0.8571 1.1261 -0.8571c 0.6387,-0.3025 1.3445,-0.3025 1.3445 -0.3025c 0.7059,0.0000 1.2269,0.2521 1.2269 0.2521c 0.5210,0.2521 1.0588,0.6891 1.0588 0.6891l -0.0672,-1.3950 v -3.1429 h 1.3950 v 11.9664 h -1.1429 l -0.1176,-0.9580 h -0.0504 c -0.4874,0.4706 -1.1176,0.8151 -1.1176 0.8151c -0.6303,0.3445 -1.3529,0.3445 -1.3529 0.3445c -1.5462,-0.0000 -2.4622,-1.1092 -2.4622 -1.1092c -0.9160,-1.1092 -0.9160,-3.1597 -0.9160 -3.1597ZM 204.9680,537.9328 ZM 206.3965,537.9160 c 0.0000,1.4790 0.5882,2.3025 0.5882 2.3025c 0.5882,0.8235 1.6639,0.8235 1.6639 0.8235c 0.5714,0.0000 1.0756,-0.2773 1.0756 -0.2773c 0.5042,-0.2773 1.0084,-0.8487 1.0084 -0.8487v -4.2689 c -0.5210,-0.4706 -1.0000,-0.6639 -1.0000 -0.6639c -0.4790,-0.1933 -0.9832,-0.1933 -0.9832 -0.1933c -0.4874,-0.0000 -0.9160,0.2269 -0.9160 0.2269c -0.4286,0.2269 -0.7479,0.6387 -0.7479 0.6387c -0.3193,0.4118 -0.5042,0.9832 -0.5042 0.9832c -0.1849,0.5714 -0.1849,1.2773 -0.1849 1.2773ZM 213.5058,542.0000 ZM 214.2789,537.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 214.2789,537.9328 ZM 219.9932,537.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 221.8419,542.0000 ZM 226.9007,531.1597 c -0.4538,-0.2017 -0.9244,-0.2017 -0.9244 -0.2017c -1.1429,-0.0000 -1.1429,1.5798 -1.1429 1.5798v 1.2941 h 1.7311 v 1.1261 h -1.7311 v 7.0420 h -1.3782 v -7.0420 h -1.1092 v -1.0420 l 1.1092,-0.0840 v -1.2941 c 0.0000,-1.2605 0.5798,-1.9832 0.5798 -1.9832c 0.5798,-0.7227 1.8067,-0.7227 1.8067 -0.7227c 0.3866,0.0000 0.7311,0.0756 0.7311 0.0756c 0.3445,0.0756 0.6303,0.1933 0.6303 0.1933ZM 226.4133,542.0000 ZM 227.3881,539.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 227.3881,539.8824 ZM 228.7495,539.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 235.0184,542.0000 ZM 236.2789,533.8319 h 1.3950 v 4.9916 c 0.0000,1.1597 0.3613,1.6723 0.3613 1.6723c 0.3613,0.5126 1.1681,0.5126 1.1681 0.5126c 0.6387,0.0000 1.1261,-0.3277 1.1261 -0.3277c 0.4874,-0.3277 1.0756,-1.0504 1.0756 -1.0504v -5.7983 h 1.3782 v 8.1681 h -1.1429 l -0.1176,-1.2773 h -0.0504 c -0.5714,0.6723 -1.2017,1.0756 -1.2017 1.0756c -0.6303,0.4034 -1.4874,0.4034 -1.4874 0.4034c -1.3109,-0.0000 -1.9076,-0.8067 -1.9076 -0.8067c -0.5966,-0.8067 -0.5966,-2.3866 -0.5966 -2.3866v -5.1765 ZM 244.1612,542.0000 ZM 245.5394,530.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 248.4470,542.0000 ZM 250.0604,534.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 254.1276,542.0000 ZM 257.7243,544.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 259.2201,542.0000 ZM 260.4806,533.8319 h 1.3950 v 4.9916 c 0.0000,1.1597 0.3613,1.6723 0.3613 1.6723c 0.3613,0.5126 1.1681,0.5126 1.1681 0.5126c 0.6387,0.0000 1.1261,-0.3277 1.1261 -0.3277c 0.4874,-0.3277 1.0756,-1.0504 1.0756 -1.0504v -5.7983 h 1.3782 v 8.1681 h -1.1429 l -0.1176,-1.2773 h -0.0504 c -0.5714,0.6723 -1.2017,1.0756 -1.2017 1.0756c -0.6303,0.4034 -1.4874,0.4034 -1.4874 0.4034c -1.3109,-0.0000 -1.9076,-0.8067 -1.9076 -0.8067c -0.5966,-0.8067 -0.5966,-2.3866 -0.5966 -2.3866v -5.1765 ZM 268.3629,542.0000 ZM 269.5226,540.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 275.4049,542.0000 ZM 276.0436,544.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,552.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,561.2500 ZM 39.2794,554.1029 h 1.2500 l 1.3529,4.0588 c 0.1618,0.5294 0.3309,1.0588 0.3309 1.0588c 0.1691,0.5294 0.3309,1.0441 0.3309 1.0441h 0.0588 c 0.1618,-0.5147 0.3235,-1.0441 0.3235 -1.0441l 0.3235,-1.0588 l 1.3529,-4.0588 h 1.1912 l -2.5294,7.1471 h -1.4118 ZM 45.9118,561.2500 ZM 46.5882,557.6912 c 0.0000,-0.8824 0.2721,-1.5809 0.2721 -1.5809c 0.2721,-0.6985 0.7206,-1.1838 0.7206 -1.1838c 0.4485,-0.4853 1.0221,-0.7426 1.0221 -0.7426c 0.5735,-0.2574 1.1912,-0.2574 1.1912 -0.2574c 0.6765,0.0000 1.2132,0.2353 1.2132 0.2353c 0.5368,0.2353 0.8971,0.6765 0.8971 0.6765c 0.3603,0.4412 0.5515,1.0588 0.5515 1.0588c 0.1912,0.6176 0.1912,1.3824 0.1912 1.3824c 0.0000,0.3971 -0.0441,0.6618 -0.0441 0.6618h -4.8235 c 0.0735,1.1618 0.7132,1.8382 0.7132 1.8382c 0.6397,0.6765 1.6691,0.6765 1.6691 0.6765c 0.5147,0.0000 0.9485,-0.1544 0.9485 -0.1544c 0.4338,-0.1544 0.8309,-0.4044 0.8309 -0.4044l 0.4265,0.7941 c -0.4706,0.2941 -1.0441,0.5147 -1.0441 0.5147c -0.5735,0.2206 -1.3088,0.2206 -1.3088 0.2206c -0.7206,-0.0000 -1.3456,-0.2574 -1.3456 -0.2574c -0.6250,-0.2574 -1.0882,-0.7353 -1.0882 -0.7353c -0.4632,-0.4779 -0.7279,-1.1691 -0.7279 -1.1691c -0.2647,-0.6912 -0.2647,-1.5735 -0.2647 -1.5735ZM 46.5882,557.6912 ZM 51.5882,557.1471 c 0.0000,-1.1029 -0.4632,-1.6838 -0.4632 -1.6838c -0.4632,-0.5809 -1.3015,-0.5809 -1.3015 -0.5809c -0.3824,-0.0000 -0.7279,0.1544 -0.7279 0.1544c -0.3456,0.1544 -0.6250,0.4412 -0.6250 0.4412c -0.2794,0.2868 -0.4632,0.7059 -0.4632 0.7059c -0.1838,0.4191 -0.2426,0.9632 -0.2426 0.9632h 3.8235 ZM 53.2059,561.2500 ZM 53.8824,557.6912 c 0.0000,-0.8971 0.2794,-1.5956 0.2794 -1.5956c 0.2794,-0.6985 0.7500,-1.1838 0.7500 -1.1838c 0.4706,-0.4853 1.0956,-0.7353 1.0956 -0.7353c 0.6250,-0.2500 1.3162,-0.2500 1.3162 -0.2500c 0.7059,0.0000 1.2132,0.2574 1.2132 0.2574c 0.5074,0.2574 0.8750,0.5956 0.8750 0.5956l -0.6029,0.7794 c -0.3235,-0.2794 -0.6691,-0.4559 -0.6691 -0.4559c -0.3456,-0.1765 -0.7721,-0.1765 -0.7721 -0.1765c -0.4853,-0.0000 -0.8971,0.1985 -0.8971 0.1985c -0.4118,0.1985 -0.7059,0.5662 -0.7059 0.5662c -0.2941,0.3676 -0.4632,0.8750 -0.4632 0.8750c -0.1691,0.5074 -0.1691,1.1250 -0.1691 1.1250c 0.0000,0.6176 0.1618,1.1176 0.1618 1.1176c 0.1618,0.5000 0.4485,0.8603 0.4485 0.8603c 0.2868,0.3603 0.6985,0.5588 0.6985 0.5588c 0.4118,0.1985 0.8971,0.1985 0.8971 0.1985c 0.5147,0.0000 0.9338,-0.2132 0.9338 -0.2132c 0.4191,-0.2132 0.7426,-0.5074 0.7426 -0.5074l 0.5441,0.7941 c -0.4853,0.4265 -1.0809,0.6765 -1.0809 0.6765c -0.5956,0.2500 -1.2426,0.2500 -1.2426 0.2500c -0.7059,-0.0000 -1.3235,-0.2500 -1.3235 -0.2500c -0.6176,-0.2500 -1.0662,-0.7279 -1.0662 -0.7279c -0.4485,-0.4779 -0.7059,-1.1765 -0.7059 -1.1765c -0.2574,-0.6985 -0.2574,-1.5809 -0.2574 -1.5809ZM 59.9118,561.2500 ZM 61.3235,555.0882 h -1.0588 v -0.9118 l 1.1176,-0.0735 l 0.1471,-2.0000 h 1.0147 v 2.0000 h 1.9265 v 0.9853 h -1.9265 v 3.9706 c 0.0000,0.6618 0.2426,1.0221 0.2426 1.0221c 0.2426,0.3603 0.8603,0.3603 0.8603 0.3603c 0.1912,0.0000 0.4118,-0.0588 0.4118 -0.0588c 0.2206,-0.0588 0.3971,-0.1324 0.3971 -0.1324l 0.2353,0.9118 c -0.2941,0.1029 -0.6397,0.1838 -0.6397 0.1838c -0.3456,0.0809 -0.6838,0.0809 -0.6838 0.0809c -0.5735,-0.0000 -0.9632,-0.1765 -0.9632 -0.1765c -0.3897,-0.1765 -0.6324,-0.4853 -0.6324 -0.4853c -0.2426,-0.3088 -0.3456,-0.7500 -0.3456 -0.7500c -0.1029,-0.4412 -0.1029,-0.9706 -0.1029 -0.9706v -3.9559 ZM 64.7353,561.2500 ZM 65.4118,557.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 65.4118,557.6912 ZM 66.6618,557.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 72.7059,561.2500 ZM 73.9118,554.1029 h 1.0000 l 0.1029,1.2941 h 0.0441 c 0.3676,-0.6765 0.8897,-1.0735 0.8897 -1.0735c 0.5221,-0.3971 1.1397,-0.3971 1.1397 -0.3971c 0.4265,0.0000 0.7647,0.1471 0.7647 0.1471l -0.2353,1.0588 c -0.1765,-0.0588 -0.3235,-0.0882 -0.3235 -0.0882c -0.1471,-0.0294 -0.3676,-0.0294 -0.3676 -0.0294c -0.4559,-0.0000 -0.9485,0.3676 -0.9485 0.3676c -0.4926,0.3676 -0.8603,1.2794 -0.8603 1.2794v 4.5882 h -1.2059 v -7.1471 ZM 77.8088,561.2500 ZM 81.8824,550.8088 h 0.8824 l -3.9265,12.7941 h -0.8824 ZM 82.9559,561.2500 ZM 87.3824,551.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 87.1029,561.2500 ZM 87.7794,557.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 87.7794,557.6912 ZM 89.0294,557.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 95.0735,561.2500 ZM 96.2794,550.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 98.8235,561.2500 ZM 99.5147,557.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 99.5147,557.6912 ZM 100.7647,557.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 125.6029,552.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 154.7059,561.2500 ZM 155.7206,559.6324 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059ZM 160.8676,561.2500 ZM 162.2794,555.0882 h -1.0588 v -0.9118 l 1.1176,-0.0735 l 0.1471,-2.0000 h 1.0147 v 2.0000 h 1.9265 v 0.9853 h -1.9265 v 3.9706 c 0.0000,0.6618 0.2426,1.0221 0.2426 1.0221c 0.2426,0.3603 0.8603,0.3603 0.8603 0.3603c 0.1912,0.0000 0.4118,-0.0588 0.4118 -0.0588c 0.2206,-0.0588 0.3971,-0.1324 0.3971 -0.1324l 0.2353,0.9118 c -0.2941,0.1029 -0.6397,0.1838 -0.6397 0.1838c -0.3456,0.0809 -0.6838,0.0809 -0.6838 0.0809c -0.5735,-0.0000 -0.9632,-0.1765 -0.9632 -0.1765c -0.3897,-0.1765 -0.6324,-0.4853 -0.6324 -0.4853c -0.2426,-0.3088 -0.3456,-0.7500 -0.3456 -0.7500c -0.1029,-0.4412 -0.1029,-0.9706 -0.1029 -0.9706v -3.9559 ZM 165.8382,561.2500 ZM 167.0441,554.1029 h 1.0000 l 0.1029,1.2941 h 0.0441 c 0.3676,-0.6765 0.8897,-1.0735 0.8897 -1.0735c 0.5221,-0.3971 1.1397,-0.3971 1.1397 -0.3971c 0.4265,0.0000 0.7647,0.1471 0.7647 0.1471l -0.2353,1.0588 c -0.1765,-0.0588 -0.3235,-0.0882 -0.3235 -0.0882c -0.1471,-0.0294 -0.3676,-0.0294 -0.3676 -0.0294c -0.4559,-0.0000 -0.9485,0.3676 -0.9485 0.3676c -0.4926,0.3676 -0.8603,1.2794 -0.8603 1.2794v 4.5882 h -1.2059 v -7.1471 ZM 170.7941,561.2500 ZM 171.4706,557.6912 c 0.0000,-0.8824 0.2721,-1.5809 0.2721 -1.5809c 0.2721,-0.6985 0.7206,-1.1838 0.7206 -1.1838c 0.4485,-0.4853 1.0221,-0.7426 1.0221 -0.7426c 0.5735,-0.2574 1.1912,-0.2574 1.1912 -0.2574c 0.6765,0.0000 1.2132,0.2353 1.2132 0.2353c 0.5368,0.2353 0.8971,0.6765 0.8971 0.6765c 0.3603,0.4412 0.5515,1.0588 0.5515 1.0588c 0.1912,0.6176 0.1912,1.3824 0.1912 1.3824c 0.0000,0.3971 -0.0441,0.6618 -0.0441 0.6618h -4.8235 c 0.0735,1.1618 0.7132,1.8382 0.7132 1.8382c 0.6397,0.6765 1.6691,0.6765 1.6691 0.6765c 0.5147,0.0000 0.9485,-0.1544 0.9485 -0.1544c 0.4338,-0.1544 0.8309,-0.4044 0.8309 -0.4044l 0.4265,0.7941 c -0.4706,0.2941 -1.0441,0.5147 -1.0441 0.5147c -0.5735,0.2206 -1.3088,0.2206 -1.3088 0.2206c -0.7206,-0.0000 -1.3456,-0.2574 -1.3456 -0.2574c -0.6250,-0.2574 -1.0882,-0.7353 -1.0882 -0.7353c -0.4632,-0.4779 -0.7279,-1.1691 -0.7279 -1.1691c -0.2647,-0.6912 -0.2647,-1.5735 -0.2647 -1.5735ZM 171.4706,557.6912 ZM 176.4706,557.1471 c 0.0000,-1.1029 -0.4632,-1.6838 -0.4632 -1.6838c -0.4632,-0.5809 -1.3015,-0.5809 -1.3015 -0.5809c -0.3824,-0.0000 -0.7279,0.1544 -0.7279 0.1544c -0.3456,0.1544 -0.6250,0.4412 -0.6250 0.4412c -0.2794,0.2868 -0.4632,0.7059 -0.4632 0.7059c -0.1838,0.4191 -0.2426,0.9632 -0.2426 0.9632h 3.8235 ZM 177.8824,561.2500 ZM 178.7353,559.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 178.7353,559.3971 ZM 179.9265,559.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 185.4118,561.2500 ZM 186.6176,554.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 197.6029,561.2500 ZM 198.8088,550.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 201.3529,561.2500 ZM 202.0735,563.2206 l 0.2647,0.0662 c 0.0000,0.0000 0.2794,0.0368 0.2794 0.0368c 0.6176,0.0000 1.0074,-0.4338 1.0074 -0.4338c 0.3897,-0.4338 0.6103,-1.0956 0.6103 -1.0956l 0.1618,-0.5294 l -2.8676,-7.1618 h 1.2500 l 1.4559,3.9559 c 0.1618,0.4706 0.3456,0.9926 0.3456 0.9926c 0.1838,0.5221 0.3456,1.0221 0.3456 1.0221h 0.0588 c 0.1618,-0.4853 0.3088,-1.0147 0.3088 -1.0147c 0.1471,-0.5294 0.2941,-1.0000 0.2941 -1.0000l 1.2794,-3.9559 h 1.1765 l -2.6912,7.7353 c -0.1912,0.5294 -0.4265,0.9853 -0.4265 0.9853c -0.2353,0.4559 -0.5588,0.7868 -0.5588 0.7868c -0.3235,0.3309 -0.7353,0.5221 -0.7353 0.5221c -0.4118,0.1912 -0.9559,0.1912 -0.9559 0.1912c -0.2500,-0.0000 -0.4559,-0.0368 -0.4559 -0.0368c -0.2059,-0.0368 -0.3824,-0.1103 -0.3824 -0.1103l 0.2353,-0.9559 h 0.0000 ZM 208.2206,561.2500 ZM 212.2941,550.8088 h 0.8824 l -3.9265,12.7941 h -0.8824 ZM 213.3676,561.2500 ZM 217.7941,551.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 217.5147,561.2500 ZM 218.1912,557.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 218.1912,557.6912 ZM 219.4412,557.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 225.4853,561.2500 ZM 226.6912,550.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 229.2353,561.2500 ZM 229.9265,557.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 229.9265,557.6912 ZM 231.1765,557.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.7794,552.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.8824,561.2500 ZM 285.0588,554.1029 h 1.2500 l 1.3529,4.0588 c 0.1618,0.5294 0.3309,1.0588 0.3309 1.0588c 0.1691,0.5294 0.3309,1.0441 0.3309 1.0441h 0.0588 c 0.1618,-0.5147 0.3235,-1.0441 0.3235 -1.0441l 0.3235,-1.0588 l 1.3529,-4.0588 h 1.1912 l -2.5294,7.1471 h -1.4118 ZM 291.6912,561.2500 ZM 292.3676,557.6912 c 0.0000,-0.8824 0.2721,-1.5809 0.2721 -1.5809c 0.2721,-0.6985 0.7206,-1.1838 0.7206 -1.1838c 0.4485,-0.4853 1.0221,-0.7426 1.0221 -0.7426c 0.5735,-0.2574 1.1912,-0.2574 1.1912 -0.2574c 0.6765,0.0000 1.2132,0.2353 1.2132 0.2353c 0.5368,0.2353 0.8971,0.6765 0.8971 0.6765c 0.3603,0.4412 0.5515,1.0588 0.5515 1.0588c 0.1912,0.6176 0.1912,1.3824 0.1912 1.3824c 0.0000,0.3971 -0.0441,0.6618 -0.0441 0.6618h -4.8235 c 0.0735,1.1618 0.7132,1.8382 0.7132 1.8382c 0.6397,0.6765 1.6691,0.6765 1.6691 0.6765c 0.5147,0.0000 0.9485,-0.1544 0.9485 -0.1544c 0.4338,-0.1544 0.8309,-0.4044 0.8309 -0.4044l 0.4265,0.7941 c -0.4706,0.2941 -1.0441,0.5147 -1.0441 0.5147c -0.5735,0.2206 -1.3088,0.2206 -1.3088 0.2206c -0.7206,-0.0000 -1.3456,-0.2574 -1.3456 -0.2574c -0.6250,-0.2574 -1.0882,-0.7353 -1.0882 -0.7353c -0.4632,-0.4779 -0.7279,-1.1691 -0.7279 -1.1691c -0.2647,-0.6912 -0.2647,-1.5735 -0.2647 -1.5735ZM 292.3676,557.6912 ZM 297.3676,557.1471 c 0.0000,-1.1029 -0.4632,-1.6838 -0.4632 -1.6838c -0.4632,-0.5809 -1.3015,-0.5809 -1.3015 -0.5809c -0.3824,-0.0000 -0.7279,0.1544 -0.7279 0.1544c -0.3456,0.1544 -0.6250,0.4412 -0.6250 0.4412c -0.2794,0.2868 -0.4632,0.7059 -0.4632 0.7059c -0.1838,0.4191 -0.2426,0.9632 -0.2426 0.9632h 3.8235 ZM 298.9853,561.2500 ZM 299.6618,557.6912 c 0.0000,-0.8971 0.2794,-1.5956 0.2794 -1.5956c 0.2794,-0.6985 0.7500,-1.1838 0.7500 -1.1838c 0.4706,-0.4853 1.0956,-0.7353 1.0956 -0.7353c 0.6250,-0.2500 1.3162,-0.2500 1.3162 -0.2500c 0.7059,0.0000 1.2132,0.2574 1.2132 0.2574c 0.5074,0.2574 0.8750,0.5956 0.8750 0.5956l -0.6029,0.7794 c -0.3235,-0.2794 -0.6691,-0.4559 -0.6691 -0.4559c -0.3456,-0.1765 -0.7721,-0.1765 -0.7721 -0.1765c -0.4853,-0.0000 -0.8971,0.1985 -0.8971 0.1985c -0.4118,0.1985 -0.7059,0.5662 -0.7059 0.5662c -0.2941,0.3676 -0.4632,0.8750 -0.4632 0.8750c -0.1691,0.5074 -0.1691,1.1250 -0.1691 1.1250c 0.0000,0.6176 0.1618,1.1176 0.1618 1.1176c 0.1618,0.5000 0.4485,0.8603 0.4485 0.8603c 0.2868,0.3603 0.6985,0.5588 0.6985 0.5588c 0.4118,0.1985 0.8971,0.1985 0.8971 0.1985c 0.5147,0.0000 0.9338,-0.2132 0.9338 -0.2132c 0.4191,-0.2132 0.7426,-0.5074 0.7426 -0.5074l 0.5441,0.7941 c -0.4853,0.4265 -1.0809,0.6765 -1.0809 0.6765c -0.5956,0.2500 -1.2426,0.2500 -1.2426 0.2500c -0.7059,-0.0000 -1.3235,-0.2500 -1.3235 -0.2500c -0.6176,-0.2500 -1.0662,-0.7279 -1.0662 -0.7279c -0.4485,-0.4779 -0.7059,-1.1765 -0.7059 -1.1765c -0.2574,-0.6985 -0.2574,-1.5809 -0.2574 -1.5809ZM 305.6912,561.2500 ZM 307.1029,555.0882 h -1.0588 v -0.9118 l 1.1176,-0.0735 l 0.1471,-2.0000 h 1.0147 v 2.0000 h 1.9265 v 0.9853 h -1.9265 v 3.9706 c 0.0000,0.6618 0.2426,1.0221 0.2426 1.0221c 0.2426,0.3603 0.8603,0.3603 0.8603 0.3603c 0.1912,0.0000 0.4118,-0.0588 0.4118 -0.0588c 0.2206,-0.0588 0.3971,-0.1324 0.3971 -0.1324l 0.2353,0.9118 c -0.2941,0.1029 -0.6397,0.1838 -0.6397 0.1838c -0.3456,0.0809 -0.6838,0.0809 -0.6838 0.0809c -0.5735,-0.0000 -0.9632,-0.1765 -0.9632 -0.1765c -0.3897,-0.1765 -0.6324,-0.4853 -0.6324 -0.4853c -0.2426,-0.3088 -0.3456,-0.7500 -0.3456 -0.7500c -0.1029,-0.4412 -0.1029,-0.9706 -0.1029 -0.9706v -3.9559 ZM 310.5147,561.2500 ZM 311.1912,557.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 311.1912,557.6912 ZM 312.4412,557.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 318.4853,561.2500 ZM 319.6912,554.1029 h 1.0000 l 0.1029,1.2941 h 0.0441 c 0.3676,-0.6765 0.8897,-1.0735 0.8897 -1.0735c 0.5221,-0.3971 1.1397,-0.3971 1.1397 -0.3971c 0.4265,0.0000 0.7647,0.1471 0.7647 0.1471l -0.2353,1.0588 c -0.1765,-0.0588 -0.3235,-0.0882 -0.3235 -0.0882c -0.1471,-0.0294 -0.3676,-0.0294 -0.3676 -0.0294c -0.4559,-0.0000 -0.9485,0.3676 -0.9485 0.3676c -0.4926,0.3676 -0.8603,1.2794 -0.8603 1.2794v 4.5882 h -1.2059 v -7.1471 ZM 323.5882,561.2500 ZM 327.6618,550.8088 h 0.8824 l -3.9265,12.7941 h -0.8824 ZM 328.7353,561.2500 ZM 329.9412,554.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 340.9265,561.2500 ZM 341.7794,559.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 341.7794,559.3971 ZM 342.9706,559.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 348.4559,561.2500 ZM 350.8676,561.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 350.8676,561.8529 ZM 350.8676,559.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,165,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.7353,552.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.8382,561.2500 ZM 405.8529,559.6324 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059ZM 411.0000,561.2500 ZM 412.4118,555.0882 h -1.0588 v -0.9118 l 1.1176,-0.0735 l 0.1471,-2.0000 h 1.0147 v 2.0000 h 1.9265 v 0.9853 h -1.9265 v 3.9706 c 0.0000,0.6618 0.2426,1.0221 0.2426 1.0221c 0.2426,0.3603 0.8603,0.3603 0.8603 0.3603c 0.1912,0.0000 0.4118,-0.0588 0.4118 -0.0588c 0.2206,-0.0588 0.3971,-0.1324 0.3971 -0.1324l 0.2353,0.9118 c -0.2941,0.1029 -0.6397,0.1838 -0.6397 0.1838c -0.3456,0.0809 -0.6838,0.0809 -0.6838 0.0809c -0.5735,-0.0000 -0.9632,-0.1765 -0.9632 -0.1765c -0.3897,-0.1765 -0.6324,-0.4853 -0.6324 -0.4853c -0.2426,-0.3088 -0.3456,-0.7500 -0.3456 -0.7500c -0.1029,-0.4412 -0.1029,-0.9706 -0.1029 -0.9706v -3.9559 ZM 415.9706,561.2500 ZM 417.1765,554.1029 h 1.0000 l 0.1029,1.2941 h 0.0441 c 0.3676,-0.6765 0.8897,-1.0735 0.8897 -1.0735c 0.5221,-0.3971 1.1397,-0.3971 1.1397 -0.3971c 0.4265,0.0000 0.7647,0.1471 0.7647 0.1471l -0.2353,1.0588 c -0.1765,-0.0588 -0.3235,-0.0882 -0.3235 -0.0882c -0.1471,-0.0294 -0.3676,-0.0294 -0.3676 -0.0294c -0.4559,-0.0000 -0.9485,0.3676 -0.9485 0.3676c -0.4926,0.3676 -0.8603,1.2794 -0.8603 1.2794v 4.5882 h -1.2059 v -7.1471 ZM 420.9265,561.2500 ZM 421.6029,557.6912 c 0.0000,-0.8824 0.2721,-1.5809 0.2721 -1.5809c 0.2721,-0.6985 0.7206,-1.1838 0.7206 -1.1838c 0.4485,-0.4853 1.0221,-0.7426 1.0221 -0.7426c 0.5735,-0.2574 1.1912,-0.2574 1.1912 -0.2574c 0.6765,0.0000 1.2132,0.2353 1.2132 0.2353c 0.5368,0.2353 0.8971,0.6765 0.8971 0.6765c 0.3603,0.4412 0.5515,1.0588 0.5515 1.0588c 0.1912,0.6176 0.1912,1.3824 0.1912 1.3824c 0.0000,0.3971 -0.0441,0.6618 -0.0441 0.6618h -4.8235 c 0.0735,1.1618 0.7132,1.8382 0.7132 1.8382c 0.6397,0.6765 1.6691,0.6765 1.6691 0.6765c 0.5147,0.0000 0.9485,-0.1544 0.9485 -0.1544c 0.4338,-0.1544 0.8309,-0.4044 0.8309 -0.4044l 0.4265,0.7941 c -0.4706,0.2941 -1.0441,0.5147 -1.0441 0.5147c -0.5735,0.2206 -1.3088,0.2206 -1.3088 0.2206c -0.7206,-0.0000 -1.3456,-0.2574 -1.3456 -0.2574c -0.6250,-0.2574 -1.0882,-0.7353 -1.0882 -0.7353c -0.4632,-0.4779 -0.7279,-1.1691 -0.7279 -1.1691c -0.2647,-0.6912 -0.2647,-1.5735 -0.2647 -1.5735ZM 421.6029,557.6912 ZM 426.6029,557.1471 c 0.0000,-1.1029 -0.4632,-1.6838 -0.4632 -1.6838c -0.4632,-0.5809 -1.3015,-0.5809 -1.3015 -0.5809c -0.3824,-0.0000 -0.7279,0.1544 -0.7279 0.1544c -0.3456,0.1544 -0.6250,0.4412 -0.6250 0.4412c -0.2794,0.2868 -0.4632,0.7059 -0.4632 0.7059c -0.1838,0.4191 -0.2426,0.9632 -0.2426 0.9632h 3.8235 ZM 428.0147,561.2500 ZM 428.8676,559.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 428.8676,559.3971 ZM 430.0588,559.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 435.5441,561.2500 ZM 436.7500,554.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 447.7353,561.2500 ZM 448.9412,550.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 451.4853,561.2500 ZM 452.2059,563.2206 l 0.2647,0.0662 c 0.0000,0.0000 0.2794,0.0368 0.2794 0.0368c 0.6176,0.0000 1.0074,-0.4338 1.0074 -0.4338c 0.3897,-0.4338 0.6103,-1.0956 0.6103 -1.0956l 0.1618,-0.5294 l -2.8676,-7.1618 h 1.2500 l 1.4559,3.9559 c 0.1618,0.4706 0.3456,0.9926 0.3456 0.9926c 0.1838,0.5221 0.3456,1.0221 0.3456 1.0221h 0.0588 c 0.1618,-0.4853 0.3088,-1.0147 0.3088 -1.0147c 0.1471,-0.5294 0.2941,-1.0000 0.2941 -1.0000l 1.2794,-3.9559 h 1.1765 l -2.6912,7.7353 c -0.1912,0.5294 -0.4265,0.9853 -0.4265 0.9853c -0.2353,0.4559 -0.5588,0.7868 -0.5588 0.7868c -0.3235,0.3309 -0.7353,0.5221 -0.7353 0.5221c -0.4118,0.1912 -0.9559,0.1912 -0.9559 0.1912c -0.2500,-0.0000 -0.4559,-0.0368 -0.4559 -0.0368c -0.2059,-0.0368 -0.3824,-0.1103 -0.3824 -0.1103l 0.2353,-0.9559 h 0.0000 ZM 458.3529,561.2500 ZM 462.4265,550.8088 h 0.8824 l -3.9265,12.7941 h -0.8824 ZM 463.5000,561.2500 ZM 464.7059,554.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 475.6912,561.2500 ZM 476.5441,559.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 476.5441,559.3971 ZM 477.7353,559.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 483.2206,561.2500 ZM 485.6324,561.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 485.6324,561.8529 ZM 485.6324,559.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 39.2794,578.1029 h 1.2500 l 1.3529,4.0588 c 0.1618,0.5294 0.3309,1.0588 0.3309 1.0588c 0.1691,0.5294 0.3309,1.0441 0.3309 1.0441h 0.0588 c 0.1618,-0.5147 0.3235,-1.0441 0.3235 -1.0441l 0.3235,-1.0588 l 1.3529,-4.0588 h 1.1912 l -2.5294,7.1471 h -1.4118 ZM 45.9118,585.2500 ZM 46.5882,581.6912 c 0.0000,-0.8824 0.2721,-1.5809 0.2721 -1.5809c 0.2721,-0.6985 0.7206,-1.1838 0.7206 -1.1838c 0.4485,-0.4853 1.0221,-0.7426 1.0221 -0.7426c 0.5735,-0.2574 1.1912,-0.2574 1.1912 -0.2574c 0.6765,0.0000 1.2132,0.2353 1.2132 0.2353c 0.5368,0.2353 0.8971,0.6765 0.8971 0.6765c 0.3603,0.4412 0.5515,1.0588 0.5515 1.0588c 0.1912,0.6176 0.1912,1.3824 0.1912 1.3824c 0.0000,0.3971 -0.0441,0.6618 -0.0441 0.6618h -4.8235 c 0.0735,1.1618 0.7132,1.8382 0.7132 1.8382c 0.6397,0.6765 1.6691,0.6765 1.6691 0.6765c 0.5147,0.0000 0.9485,-0.1544 0.9485 -0.1544c 0.4338,-0.1544 0.8309,-0.4044 0.8309 -0.4044l 0.4265,0.7941 c -0.4706,0.2941 -1.0441,0.5147 -1.0441 0.5147c -0.5735,0.2206 -1.3088,0.2206 -1.3088 0.2206c -0.7206,-0.0000 -1.3456,-0.2574 -1.3456 -0.2574c -0.6250,-0.2574 -1.0882,-0.7353 -1.0882 -0.7353c -0.4632,-0.4779 -0.7279,-1.1691 -0.7279 -1.1691c -0.2647,-0.6912 -0.2647,-1.5735 -0.2647 -1.5735ZM 46.5882,581.6912 ZM 51.5882,581.1471 c 0.0000,-1.1029 -0.4632,-1.6838 -0.4632 -1.6838c -0.4632,-0.5809 -1.3015,-0.5809 -1.3015 -0.5809c -0.3824,-0.0000 -0.7279,0.1544 -0.7279 0.1544c -0.3456,0.1544 -0.6250,0.4412 -0.6250 0.4412c -0.2794,0.2868 -0.4632,0.7059 -0.4632 0.7059c -0.1838,0.4191 -0.2426,0.9632 -0.2426 0.9632h 3.8235 ZM 53.2059,585.2500 ZM 53.8824,581.6912 c 0.0000,-0.8971 0.2794,-1.5956 0.2794 -1.5956c 0.2794,-0.6985 0.7500,-1.1838 0.7500 -1.1838c 0.4706,-0.4853 1.0956,-0.7353 1.0956 -0.7353c 0.6250,-0.2500 1.3162,-0.2500 1.3162 -0.2500c 0.7059,0.0000 1.2132,0.2574 1.2132 0.2574c 0.5074,0.2574 0.8750,0.5956 0.8750 0.5956l -0.6029,0.7794 c -0.3235,-0.2794 -0.6691,-0.4559 -0.6691 -0.4559c -0.3456,-0.1765 -0.7721,-0.1765 -0.7721 -0.1765c -0.4853,-0.0000 -0.8971,0.1985 -0.8971 0.1985c -0.4118,0.1985 -0.7059,0.5662 -0.7059 0.5662c -0.2941,0.3676 -0.4632,0.8750 -0.4632 0.8750c -0.1691,0.5074 -0.1691,1.1250 -0.1691 1.1250c 0.0000,0.6176 0.1618,1.1176 0.1618 1.1176c 0.1618,0.5000 0.4485,0.8603 0.4485 0.8603c 0.2868,0.3603 0.6985,0.5588 0.6985 0.5588c 0.4118,0.1985 0.8971,0.1985 0.8971 0.1985c 0.5147,0.0000 0.9338,-0.2132 0.9338 -0.2132c 0.4191,-0.2132 0.7426,-0.5074 0.7426 -0.5074l 0.5441,0.7941 c -0.4853,0.4265 -1.0809,0.6765 -1.0809 0.6765c -0.5956,0.2500 -1.2426,0.2500 -1.2426 0.2500c -0.7059,-0.0000 -1.3235,-0.2500 -1.3235 -0.2500c -0.6176,-0.2500 -1.0662,-0.7279 -1.0662 -0.7279c -0.4485,-0.4779 -0.7059,-1.1765 -0.7059 -1.1765c -0.2574,-0.6985 -0.2574,-1.5809 -0.2574 -1.5809ZM 59.9118,585.2500 ZM 61.3235,579.0882 h -1.0588 v -0.9118 l 1.1176,-0.0735 l 0.1471,-2.0000 h 1.0147 v 2.0000 h 1.9265 v 0.9853 h -1.9265 v 3.9706 c 0.0000,0.6618 0.2426,1.0221 0.2426 1.0221c 0.2426,0.3603 0.8603,0.3603 0.8603 0.3603c 0.1912,0.0000 0.4118,-0.0588 0.4118 -0.0588c 0.2206,-0.0588 0.3971,-0.1324 0.3971 -0.1324l 0.2353,0.9118 c -0.2941,0.1029 -0.6397,0.1838 -0.6397 0.1838c -0.3456,0.0809 -0.6838,0.0809 -0.6838 0.0809c -0.5735,-0.0000 -0.9632,-0.1765 -0.9632 -0.1765c -0.3897,-0.1765 -0.6324,-0.4853 -0.6324 -0.4853c -0.2426,-0.3088 -0.3456,-0.7500 -0.3456 -0.7500c -0.1029,-0.4412 -0.1029,-0.9706 -0.1029 -0.9706v -3.9559 ZM 64.7353,585.2500 ZM 65.4118,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 65.4118,581.6912 ZM 66.6618,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 72.7059,585.2500 ZM 73.9118,578.1029 h 1.0000 l 0.1029,1.2941 h 0.0441 c 0.3676,-0.6765 0.8897,-1.0735 0.8897 -1.0735c 0.5221,-0.3971 1.1397,-0.3971 1.1397 -0.3971c 0.4265,0.0000 0.7647,0.1471 0.7647 0.1471l -0.2353,1.0588 c -0.1765,-0.0588 -0.3235,-0.0882 -0.3235 -0.0882c -0.1471,-0.0294 -0.3676,-0.0294 -0.3676 -0.0294c -0.4559,-0.0000 -0.9485,0.3676 -0.9485 0.3676c -0.4926,0.3676 -0.8603,1.2794 -0.8603 1.2794v 4.5882 h -1.2059 v -7.1471 ZM 77.8088,585.2500 ZM 81.8824,574.8088 h 0.8824 l -3.9265,12.7941 h -0.8824 ZM 82.9559,585.2500 ZM 83.4118,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 89.2059,585.2500 ZM 91.0294,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 91.0294,576.6324 ZM 90.4118,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 92.8235,585.2500 ZM 95.2353,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 95.2353,585.8529 ZM 95.2353,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(238,130,238)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 125.6029,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 154.7059,585.2500 ZM 155.7206,583.6324 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059ZM 160.8676,585.2500 ZM 162.2794,579.0882 h -1.0588 v -0.9118 l 1.1176,-0.0735 l 0.1471,-2.0000 h 1.0147 v 2.0000 h 1.9265 v 0.9853 h -1.9265 v 3.9706 c 0.0000,0.6618 0.2426,1.0221 0.2426 1.0221c 0.2426,0.3603 0.8603,0.3603 0.8603 0.3603c 0.1912,0.0000 0.4118,-0.0588 0.4118 -0.0588c 0.2206,-0.0588 0.3971,-0.1324 0.3971 -0.1324l 0.2353,0.9118 c -0.2941,0.1029 -0.6397,0.1838 -0.6397 0.1838c -0.3456,0.0809 -0.6838,0.0809 -0.6838 0.0809c -0.5735,-0.0000 -0.9632,-0.1765 -0.9632 -0.1765c -0.3897,-0.1765 -0.6324,-0.4853 -0.6324 -0.4853c -0.2426,-0.3088 -0.3456,-0.7500 -0.3456 -0.7500c -0.1029,-0.4412 -0.1029,-0.9706 -0.1029 -0.9706v -3.9559 ZM 165.8382,585.2500 ZM 167.0441,578.1029 h 1.0000 l 0.1029,1.2941 h 0.0441 c 0.3676,-0.6765 0.8897,-1.0735 0.8897 -1.0735c 0.5221,-0.3971 1.1397,-0.3971 1.1397 -0.3971c 0.4265,0.0000 0.7647,0.1471 0.7647 0.1471l -0.2353,1.0588 c -0.1765,-0.0588 -0.3235,-0.0882 -0.3235 -0.0882c -0.1471,-0.0294 -0.3676,-0.0294 -0.3676 -0.0294c -0.4559,-0.0000 -0.9485,0.3676 -0.9485 0.3676c -0.4926,0.3676 -0.8603,1.2794 -0.8603 1.2794v 4.5882 h -1.2059 v -7.1471 ZM 170.7941,585.2500 ZM 171.4706,581.6912 c 0.0000,-0.8824 0.2721,-1.5809 0.2721 -1.5809c 0.2721,-0.6985 0.7206,-1.1838 0.7206 -1.1838c 0.4485,-0.4853 1.0221,-0.7426 1.0221 -0.7426c 0.5735,-0.2574 1.1912,-0.2574 1.1912 -0.2574c 0.6765,0.0000 1.2132,0.2353 1.2132 0.2353c 0.5368,0.2353 0.8971,0.6765 0.8971 0.6765c 0.3603,0.4412 0.5515,1.0588 0.5515 1.0588c 0.1912,0.6176 0.1912,1.3824 0.1912 1.3824c 0.0000,0.3971 -0.0441,0.6618 -0.0441 0.6618h -4.8235 c 0.0735,1.1618 0.7132,1.8382 0.7132 1.8382c 0.6397,0.6765 1.6691,0.6765 1.6691 0.6765c 0.5147,0.0000 0.9485,-0.1544 0.9485 -0.1544c 0.4338,-0.1544 0.8309,-0.4044 0.8309 -0.4044l 0.4265,0.7941 c -0.4706,0.2941 -1.0441,0.5147 -1.0441 0.5147c -0.5735,0.2206 -1.3088,0.2206 -1.3088 0.2206c -0.7206,-0.0000 -1.3456,-0.2574 -1.3456 -0.2574c -0.6250,-0.2574 -1.0882,-0.7353 -1.0882 -0.7353c -0.4632,-0.4779 -0.7279,-1.1691 -0.7279 -1.1691c -0.2647,-0.6912 -0.2647,-1.5735 -0.2647 -1.5735ZM 171.4706,581.6912 ZM 176.4706,581.1471 c 0.0000,-1.1029 -0.4632,-1.6838 -0.4632 -1.6838c -0.4632,-0.5809 -1.3015,-0.5809 -1.3015 -0.5809c -0.3824,-0.0000 -0.7279,0.1544 -0.7279 0.1544c -0.3456,0.1544 -0.6250,0.4412 -0.6250 0.4412c -0.2794,0.2868 -0.4632,0.7059 -0.4632 0.7059c -0.1838,0.4191 -0.2426,0.9632 -0.2426 0.9632h 3.8235 ZM 177.8824,585.2500 ZM 178.7353,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 178.7353,583.3971 ZM 179.9265,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 185.4118,585.2500 ZM 186.6176,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 197.6029,585.2500 ZM 198.8088,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 201.3529,585.2500 ZM 202.0735,587.2206 l 0.2647,0.0662 c 0.0000,0.0000 0.2794,0.0368 0.2794 0.0368c 0.6176,0.0000 1.0074,-0.4338 1.0074 -0.4338c 0.3897,-0.4338 0.6103,-1.0956 0.6103 -1.0956l 0.1618,-0.5294 l -2.8676,-7.1618 h 1.2500 l 1.4559,3.9559 c 0.1618,0.4706 0.3456,0.9926 0.3456 0.9926c 0.1838,0.5221 0.3456,1.0221 0.3456 1.0221h 0.0588 c 0.1618,-0.4853 0.3088,-1.0147 0.3088 -1.0147c 0.1471,-0.5294 0.2941,-1.0000 0.2941 -1.0000l 1.2794,-3.9559 h 1.1765 l -2.6912,7.7353 c -0.1912,0.5294 -0.4265,0.9853 -0.4265 0.9853c -0.2353,0.4559 -0.5588,0.7868 -0.5588 0.7868c -0.3235,0.3309 -0.7353,0.5221 -0.7353 0.5221c -0.4118,0.1912 -0.9559,0.1912 -0.9559 0.1912c -0.2500,-0.0000 -0.4559,-0.0368 -0.4559 -0.0368c -0.2059,-0.0368 -0.3824,-0.1103 -0.3824 -0.1103l 0.2353,-0.9559 h 0.0000 ZM 208.2206,585.2500 ZM 212.2941,574.8088 h 0.8824 l -3.9265,12.7941 h -0.8824 ZM 213.3676,585.2500 ZM 213.8235,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 219.6176,585.2500 ZM 221.4412,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 221.4412,576.6324 ZM 220.8235,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 223.2353,585.2500 ZM 225.6471,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 225.6471,585.8529 ZM 225.6471,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/grouped-delta-median-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.3681,20.1694 ZM 176.6042,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 180.1976,20.1694 ZM 182.3794,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 190.0282,20.1694 ZM 193.5703,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 193.5703,5.5647 ZM 191.6966,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 197.1124,20.1694 ZM 198.7808,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 219.1093,20.1694 ZM 220.0334,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 220.0334,13.8039 ZM 228.2469,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 232.4050,20.1694 ZM 233.6371,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 241.2346,20.1694 ZM 246.4707,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 250.0642,20.1694 ZM 252.0406,3.4343 h 4.0041 l 2.7977,7.5205 l 1.0010,2.9261 h 0.1027 l 1.0010,-2.9261 l 2.7207,-7.5205 h 3.9784 v 16.7351 h -3.5164 v -6.1345 c 0.0000,-0.6160 0.0513,-1.3604 0.0513 -1.3604c 0.0513,-0.7444 0.1283,-1.5015 0.1283 -1.5015c 0.0770,-0.7572 0.1540,-1.4887 0.1540 -1.4887c 0.0770,-0.7315 0.1540,-1.3475 0.1540 -1.3475h -0.1027 l -1.3860,3.8758 l -2.5667,6.4938 h -1.5144 l -2.5667,-6.4938 l -1.3347,-3.8758 h -0.1027 c 0.0770,0.6160 0.1540,1.3475 0.1540 1.3475c 0.0770,0.7315 0.1412,1.4887 0.1412 1.4887c 0.0642,0.7572 0.1155,1.5015 0.1155 1.5015c 0.0513,0.7444 0.0513,1.3604 0.0513 1.3604v 6.1345 h -3.4651 v -16.7351 ZM 269.6227,20.1694 ZM 270.5467,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 270.5467,13.8039 ZM 278.7603,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 282.9184,20.1694 ZM 283.9194,13.8039 c 0.0000,-1.5657 0.4492,-2.7977 0.4492 -2.7977c 0.4492,-1.2320 1.1807,-2.0919 1.1807 -2.0919c 0.7315,-0.8599 1.6940,-1.3219 1.6940 -1.3219c 0.9625,-0.4620 1.9636,-0.4620 1.9636 -0.4620c 1.0780,0.0000 1.7710,0.3593 1.7710 0.3593c 0.6930,0.3593 1.3604,0.9754 1.3604 0.9754l -0.1540,-1.9507 v -4.3378 h 3.7731 v 17.9928 h -3.0801 l -0.2567,-1.2577 h -0.1027 c -0.6674,0.6674 -1.5657,1.1165 -1.5657 1.1165c -0.8984,0.4492 -1.8224,0.4492 -1.8224 0.4492c -1.1807,-0.0000 -2.1432,-0.4620 -2.1432 -0.4620c -0.9625,-0.4620 -1.6427,-1.3219 -1.6427 -1.3219c -0.6802,-0.8599 -1.0524,-2.0919 -1.0524 -2.0919c -0.3722,-1.2320 -0.3722,-2.7977 -0.3722 -2.7977ZM 283.9194,13.8039 ZM 287.7952,13.7526 c 0.0000,1.8994 0.6032,2.7721 0.6032 2.7721c 0.6032,0.8727 1.7069,0.8727 1.7069 0.8727c 0.6160,0.0000 1.1165,-0.2567 1.1165 -0.2567c 0.5005,-0.2567 0.9625,-0.8984 0.9625 -0.8984v -5.2105 c -0.5133,-0.4620 -1.0524,-0.6417 -1.0524 -0.6417c -0.5390,-0.1797 -1.0524,-0.1797 -1.0524 -0.1797c -0.8984,-0.0000 -1.5914,0.8599 -1.5914 0.8599c -0.6930,0.8599 -0.6930,2.6822 -0.6930 2.6822ZM 297.6258,20.1694 ZM 301.1679,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 301.1679,5.5647 ZM 299.2941,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 304.7100,20.1694 ZM 305.9163,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 305.9163,16.6273 ZM 309.5098,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 318.4163,20.1694 ZM 320.0847,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 333.0980,20.1694 ZM 334.3301,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 341.9276,20.1694 ZM 347.1638,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 350.7572,20.1694 ZM 352.7336,3.4343 h 4.7228 c 1.9251,0.0000 3.4651,0.4877 3.4651 0.4877c 1.5400,0.4877 2.6437,1.5015 2.6437 1.5015c 1.1037,1.0139 1.6940,2.5796 1.6940 2.5796c 0.5903,1.5657 0.5903,3.7218 0.5903 3.7218c 0.0000,2.1561 -0.5903,3.7474 -0.5903 3.7474c -0.5903,1.5914 -1.6684,2.6309 -1.6684 2.6309c -1.0780,1.0395 -2.5796,1.5529 -2.5796 1.5529c -1.5015,0.5133 -3.3496,0.5133 -3.3496 0.5133h -4.9281 v -16.7351 ZM 352.7336,3.4343 ZM 357.2254,17.1150 c 1.0780,0.0000 1.9507,-0.2823 1.9507 -0.2823c 0.8727,-0.2823 1.4887,-0.9112 1.4887 -0.9112c 0.6160,-0.6289 0.9625,-1.6555 0.9625 -1.6555c 0.3465,-1.0267 0.3465,-2.5411 0.3465 -2.5411c 0.0000,-1.4887 -0.3465,-2.5026 -0.3465 -2.5026c -0.3465,-1.0139 -0.9625,-1.6170 -0.9625 -1.6170c -0.6160,-0.6032 -1.4887,-0.8599 -1.4887 -0.8599c -0.8727,-0.2567 -1.9507,-0.2567 -1.9507 -0.2567h -0.7187 v 10.6263 h 0.7187 ZM 367.0560,20.1694 ZM 370.5980,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 370.5980,5.5647 ZM 368.7243,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 374.1401,20.1694 ZM 391.1063,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 396.3167,20.1694 ZM 397.8568,7.4384 h 3.7731 v 7.4179 c 0.0000,1.3860 0.3850,1.8994 0.3850 1.8994c 0.3850,0.5133 1.2064,0.5133 1.2064 0.5133c 0.7187,0.0000 1.2064,-0.3337 1.2064 -0.3337c 0.4877,-0.3337 1.0524,-1.0780 1.0524 -1.0780v -8.4189 h 3.7731 v 12.7310 h -3.0801 l -0.2823,-1.7710 h -0.0770 c -0.8214,0.9754 -1.7582,1.5272 -1.7582 1.5272c -0.9369,0.5518 -2.2459,0.5518 -2.2459 0.5518c -2.0791,-0.0000 -3.0159,-1.3604 -3.0159 -1.3604c -0.9369,-1.3604 -0.9369,-3.7731 -0.9369 -3.7731v -7.9055 ZM 410.8958,20.1694 ZM 413.1289,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 422.2664,20.1694 ZM 425.8085,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 425.8085,5.5647 ZM 423.9348,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 429.3506,20.1694 ZM 431.0190,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 444.0323,20.1694 ZM 448.0108,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 448.0108,21.7608 ZM 444.9050,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 444.9050,22.3511 ZM 450.5262,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 463.0775,20.1694 ZM 464.7459,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 485.0744,20.1694 ZM 488.6165,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 488.6165,5.5647 ZM 486.7428,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 492.1586,20.1694 ZM 493.8270,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 512.1792,20.1694 ZM 513.1032,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 513.1032,13.8039 ZM 521.3167,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 525.4748,20.1694 ZM 527.7079,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 536.8455,20.1694 ZM 539.0272,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 546.6761,20.1694 ZM 550.2182,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 550.2182,5.5647 ZM 548.3445,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 553.7603,20.1694 ZM 555.4286,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 575.7572,20.1694 ZM 576.9636,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 576.9636,16.6273 ZM 580.5570,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 589.4636,20.1694 ZM 591.6453,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 599.0375,20.1694 ZM 599.9615,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 599.9615,13.8039 ZM 603.8373,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 613.2829,20.1694 ZM 614.9512,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 623.4985,20.1694 ZM 624.7305,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 74.4706,540.0000 h 656.7731 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 74.4706,441.4000 h 656.7731 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 74.4706,342.8000 h 656.7731 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 74.4706,244.2000 h 656.7731 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 74.4706,145.6000 h 656.7731 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 74.4706,47.0000 h 656.7731 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 89.4706,441.4000 v -315.4994 h 99.4622 v 315.4994 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 188.9328,441.4000 v -322.1089 h 99.4622 v 322.1089 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 288.3950,441.4000 v -317.6569 h 99.4622 v 317.6569 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 89.4706,441.4000 v -315.4994 h 99.4622 v 315.4994 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 188.9328,441.4000 v -322.1089 h 99.4622 v 322.1089 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 288.3950,441.4000 v -317.6569 h 99.4622 v 317.6569 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 417.8571,441.4000 v -0.8197 h 99.4622 v 0.8197 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 517.3193,441.4000 v 7.1354 h 99.4622 v -7.1354 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 616.7815,441.4000 v -3.4933 h 99.4622 v 3.4933 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 417.8571,441.4000 v -0.8197 h 99.4622 v 0.8197 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 517.3193,441.4000 v 7.1354 h 99.4622 v -7.1354 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 74.4706,47.0000 v 493.0000 h 656.7731 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 616.7815,441.4000 v -3.4933 h 99.4622 v 3.4933 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 74.4706,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,530.1400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,520.2800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,510.4200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,500.5600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,490.7000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,480.8400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,470.9800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,461.1200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,451.2600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,441.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,431.5400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,421.6800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,411.8200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,401.9600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,392.1000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,382.2400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,372.3800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,362.5200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,352.6600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,342.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,332.9400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,323.0800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,313.2200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,303.3600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,293.5000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,283.6400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,273.7800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,263.9200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,254.0600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,244.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,234.3400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,224.4800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,214.6200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,204.7600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,194.9000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,185.0400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,175.1800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,165.3200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,155.4600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,145.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,135.7400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,125.8800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,116.0200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,106.1600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,96.3000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,86.4400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,76.5800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,66.7200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,56.8600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,441.4000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,342.8000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,244.2000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,145.6000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.4706,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 21.9118,544.8235 ZM 22.5147,540.6765 h 3.3824 v 0.9265 h -3.3824 v -0.9265 ZM 26.4853,544.8235 ZM 27.0735,544.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 33.7941,544.8235 ZM 37.4559,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 37.4559,545.0000 ZM 37.4559,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 41.1029,544.8235 ZM 44.7647,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 44.7647,545.0000 ZM 44.7647,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.3824,544.8235 ZM 52.4853,537.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 59.3824,544.8235 ZM 60.3971,543.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.1471,446.2235 ZM 44.8088,446.4000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 44.8088,446.4000 ZM 44.8088,445.4294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.4265,446.2235 ZM 52.5294,439.0765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 59.4265,446.2235 ZM 60.4412,444.6059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 26.4118,347.6235 ZM 27.0000,346.9029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 33.7206,347.6235 ZM 37.3824,347.8000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 37.3824,347.8000 ZM 37.3824,346.8294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 41.0294,347.6235 ZM 44.6912,347.8000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 44.6912,347.8000 ZM 44.6912,346.8294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.3088,347.6235 ZM 52.4118,340.4765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 59.3088,347.6235 ZM 60.3235,346.0059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 26.1324,249.0235 ZM 30.6029,245.4647 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 30.6029,245.4647 ZM 33.0294,246.4353 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 33.4412,249.0235 ZM 37.1029,249.2000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 37.1029,249.2000 ZM 37.1029,248.2294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 40.7500,249.0235 ZM 44.4118,249.2000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 44.4118,249.2000 ZM 44.4118,248.2294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.0294,249.0235 ZM 52.1324,241.8765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 59.0294,249.0235 ZM 60.0441,247.4059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 26.5882,150.4235 ZM 30.5294,149.6441 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 30.5294,149.6441 ZM 32.4559,142.6147 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 33.8971,150.4235 ZM 37.5588,150.6000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 37.5588,150.6000 ZM 37.5588,149.6294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 41.2059,150.4235 ZM 44.8676,150.6000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 44.8676,150.6000 ZM 44.8676,149.6294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.4853,150.4235 ZM 52.5882,143.2765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 59.4853,150.4235 ZM 60.5000,148.8059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 26.4853,51.8235 ZM 28.1765,49.3088 c 0.0000,0.3971 0.1544,0.7206 0.1544 0.7206c 0.1544,0.3235 0.4265,0.5662 0.4265 0.5662c 0.2721,0.2426 0.6397,0.3750 0.6397 0.3750c 0.3676,0.1324 0.7941,0.1324 0.7941 0.1324c 0.8235,0.0000 1.3309,-0.4559 1.3309 -0.4559c 0.5074,-0.4559 0.5074,-1.1912 0.5074 -1.1912c 0.0000,-0.4559 -0.2059,-0.7794 -0.2059 -0.7794c -0.2059,-0.3235 -0.5588,-0.5662 -0.5588 -0.5662c -0.3529,-0.2426 -0.8162,-0.4412 -0.8162 -0.4412c -0.4632,-0.1985 -0.9632,-0.4044 -0.9632 -0.4044c -0.5588,0.3824 -0.9338,0.8897 -0.9338 0.8897c -0.3750,0.5074 -0.3750,1.1544 -0.3750 1.1544ZM 28.1765,49.3088 ZM 30.8235,46.7059 c 0.4706,-0.4265 0.7279,-0.8971 0.7279 -0.8971c 0.2574,-0.4706 0.2574,-0.9853 0.2574 -0.9853c 0.0000,-0.7059 -0.4265,-1.1838 -0.4265 -1.1838c -0.4265,-0.4779 -1.2059,-0.4779 -1.2059 -0.4779c -0.6618,-0.0000 -1.0882,0.4118 -1.0882 0.4118c -0.4265,0.4118 -0.4265,1.1029 -0.4265 1.1029c 0.0000,0.4265 0.1765,0.7279 0.1765 0.7279c 0.1765,0.3015 0.4779,0.5368 0.4779 0.5368c 0.3015,0.2353 0.6912,0.4191 0.6912 0.4191c 0.3897,0.1838 0.8162,0.3456 0.8162 0.3456ZM 30.8235,46.7059 ZM 27.0882,49.4265 c 0.0000,-0.4559 0.1544,-0.8456 0.1544 -0.8456c 0.1544,-0.3897 0.3971,-0.7059 0.3971 -0.7059c 0.2426,-0.3162 0.5588,-0.5588 0.5588 -0.5588c 0.3162,-0.2426 0.6544,-0.4191 0.6544 -0.4191v -0.0588 c -0.5147,-0.3676 -0.9118,-0.8897 -0.9118 -0.8897c -0.3971,-0.5221 -0.3971,-1.2721 -0.3971 -1.2721c 0.0000,-0.5441 0.2059,-0.9853 0.2059 -0.9853c 0.2059,-0.4412 0.5588,-0.7574 0.5588 -0.7574c 0.3529,-0.3162 0.8382,-0.4926 0.8382 -0.4926c 0.4853,-0.1765 1.0588,-0.1765 1.0588 -0.1765c 0.6176,0.0000 1.1029,0.1838 1.1029 0.1838c 0.4853,0.1838 0.8309,0.5147 0.8309 0.5147c 0.3456,0.3309 0.5294,0.7941 0.5294 0.7941c 0.1838,0.4632 0.1838,1.0074 0.1838 1.0074c 0.0000,0.3676 -0.1250,0.7059 -0.1250 0.7059c -0.1250,0.3382 -0.3088,0.6324 -0.3088 0.6324c -0.1838,0.2941 -0.4118,0.5294 -0.4118 0.5294c -0.2279,0.2353 -0.4485,0.3971 -0.4485 0.3971v 0.0588 c 0.3088,0.1765 0.6029,0.4044 0.6029 0.4044c 0.2941,0.2279 0.5221,0.5147 0.5221 0.5147c 0.2279,0.2868 0.3676,0.6544 0.3676 0.6544c 0.1397,0.3676 0.1397,0.8382 0.1397 0.8382c 0.0000,0.5294 -0.2206,0.9853 -0.2206 0.9853c -0.2206,0.4559 -0.6176,0.7941 -0.6176 0.7941c -0.3971,0.3382 -0.9559,0.5294 -0.9559 0.5294c -0.5588,0.1912 -1.2353,0.1912 -1.2353 0.1912c -0.6618,-0.0000 -1.2279,-0.1912 -1.2279 -0.1912c -0.5662,-0.1912 -0.9706,-0.5368 -0.9706 -0.5368c -0.4044,-0.3456 -0.6397,-0.8162 -0.6397 -0.8162c -0.2353,-0.4706 -0.2353,-1.0294 -0.2353 -1.0294ZM 33.7941,51.8235 ZM 37.4559,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 37.4559,52.0000 ZM 37.4559,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 41.1029,51.8235 ZM 44.7647,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 44.7647,52.0000 ZM 44.7647,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.3824,51.8235 ZM 52.4853,44.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 59.3824,51.8235 ZM 60.3971,50.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 74.4706,540.0000 h 656.7731 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.1933,566.0000 ZM 175.3529,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 181.2353,566.0000 ZM 182.8487,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 186.9160,566.0000 ZM 188.2941,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 192.5798,566.0000 ZM 193.3529,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 193.3529,561.9328 ZM 199.0672,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 200.6807,566.0000 ZM 201.6555,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 201.6555,563.8824 ZM 203.0168,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 209.2857,566.0000 ZM 210.6639,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 223.2185,566.0000 ZM 224.5966,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 227.5042,566.0000 ZM 228.3277,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 235.3529,566.0000 ZM 238.9496,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 240.4454,566.0000 ZM 241.7059,557.8319 h 1.3950 v 4.9916 c 0.0000,1.1597 0.3613,1.6723 0.3613 1.6723c 0.3613,0.5126 1.1681,0.5126 1.1681 0.5126c 0.6387,0.0000 1.1261,-0.3277 1.1261 -0.3277c 0.4874,-0.3277 1.0756,-1.0504 1.0756 -1.0504v -5.7983 h 1.3782 v 8.1681 h -1.1429 l -0.1176,-1.2773 h -0.0504 c -0.5714,0.6723 -1.2017,1.0756 -1.2017 1.0756c -0.6303,0.4034 -1.4874,0.4034 -1.4874 0.4034c -1.3109,-0.0000 -1.9076,-0.8067 -1.9076 -0.8067c -0.5966,-0.8067 -0.5966,-2.3866 -0.5966 -2.3866v -5.1765 ZM 249.5882,566.0000 ZM 250.7479,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 256.6303,566.0000 ZM 257.2689,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 261.7227,566.0000 ZM 265.3193,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 266.8151,566.0000 ZM 268.1933,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 268.1933,554.0336 ZM 269.5714,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 275.9076,566.0000 ZM 276.8824,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 276.8824,563.8824 ZM 278.2437,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 284.5126,566.0000 ZM 285.6723,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 291.5546,566.0000 ZM 292.3277,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 292.3277,561.9328 ZM 298.0420,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 299.8908,566.0000 ZM 300.5294,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 508.2941,566.0000 ZM 508.4958,557.8319 h 1.4286 l 1.5462,4.6387 c 0.1849,0.6050 0.3782,1.2101 0.3782 1.2101c 0.1933,0.6050 0.3782,1.1933 0.3782 1.1933h 0.0672 c 0.1849,-0.5882 0.3697,-1.1933 0.3697 -1.1933l 0.3697,-1.2101 l 1.5462,-4.6387 h 1.3613 l -2.8908,8.1681 h -1.6134 ZM 516.0756,566.0000 ZM 516.8487,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 516.8487,561.9328 ZM 522.5630,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 524.4118,566.0000 ZM 525.1849,561.9328 c 0.0000,-1.0252 0.3193,-1.8235 0.3193 -1.8235c 0.3193,-0.7983 0.8571,-1.3529 0.8571 -1.3529c 0.5378,-0.5546 1.2521,-0.8403 1.2521 -0.8403c 0.7143,-0.2857 1.5042,-0.2857 1.5042 -0.2857c 0.8067,0.0000 1.3866,0.2941 1.3866 0.2941c 0.5798,0.2941 1.0000,0.6807 1.0000 0.6807l -0.6891,0.8908 c -0.3697,-0.3193 -0.7647,-0.5210 -0.7647 -0.5210c -0.3950,-0.2017 -0.8824,-0.2017 -0.8824 -0.2017c -0.5546,-0.0000 -1.0252,0.2269 -1.0252 0.2269c -0.4706,0.2269 -0.8067,0.6471 -0.8067 0.6471c -0.3361,0.4202 -0.5294,1.0000 -0.5294 1.0000c -0.1933,0.5798 -0.1933,1.2857 -0.1933 1.2857c 0.0000,0.7059 0.1849,1.2773 0.1849 1.2773c 0.1849,0.5714 0.5126,0.9832 0.5126 0.9832c 0.3277,0.4118 0.7983,0.6387 0.7983 0.6387c 0.4706,0.2269 1.0252,0.2269 1.0252 0.2269c 0.5882,0.0000 1.0672,-0.2437 1.0672 -0.2437c 0.4790,-0.2437 0.8487,-0.5798 0.8487 -0.5798l 0.6218,0.9076 c -0.5546,0.4874 -1.2353,0.7731 -1.2353 0.7731c -0.6807,0.2857 -1.4202,0.2857 -1.4202 0.2857c -0.8067,-0.0000 -1.5126,-0.2857 -1.5126 -0.2857c -0.7059,-0.2857 -1.2185,-0.8319 -1.2185 -0.8319c -0.5126,-0.5462 -0.8067,-1.3445 -0.8067 -1.3445c -0.2941,-0.7983 -0.2941,-1.8067 -0.2941 -1.8067ZM 532.0756,566.0000 ZM 533.6891,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 537.5882,566.0000 ZM 538.3613,561.9328 c 0.0000,-1.0252 0.3109,-1.8235 0.3109 -1.8235c 0.3109,-0.7983 0.8319,-1.3529 0.8319 -1.3529c 0.5210,-0.5546 1.2017,-0.8403 1.2017 -0.8403c 0.6807,-0.2857 1.4370,-0.2857 1.4370 -0.2857c 0.7563,0.0000 1.4370,0.2857 1.4370 0.2857c 0.6807,0.2857 1.2017,0.8403 1.2017 0.8403c 0.5210,0.5546 0.8319,1.3529 0.8319 1.3529c 0.3109,0.7983 0.3109,1.8235 0.3109 1.8235c 0.0000,1.0084 -0.3109,1.8067 -0.3109 1.8067c -0.3109,0.7983 -0.8319,1.3445 -0.8319 1.3445c -0.5210,0.5462 -1.2017,0.8319 -1.2017 0.8319c -0.6807,0.2857 -1.4370,0.2857 -1.4370 0.2857c -0.7563,-0.0000 -1.4370,-0.2857 -1.4370 -0.2857c -0.6807,-0.2857 -1.2017,-0.8319 -1.2017 -0.8319c -0.5210,-0.5462 -0.8319,-1.3445 -0.8319 -1.3445c -0.3109,-0.7983 -0.3109,-1.8067 -0.3109 -1.8067ZM 538.3613,561.9328 ZM 539.7899,561.9328 c 0.0000,0.7059 0.1681,1.2773 0.1681 1.2773c 0.1681,0.5714 0.4790,0.9832 0.4790 0.9832c 0.3109,0.4118 0.7479,0.6387 0.7479 0.6387c 0.4370,0.2269 0.9580,0.2269 0.9580 0.2269c 0.5210,0.0000 0.9580,-0.2269 0.9580 -0.2269c 0.4370,-0.2269 0.7479,-0.6387 0.7479 -0.6387c 0.3109,-0.4118 0.4790,-0.9832 0.4790 -0.9832c 0.1681,-0.5714 0.1681,-1.2773 0.1681 -1.2773c 0.0000,-0.7059 -0.1681,-1.2857 -0.1681 -1.2857c -0.1681,-0.5798 -0.4790,-1.0000 -0.4790 -1.0000c -0.3109,-0.4202 -0.7479,-0.6471 -0.7479 -0.6471c -0.4370,-0.2269 -0.9580,-0.2269 -0.9580 -0.2269c -0.5210,-0.0000 -0.9580,0.2269 -0.9580 0.2269c -0.4370,0.2269 -0.7479,0.6471 -0.7479 0.6471c -0.3109,0.4202 -0.4790,1.0000 -0.4790 1.0000c -0.1681,0.5798 -0.1681,1.2857 -0.1681 1.2857ZM 546.6975,566.0000 ZM 548.0756,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 552.5294,566.0000 ZM 556.1261,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 557.6218,566.0000 ZM 558.8824,557.8319 h 1.3950 v 4.9916 c 0.0000,1.1597 0.3613,1.6723 0.3613 1.6723c 0.3613,0.5126 1.1681,0.5126 1.1681 0.5126c 0.6387,0.0000 1.1261,-0.3277 1.1261 -0.3277c 0.4874,-0.3277 1.0756,-1.0504 1.0756 -1.0504v -5.7983 h 1.3782 v 8.1681 h -1.1429 l -0.1176,-1.2773 h -0.0504 c -0.5714,0.6723 -1.2017,1.0756 -1.2017 1.0756c -0.6303,0.4034 -1.4874,0.4034 -1.4874 0.4034c -1.3109,-0.0000 -1.9076,-0.8067 -1.9076 -0.8067c -0.5966,-0.8067 -0.5966,-2.3866 -0.5966 -2.3866v -5.1765 ZM 566.7647,566.0000 ZM 567.9244,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 573.8067,566.0000 ZM 574.4454,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 578.8992,566.0000 ZM 582.4958,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 583.9916,566.0000 ZM 584.6807,561.2605 h 3.8655 v 1.0588 h -3.8655 v -1.0588 ZM 589.2185,566.0000 ZM 590.5966,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 590.5966,554.0336 ZM 591.9748,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 598.3109,566.0000 ZM 599.2857,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 599.2857,563.8824 ZM 600.6471,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 606.9160,566.0000 ZM 608.0756,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 613.9580,566.0000 ZM 614.7311,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 614.7311,561.9328 ZM 620.4454,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 622.2941,566.0000 ZM 622.9328,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 43.5294,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 43.2500,585.2500 ZM 43.9265,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 43.9265,581.6912 ZM 45.1765,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 51.2206,585.2500 ZM 52.4265,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 54.9706,585.2500 ZM 55.6618,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 55.6618,581.6912 ZM 56.9118,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 81.4853,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.5882,585.2500 ZM 111.7941,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 122.7794,585.2500 ZM 123.6324,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 123.6324,583.3971 ZM 124.8235,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 130.3088,585.2500 ZM 132.7206,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 132.7206,585.8529 ZM 132.7206,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 156.5588,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.6618,585.2500 ZM 186.1176,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 191.9118,585.2500 ZM 193.7353,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 193.7353,576.6324 ZM 193.1176,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 195.5294,585.2500 ZM 197.9412,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 197.9412,585.8529 ZM 197.9412,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/grouped-median-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.5683,20.1694 ZM 321.8044,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 325.3978,20.1694 ZM 327.5796,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 335.2284,20.1694 ZM 338.7705,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 338.7705,5.5647 ZM 336.8968,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 342.3126,20.1694 ZM 343.9810,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 364.3095,20.1694 ZM 365.2336,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 365.2336,13.8039 ZM 373.4471,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 377.6052,20.1694 ZM 378.8373,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 386.4348,20.1694 ZM 391.6709,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 395.2644,20.1694 ZM 397.2408,3.4343 h 4.0041 l 2.7977,7.5205 l 1.0010,2.9261 h 0.1027 l 1.0010,-2.9261 l 2.7207,-7.5205 h 3.9784 v 16.7351 h -3.5164 v -6.1345 c 0.0000,-0.6160 0.0513,-1.3604 0.0513 -1.3604c 0.0513,-0.7444 0.1283,-1.5015 0.1283 -1.5015c 0.0770,-0.7572 0.1540,-1.4887 0.1540 -1.4887c 0.0770,-0.7315 0.1540,-1.3475 0.1540 -1.3475h -0.1027 l -1.3860,3.8758 l -2.5667,6.4938 h -1.5144 l -2.5667,-6.4938 l -1.3347,-3.8758 h -0.1027 c 0.0770,0.6160 0.1540,1.3475 0.1540 1.3475c 0.0770,0.7315 0.1412,1.4887 0.1412 1.4887c 0.0642,0.7572 0.1155,1.5015 0.1155 1.5015c 0.0513,0.7444 0.0513,1.3604 0.0513 1.3604v 6.1345 h -3.4651 v -16.7351 ZM 414.8229,20.1694 ZM 415.7469,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 415.7469,13.8039 ZM 423.9605,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 428.1186,20.1694 ZM 429.1196,13.8039 c 0.0000,-1.5657 0.4492,-2.7977 0.4492 -2.7977c 0.4492,-1.2320 1.1807,-2.0919 1.1807 -2.0919c 0.7315,-0.8599 1.6940,-1.3219 1.6940 -1.3219c 0.9625,-0.4620 1.9636,-0.4620 1.9636 -0.4620c 1.0780,0.0000 1.7710,0.3593 1.7710 0.3593c 0.6930,0.3593 1.3604,0.9754 1.3604 0.9754l -0.1540,-1.9507 v -4.3378 h 3.7731 v 17.9928 h -3.0801 l -0.2567,-1.2577 h -0.1027 c -0.6674,0.6674 -1.5657,1.1165 -1.5657 1.1165c -0.8984,0.4492 -1.8224,0.4492 -1.8224 0.4492c -1.1807,-0.0000 -2.1432,-0.4620 -2.1432 -0.4620c -0.9625,-0.4620 -1.6427,-1.3219 -1.6427 -1.3219c -0.6802,-0.8599 -1.0524,-2.0919 -1.0524 -2.0919c -0.3722,-1.2320 -0.3722,-2.7977 -0.3722 -2.7977ZM 429.1196,13.8039 ZM 432.9954,13.7526 c 0.0000,1.8994 0.6032,2.7721 0.6032 2.7721c 0.6032,0.8727 1.7069,0.8727 1.7069 0.8727c 0.6160,0.0000 1.1165,-0.2567 1.1165 -0.2567c 0.5005,-0.2567 0.9625,-0.8984 0.9625 -0.8984v -5.2105 c -0.5133,-0.4620 -1.0524,-0.6417 -1.0524 -0.6417c -0.5390,-0.1797 -1.0524,-0.1797 -1.0524 -0.1797c -0.8984,-0.0000 -1.5914,0.8599 -1.5914 0.8599c -0.6930,0.8599 -0.6930,2.6822 -0.6930 2.6822ZM 442.8260,20.1694 ZM 446.3681,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 446.3681,5.5647 ZM 444.4944,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 449.9102,20.1694 ZM 451.1165,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 451.1165,16.6273 ZM 454.7100,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 463.6165,20.1694 ZM 465.2849,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 478.2983,20.1694 ZM 479.5303,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,540.0000 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,469.5714 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,399.1429 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,328.7143 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,258.2857 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,187.8571 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,117.4286 h 697.1492 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 58.3382,47.0000 h 697.1492 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 73.3382,540.0000 v -450.7135 h 106.1915 v 450.7135 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 179.5298,540.0000 v -460.1556 h 106.1915 v 460.1556 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 285.7213,540.0000 v -453.7955 h 106.1915 v 453.7955 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 73.3382,540.0000 v -450.7135 h 106.1915 v 450.7135 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 179.5298,540.0000 v -460.1556 h 106.1915 v 460.1556 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 285.7213,540.0000 v -453.7955 h 106.1915 v 453.7955 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 421.9128,540.0000 v -451.8845 h 106.1915 v 451.8845 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 528.1043,540.0000 v -449.9621 h 106.1915 v 449.9621 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 634.2959,540.0000 v -458.7860 h 106.1915 v 458.7860 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 421.9128,540.0000 v -451.8845 h 106.1915 v 451.8845 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 528.1043,540.0000 v -449.9621 h 106.1915 v 449.9621 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 58.3382,47.0000 v 493.0000 h 697.1492 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 634.2959,540.0000 v -458.7860 h 106.1915 v 458.7860 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 58.3382,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,525.9143 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,511.8286 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,497.7429 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,483.6571 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,469.5714 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,455.4857 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,441.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,427.3143 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,413.2286 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,399.1429 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,385.0571 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,370.9714 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,356.8857 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,342.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,328.7143 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,314.6286 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,300.5429 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,286.4571 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,272.3714 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,258.2857 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,244.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,230.1143 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,216.0286 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,201.9429 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,187.8571 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,173.7714 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,159.6857 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,145.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,131.5143 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,117.4286 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,103.3429 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,89.2571 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,75.1714 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,61.0857 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,469.5714 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,399.1429 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,328.7143 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,258.2857 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,187.8571 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,117.4286 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 58.3382,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 25.0147,544.8235 ZM 28.6765,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.6765,545.0000 ZM 28.6765,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.2941,544.8235 ZM 36.3971,537.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.2941,544.8235 ZM 44.3088,543.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.9118,474.3950 ZM 12.0735,473.3950 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 18.2206,474.3950 ZM 21.8824,474.5714 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.8824,474.5714 ZM 21.8824,473.6008 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 25.5294,474.3950 ZM 29.1912,474.5714 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 29.1912,474.5714 ZM 29.1912,473.6008 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.8088,474.3950 ZM 36.9118,467.2479 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.8088,474.3950 ZM 44.8235,472.7773 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.2794,403.9664 ZM 10.8676,403.2458 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 17.5882,403.9664 ZM 21.2500,404.1429 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.2500,404.1429 ZM 21.2500,403.1723 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.8971,403.9664 ZM 28.5588,404.1429 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.5588,404.1429 ZM 28.5588,403.1723 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.1765,403.9664 ZM 36.2794,396.8193 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.1765,403.9664 ZM 44.1912,402.3487 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.1324,333.5378 ZM 11.1324,331.5966 c 0.4265,0.4412 0.9926,0.7794 0.9926 0.7794c 0.5662,0.3382 1.4044,0.3382 1.4044 0.3382c 0.8529,0.0000 1.3971,-0.4632 1.3971 -0.4632c 0.5441,-0.4632 0.5441,-1.2574 0.5441 -1.2574c 0.0000,-0.4118 -0.1544,-0.7574 -0.1544 -0.7574c -0.1544,-0.3456 -0.5074,-0.5956 -0.5074 -0.5956c -0.3529,-0.2500 -0.9265,-0.3824 -0.9265 -0.3824c -0.5735,-0.1324 -1.4118,-0.1324 -1.4118 -0.1324v -0.9265 c 0.7500,0.0000 1.2574,-0.1324 1.2574 -0.1324c 0.5074,-0.1324 0.8235,-0.3676 0.8235 -0.3676c 0.3162,-0.2353 0.4485,-0.5588 0.4485 -0.5588c 0.1324,-0.3235 0.1324,-0.6912 0.1324 -0.6912c 0.0000,-0.6912 -0.4338,-1.0882 -0.4338 -1.0882c -0.4338,-0.3971 -1.1838,-0.3971 -1.1838 -0.3971c -0.5882,-0.0000 -1.0809,0.2647 -1.0809 0.2647c -0.4926,0.2647 -0.9191,0.6912 -0.9191 0.6912l -0.6471,-0.7647 c 0.5441,-0.5147 1.1985,-0.8456 1.1985 -0.8456c 0.6544,-0.3309 1.4926,-0.3309 1.4926 -0.3309c 0.6176,0.0000 1.1324,0.1618 1.1324 0.1618c 0.5147,0.1618 0.8897,0.4632 0.8897 0.4632c 0.3750,0.3015 0.5809,0.7426 0.5809 0.7426c 0.2059,0.4412 0.2059,1.0147 0.2059 1.0147c 0.0000,0.8529 -0.4706,1.3971 -0.4706 1.3971c -0.4706,0.5441 -1.2353,0.8382 -1.2353 0.8382v 0.0588 c 0.4265,0.1029 0.7941,0.3015 0.7941 0.3015c 0.3676,0.1985 0.6471,0.5000 0.6471 0.5000c 0.2794,0.3015 0.4338,0.6985 0.4338 0.6985c 0.1544,0.3971 0.1544,0.8824 0.1544 0.8824c 0.0000,0.6176 -0.2426,1.1176 -0.2426 1.1176c -0.2426,0.5000 -0.6618,0.8456 -0.6618 0.8456c -0.4191,0.3456 -0.9779,0.5294 -0.9779 0.5294c -0.5588,0.1838 -1.2059,0.1838 -1.2059 0.1838c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8456,-0.2941 -0.8456 -0.2941c -0.3824,-0.1838 -0.6838,-0.4191 -0.6838 -0.4191c -0.3015,-0.2353 -0.5368,-0.5000 -0.5368 -0.5000ZM 17.4412,333.5378 ZM 21.1029,333.7143 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.1029,333.7143 ZM 21.1029,332.7437 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.7500,333.5378 ZM 28.4118,333.7143 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.4118,333.7143 ZM 28.4118,332.7437 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.0294,333.5378 ZM 36.1324,326.3908 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.0294,333.5378 ZM 44.0441,331.9202 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,263.1092 ZM 14.4706,259.5504 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 14.4706,259.5504 ZM 16.8971,260.5210 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 17.3088,263.1092 ZM 20.9706,263.2857 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 20.9706,263.2857 ZM 20.9706,262.3151 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.6176,263.1092 ZM 28.2794,263.2857 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.2794,263.2857 ZM 28.2794,262.3151 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 34.8971,263.1092 ZM 36.0000,255.9622 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 42.8971,263.1092 ZM 43.9118,261.4916 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.1176,192.6807 ZM 11.0735,190.7836 c 0.4118,0.4265 0.9779,0.7500 0.9779 0.7500c 0.5662,0.3235 1.3897,0.3235 1.3897 0.3235c 0.4265,0.0000 0.8015,-0.1544 0.8015 -0.1544c 0.3750,-0.1544 0.6544,-0.4338 0.6544 -0.4338c 0.2794,-0.2794 0.4412,-0.6765 0.4412 -0.6765c 0.1618,-0.3971 0.1618,-0.8824 0.1618 -0.8824c 0.0000,-0.9706 -0.5441,-1.5147 -0.5441 -1.5147c -0.5441,-0.5441 -1.4559,-0.5441 -1.4559 -0.5441c -0.4853,-0.0000 -0.8309,0.1471 -0.8309 0.1471c -0.3456,0.1471 -0.7721,0.4265 -0.7721 0.4265l -0.6471,-0.4118 l 0.3088,-4.5147 h 4.6912 v 1.0441 h -3.6324 l -0.2500,2.7794 c 0.3382,-0.1765 0.6765,-0.2794 0.6765 -0.2794c 0.3382,-0.1029 0.7647,-0.1029 0.7647 -0.1029c 0.6029,0.0000 1.1324,0.1765 1.1324 0.1765c 0.5294,0.1765 0.9265,0.5368 0.9265 0.5368c 0.3971,0.3603 0.6250,0.9118 0.6250 0.9118c 0.2279,0.5515 0.2279,1.3162 0.2279 1.3162c 0.0000,0.7647 -0.2647,1.3529 -0.2647 1.3529c -0.2647,0.5882 -0.7059,0.9926 -0.7059 0.9926c -0.4412,0.4044 -1.0074,0.6176 -1.0074 0.6176c -0.5662,0.2132 -1.1838,0.2132 -1.1838 0.2132c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8382,-0.2868 -0.8382 -0.2868c -0.3750,-0.1765 -0.6765,-0.4044 -0.6765 -0.4044c -0.3015,-0.2279 -0.5368,-0.4779 -0.5368 -0.4779ZM 17.4265,192.6807 ZM 21.0882,192.8571 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.0882,192.8571 ZM 21.0882,191.8866 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 24.7353,192.6807 ZM 28.3971,192.8571 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.3971,192.8571 ZM 28.3971,191.8866 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.0147,192.6807 ZM 36.1176,185.5336 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.0147,192.6807 ZM 44.0294,191.0630 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.4559,122.2521 ZM 14.3971,121.4727 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 14.3971,121.4727 ZM 16.3235,114.4433 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 17.7647,122.2521 ZM 21.4265,122.4286 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.4265,122.4286 ZM 21.4265,121.4580 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 25.0735,122.2521 ZM 28.7353,122.4286 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.7353,122.4286 ZM 28.7353,121.4580 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.3529,122.2521 ZM 36.4559,115.1050 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.3529,122.2521 ZM 44.3676,120.6345 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.3971,51.8235 ZM 13.0000,51.8235 c 0.0588,-1.3235 0.2353,-2.4265 0.2353 -2.4265c 0.1765,-1.1029 0.4926,-2.0956 0.4926 -2.0956c 0.3162,-0.9926 0.8088,-1.9191 0.8088 -1.9191c 0.4926,-0.9265 1.1838,-1.8971 1.1838 -1.8971h -4.6765 v -1.0441 h 6.0441 v 0.7500 c -0.8382,1.0588 -1.3603,2.0294 -1.3603 2.0294c -0.5221,0.9706 -0.8309,1.9779 -0.8309 1.9779c -0.3088,1.0074 -0.4485,2.1324 -0.4485 2.1324c -0.1397,1.1250 -0.1985,2.4926 -0.1985 2.4926h -1.2500 h 0.0000 ZM 17.7059,51.8235 ZM 21.3676,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 21.3676,52.0000 ZM 21.3676,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 25.0147,51.8235 ZM 28.6765,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 28.6765,52.0000 ZM 28.6765,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 35.2941,51.8235 ZM 36.3971,44.6765 h 1.2206 v 4.3676 c 0.0000,1.0147 0.3162,1.4632 0.3162 1.4632c 0.3162,0.4485 1.0221,0.4485 1.0221 0.4485c 0.5588,0.0000 0.9853,-0.2868 0.9853 -0.2868c 0.4265,-0.2868 0.9412,-0.9191 0.9412 -0.9191v -5.0735 h 1.2059 v 7.1471 h -1.0000 l -0.1029,-1.1176 h -0.0441 c -0.5000,0.5882 -1.0515,0.9412 -1.0515 0.9412c -0.5515,0.3529 -1.3015,0.3529 -1.3015 0.3529c -1.1471,-0.0000 -1.6691,-0.7059 -1.6691 -0.7059c -0.5221,-0.7059 -0.5221,-2.0882 -0.5221 -2.0882v -4.5294 ZM 43.2941,51.8235 ZM 44.3088,50.2059 c 0.4706,0.3824 0.9632,0.6176 0.9632 0.6176c 0.4926,0.2353 1.1397,0.2353 1.1397 0.2353c 0.7059,0.0000 1.0588,-0.3235 1.0588 -0.3235c 0.3529,-0.3235 0.3529,-0.7941 0.3529 -0.7941c 0.0000,-0.2794 -0.1471,-0.4853 -0.1471 -0.4853c -0.1471,-0.2059 -0.3750,-0.3603 -0.3750 -0.3603c -0.2279,-0.1544 -0.5221,-0.2721 -0.5221 -0.2721l -0.5882,-0.2353 c -0.3824,-0.1324 -0.7647,-0.3015 -0.7647 -0.3015c -0.3824,-0.1691 -0.6838,-0.4118 -0.6838 -0.4118c -0.3015,-0.2426 -0.4926,-0.5662 -0.4926 -0.5662c -0.1912,-0.3235 -0.1912,-0.7794 -0.1912 -0.7794c 0.0000,-0.4265 0.1691,-0.8015 0.1691 -0.8015c 0.1691,-0.3750 0.4853,-0.6471 0.4853 -0.6471c 0.3162,-0.2721 0.7721,-0.4265 0.7721 -0.4265c 0.4559,-0.1544 1.0294,-0.1544 1.0294 -0.1544c 0.6765,0.0000 1.2426,0.2353 1.2426 0.2353c 0.5662,0.2353 0.9779,0.5735 0.9779 0.5735l -0.5735,0.7647 c -0.3676,-0.2794 -0.7647,-0.4559 -0.7647 -0.4559c -0.3971,-0.1765 -0.8676,-0.1765 -0.8676 -0.1765c -0.6765,-0.0000 -0.9926,0.3088 -0.9926 0.3088c -0.3162,0.3088 -0.3162,0.7206 -0.3162 0.7206c 0.0000,0.2500 0.1324,0.4338 0.1324 0.4338c 0.1324,0.1838 0.3529,0.3235 0.3529 0.3235c 0.2206,0.1397 0.5074,0.2500 0.5074 0.2500c 0.2868,0.1103 0.5956,0.2279 0.5956 0.2279c 0.3824,0.1471 0.7721,0.3088 0.7721 0.3088c 0.3897,0.1618 0.6985,0.4044 0.6985 0.4044c 0.3088,0.2426 0.5074,0.5956 0.5074 0.5956c 0.1985,0.3529 0.1985,0.8529 0.1985 0.8529c 0.0000,0.4412 -0.1691,0.8235 -0.1691 0.8235c -0.1691,0.3824 -0.5000,0.6765 -0.5000 0.6765c -0.3309,0.2941 -0.8235,0.4632 -0.8235 0.4632c -0.4926,0.1691 -1.1250,0.1691 -1.1250 0.1691c -0.7647,-0.0000 -1.4559,-0.2794 -1.4559 -0.2794c -0.6912,-0.2794 -1.2059,-0.7059 -1.2059 -0.7059Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 58.3382,540.0000 h 697.1492 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 189.7852,566.0000 ZM 190.9449,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 196.8272,566.0000 ZM 198.4407,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 202.5079,566.0000 ZM 203.8860,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 208.1717,566.0000 ZM 208.9449,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 208.9449,561.9328 ZM 214.6591,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 216.2726,566.0000 ZM 217.2474,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 217.2474,563.8824 ZM 218.6087,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 224.8776,566.0000 ZM 226.2558,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 238.8104,566.0000 ZM 240.1886,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 243.0961,566.0000 ZM 243.9196,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 250.9449,566.0000 ZM 254.5415,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 256.0373,566.0000 ZM 257.2978,557.8319 h 1.3950 v 4.9916 c 0.0000,1.1597 0.3613,1.6723 0.3613 1.6723c 0.3613,0.5126 1.1681,0.5126 1.1681 0.5126c 0.6387,0.0000 1.1261,-0.3277 1.1261 -0.3277c 0.4874,-0.3277 1.0756,-1.0504 1.0756 -1.0504v -5.7983 h 1.3782 v 8.1681 h -1.1429 l -0.1176,-1.2773 h -0.0504 c -0.5714,0.6723 -1.2017,1.0756 -1.2017 1.0756c -0.6303,0.4034 -1.4874,0.4034 -1.4874 0.4034c -1.3109,-0.0000 -1.9076,-0.8067 -1.9076 -0.8067c -0.5966,-0.8067 -0.5966,-2.3866 -0.5966 -2.3866v -5.1765 ZM 265.1801,566.0000 ZM 266.3398,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 272.2222,566.0000 ZM 272.8608,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 546.6875,566.0000 ZM 546.8892,557.8319 h 1.4286 l 1.5462,4.6387 c 0.1849,0.6050 0.3782,1.2101 0.3782 1.2101c 0.1933,0.6050 0.3782,1.1933 0.3782 1.1933h 0.0672 c 0.1849,-0.5882 0.3697,-1.1933 0.3697 -1.1933l 0.3697,-1.2101 l 1.5462,-4.6387 h 1.3613 l -2.8908,8.1681 h -1.6134 ZM 554.4690,566.0000 ZM 555.2421,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 555.2421,561.9328 ZM 560.9564,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 562.8051,566.0000 ZM 563.5783,561.9328 c 0.0000,-1.0252 0.3193,-1.8235 0.3193 -1.8235c 0.3193,-0.7983 0.8571,-1.3529 0.8571 -1.3529c 0.5378,-0.5546 1.2521,-0.8403 1.2521 -0.8403c 0.7143,-0.2857 1.5042,-0.2857 1.5042 -0.2857c 0.8067,0.0000 1.3866,0.2941 1.3866 0.2941c 0.5798,0.2941 1.0000,0.6807 1.0000 0.6807l -0.6891,0.8908 c -0.3697,-0.3193 -0.7647,-0.5210 -0.7647 -0.5210c -0.3950,-0.2017 -0.8824,-0.2017 -0.8824 -0.2017c -0.5546,-0.0000 -1.0252,0.2269 -1.0252 0.2269c -0.4706,0.2269 -0.8067,0.6471 -0.8067 0.6471c -0.3361,0.4202 -0.5294,1.0000 -0.5294 1.0000c -0.1933,0.5798 -0.1933,1.2857 -0.1933 1.2857c 0.0000,0.7059 0.1849,1.2773 0.1849 1.2773c 0.1849,0.5714 0.5126,0.9832 0.5126 0.9832c 0.3277,0.4118 0.7983,0.6387 0.7983 0.6387c 0.4706,0.2269 1.0252,0.2269 1.0252 0.2269c 0.5882,0.0000 1.0672,-0.2437 1.0672 -0.2437c 0.4790,-0.2437 0.8487,-0.5798 0.8487 -0.5798l 0.6218,0.9076 c -0.5546,0.4874 -1.2353,0.7731 -1.2353 0.7731c -0.6807,0.2857 -1.4202,0.2857 -1.4202 0.2857c -0.8067,-0.0000 -1.5126,-0.2857 -1.5126 -0.2857c -0.7059,-0.2857 -1.2185,-0.8319 -1.2185 -0.8319c -0.5126,-0.5462 -0.8067,-1.3445 -0.8067 -1.3445c -0.2941,-0.7983 -0.2941,-1.8067 -0.2941 -1.8067ZM 570.4690,566.0000 ZM 572.0825,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 575.9816,566.0000 ZM 576.7547,561.9328 c 0.0000,-1.0252 0.3109,-1.8235 0.3109 -1.8235c 0.3109,-0.7983 0.8319,-1.3529 0.8319 -1.3529c 0.5210,-0.5546 1.2017,-0.8403 1.2017 -0.8403c 0.6807,-0.2857 1.4370,-0.2857 1.4370 -0.2857c 0.7563,0.0000 1.4370,0.2857 1.4370 0.2857c 0.6807,0.2857 1.2017,0.8403 1.2017 0.8403c 0.5210,0.5546 0.8319,1.3529 0.8319 1.3529c 0.3109,0.7983 0.3109,1.8235 0.3109 1.8235c 0.0000,1.0084 -0.3109,1.8067 -0.3109 1.8067c -0.3109,0.7983 -0.8319,1.3445 -0.8319 1.3445c -0.5210,0.5462 -1.2017,0.8319 -1.2017 0.8319c -0.6807,0.2857 -1.4370,0.2857 -1.4370 0.2857c -0.7563,-0.0000 -1.4370,-0.2857 -1.4370 -0.2857c -0.6807,-0.2857 -1.2017,-0.8319 -1.2017 -0.8319c -0.5210,-0.5462 -0.8319,-1.3445 -0.8319 -1.3445c -0.3109,-0.7983 -0.3109,-1.8067 -0.3109 -1.8067ZM 576.7547,561.9328 ZM 578.1833,561.9328 c 0.0000,0.7059 0.1681,1.2773 0.1681 1.2773c 0.1681,0.5714 0.4790,0.9832 0.4790 0.9832c 0.3109,0.4118 0.7479,0.6387 0.7479 0.6387c 0.4370,0.2269 0.9580,0.2269 0.9580 0.2269c 0.5210,0.0000 0.9580,-0.2269 0.9580 -0.2269c 0.4370,-0.2269 0.7479,-0.6387 0.7479 -0.6387c 0.3109,-0.4118 0.4790,-0.9832 0.4790 -0.9832c 0.1681,-0.5714 0.1681,-1.2773 0.1681 -1.2773c 0.0000,-0.7059 -0.1681,-1.2857 -0.1681 -1.2857c -0.1681,-0.5798 -0.4790,-1.0000 -0.4790 -1.0000c -0.3109,-0.4202 -0.7479,-0.6471 -0.7479 -0.6471c -0.4370,-0.2269 -0.9580,-0.2269 -0.9580 -0.2269c -0.5210,-0.0000 -0.9580,0.2269 -0.9580 0.2269c -0.4370,0.2269 -0.7479,0.6471 -0.7479 0.6471c -0.3109,0.4202 -0.4790,1.0000 -0.4790 1.0000c -0.1681,0.5798 -0.1681,1.2857 -0.1681 1.2857ZM 585.0909,566.0000 ZM 586.4690,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 590.9228,566.0000 ZM 594.5194,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 596.0152,566.0000 ZM 597.2757,557.8319 h 1.3950 v 4.9916 c 0.0000,1.1597 0.3613,1.6723 0.3613 1.6723c 0.3613,0.5126 1.1681,0.5126 1.1681 0.5126c 0.6387,0.0000 1.1261,-0.3277 1.1261 -0.3277c 0.4874,-0.3277 1.0756,-1.0504 1.0756 -1.0504v -5.7983 h 1.3782 v 8.1681 h -1.1429 l -0.1176,-1.2773 h -0.0504 c -0.5714,0.6723 -1.2017,1.0756 -1.2017 1.0756c -0.6303,0.4034 -1.4874,0.4034 -1.4874 0.4034c -1.3109,-0.0000 -1.9076,-0.8067 -1.9076 -0.8067c -0.5966,-0.8067 -0.5966,-2.3866 -0.5966 -2.3866v -5.1765 ZM 605.1581,566.0000 ZM 606.3178,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 612.2001,566.0000 ZM 612.8388,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 43.5294,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 43.2500,585.2500 ZM 43.9265,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 43.9265,581.6912 ZM 45.1765,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 51.2206,585.2500 ZM 52.4265,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 54.9706,585.2500 ZM 55.6618,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 55.6618,581.6912 ZM 56.9118,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 81.4853,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.5882,585.2500 ZM 111.7941,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 122.7794,585.2500 ZM 123.6324,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 123.6324,583.3971 ZM 124.8235,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 130.3088,585.2500 ZM 132.7206,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 132.7206,585.8529 ZM 132.7206,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 156.5588,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.6618,585.2500 ZM 186.1176,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 191.9118,585.2500 ZM 193.7353,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 193.7353,576.6324 ZM 193.1176,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 195.5294,585.2500 ZM 197.9412,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 197.9412,585.8529 ZM 197.9412,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/grouped-percent-delta-coeff-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 114.5534,20.1694 ZM 119.7895,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 123.3830,20.1694 ZM 125.5647,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 133.2136,20.1694 ZM 136.7556,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 136.7556,5.5647 ZM 134.8819,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 140.2977,20.1694 ZM 141.9661,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 162.2947,20.1694 ZM 163.2187,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 163.2187,13.8039 ZM 171.4322,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 175.5903,20.1694 ZM 176.8224,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 184.4199,20.1694 ZM 189.6561,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 193.2495,20.1694 ZM 198.9990,11.1345 h 1.9507 c 1.4887,0.0000 2.2716,-0.6289 2.2716 -0.6289c 0.7829,-0.6289 0.7829,-1.8609 0.7829 -1.8609c 0.0000,-1.2320 -0.7829,-1.7197 -0.7829 -1.7197c -0.7829,-0.4877 -2.2716,-0.4877 -2.2716 -0.4877h -1.9507 v 4.6971 ZM 198.9990,11.1345 ZM 204.2864,20.1694 l -3.2084,-6.0318 h -2.0791 v 6.0318 h -3.7731 v -16.7351 h 6.0318 c 1.3347,0.0000 2.5026,0.2567 2.5026 0.2567c 1.1679,0.2567 2.0406,0.8599 2.0406 0.8599c 0.8727,0.6032 1.3860,1.6042 1.3860 1.6042c 0.5133,1.0010 0.5133,2.4897 0.5133 2.4897c 0.0000,1.8480 -0.8085,3.0416 -0.8085 3.0416c -0.8085,1.1935 -2.1689,1.7839 -2.1689 1.7839l 3.7988,6.6992 h -4.2351 ZM 208.8039,20.1694 ZM 209.7279,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 209.7279,13.8039 ZM 217.9415,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 221.8429,20.1694 ZM 225.8214,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 225.8214,21.7608 ZM 222.7156,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 222.7156,22.3511 ZM 228.3368,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 235.5493,20.1694 ZM 237.2177,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 245.5082,20.1694 ZM 246.4322,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 246.4322,13.8039 ZM 254.6458,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 258.8039,20.1694 ZM 261.0370,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 270.1745,20.1694 ZM 272.4076,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 281.5452,20.1694 ZM 285.0873,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 285.0873,5.5647 ZM 283.2136,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 288.6294,20.1694 ZM 289.5534,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 289.5534,13.8039 ZM 293.4292,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 302.8747,20.1694 ZM 304.5431,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 322.8953,20.1694 ZM 324.0760,11.9045 c 0.0000,-2.0791 0.6417,-3.7089 0.6417 -3.7089c 0.6417,-1.6299 1.7325,-2.7592 1.7325 -2.7592c 1.0909,-1.1294 2.5411,-1.7197 2.5411 -1.7197c 1.4502,-0.5903 3.0672,-0.5903 3.0672 -0.5903c 1.5657,0.0000 2.8362,0.6545 2.8362 0.6545c 1.2705,0.6545 2.1176,1.5272 2.1176 1.5272l -2.0791,2.3357 c -0.6417,-0.5903 -1.2962,-0.9240 -1.2962 -0.9240c -0.6545,-0.3337 -1.5272,-0.3337 -1.5272 -0.3337c -0.8727,-0.0000 -1.6299,0.3722 -1.6299 0.3722c -0.7572,0.3722 -1.3219,1.0652 -1.3219 1.0652c -0.5647,0.6930 -0.8855,1.6940 -0.8855 1.6940c -0.3208,1.0010 -0.3208,2.2587 -0.3208 2.2587c 0.0000,2.5924 1.1037,4.0169 1.1037 4.0169c 1.1037,1.4245 2.9517,1.4245 2.9517 1.4245c 1.0267,0.0000 1.7967,-0.4107 1.7967 -0.4107c 0.7700,-0.4107 1.3860,-1.0780 1.3860 -1.0780l 2.0791,2.2844 c -1.0524,1.2320 -2.3999,1.8480 -2.3999 1.8480c -1.3475,0.6160 -2.9132,0.6160 -2.9132 0.6160c -1.6170,-0.0000 -3.0544,-0.5518 -3.0544 -0.5518c -1.4374,-0.5518 -2.5154,-1.6299 -2.5154 -1.6299c -1.0780,-1.0780 -1.6940,-2.6822 -1.6940 -2.6822c -0.6160,-1.6042 -0.6160,-3.7089 -0.6160 -3.7089ZM 337.8337,20.1694 ZM 338.7577,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 338.7577,13.8039 ZM 342.6335,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 352.0791,20.1694 ZM 353.0031,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 353.0031,13.8039 ZM 361.2166,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 365.3747,20.1694 ZM 382.3409,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 382.2125,20.1694 ZM 383.7782,18.1160 c 0.0000,-1.0267 0.6545,-1.7069 0.6545 -1.7069c 0.6545,-0.6802 1.6299,-0.6802 1.6299 -0.6802c 0.9754,0.0000 1.6299,0.6802 1.6299 0.6802c 0.6545,0.6802 0.6545,1.7069 0.6545 1.7069c 0.0000,1.0010 -0.6545,1.6812 -0.6545 1.6812c -0.6545,0.6802 -1.6299,0.6802 -1.6299 0.6802c -0.9754,-0.0000 -1.6299,-0.6802 -1.6299 -0.6802c -0.6545,-0.6802 -0.6545,-1.6812 -0.6545 -1.6812ZM 389.9127,20.1694 ZM 391.1448,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 398.7423,20.1694 ZM 403.9784,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 407.5719,20.1694 ZM 409.5483,3.4343 h 4.7228 c 1.9251,0.0000 3.4651,0.4877 3.4651 0.4877c 1.5400,0.4877 2.6437,1.5015 2.6437 1.5015c 1.1037,1.0139 1.6940,2.5796 1.6940 2.5796c 0.5903,1.5657 0.5903,3.7218 0.5903 3.7218c 0.0000,2.1561 -0.5903,3.7474 -0.5903 3.7474c -0.5903,1.5914 -1.6684,2.6309 -1.6684 2.6309c -1.0780,1.0395 -2.5796,1.5529 -2.5796 1.5529c -1.5015,0.5133 -3.3496,0.5133 -3.3496 0.5133h -4.9281 v -16.7351 ZM 409.5483,3.4343 ZM 414.0400,17.1150 c 1.0780,0.0000 1.9507,-0.2823 1.9507 -0.2823c 0.8727,-0.2823 1.4887,-0.9112 1.4887 -0.9112c 0.6160,-0.6289 0.9625,-1.6555 0.9625 -1.6555c 0.3465,-1.0267 0.3465,-2.5411 0.3465 -2.5411c 0.0000,-1.4887 -0.3465,-2.5026 -0.3465 -2.5026c -0.3465,-1.0139 -0.9625,-1.6170 -0.9625 -1.6170c -0.6160,-0.6032 -1.4887,-0.8599 -1.4887 -0.8599c -0.8727,-0.2567 -1.9507,-0.2567 -1.9507 -0.2567h -0.7187 v 10.6263 h 0.7187 ZM 423.8706,20.1694 ZM 427.4127,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 427.4127,5.5647 ZM 425.5390,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 430.9548,20.1694 ZM 447.9209,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 453.1314,20.1694 ZM 454.6715,7.4384 h 3.7731 v 7.4179 c 0.0000,1.3860 0.3850,1.8994 0.3850 1.8994c 0.3850,0.5133 1.2064,0.5133 1.2064 0.5133c 0.7187,0.0000 1.2064,-0.3337 1.2064 -0.3337c 0.4877,-0.3337 1.0524,-1.0780 1.0524 -1.0780v -8.4189 h 3.7731 v 12.7310 h -3.0801 l -0.2823,-1.7710 h -0.0770 c -0.8214,0.9754 -1.7582,1.5272 -1.7582 1.5272c -0.9369,0.5518 -2.2459,0.5518 -2.2459 0.5518c -2.0791,-0.0000 -3.0159,-1.3604 -3.0159 -1.3604c -0.9369,-1.3604 -0.9369,-3.7731 -0.9369 -3.7731v -7.9055 ZM 467.7105,20.1694 ZM 469.9435,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 479.0811,20.1694 ZM 482.6232,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 482.6232,5.5647 ZM 480.7495,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 486.1653,20.1694 ZM 487.8337,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 500.8470,20.1694 ZM 504.8255,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 504.8255,21.7608 ZM 501.7197,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 501.7197,22.3511 ZM 507.3409,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 519.8922,20.1694 ZM 521.5606,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 541.8891,20.1694 ZM 545.4312,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 545.4312,5.5647 ZM 543.5575,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 548.9733,20.1694 ZM 550.6417,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 568.9938,20.1694 ZM 569.9179,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 569.9179,13.8039 ZM 578.1314,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 582.2895,20.1694 ZM 584.5226,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 593.6602,20.1694 ZM 595.8419,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 603.4908,20.1694 ZM 607.0329,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 607.0329,5.5647 ZM 605.1591,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 610.5749,20.1694 ZM 612.2433,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 632.5719,20.1694 ZM 633.7782,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 633.7782,16.6273 ZM 637.3717,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 646.2782,20.1694 ZM 648.4600,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 655.8522,20.1694 ZM 656.7762,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 656.7762,13.8039 ZM 660.6520,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 670.0975,20.1694 ZM 671.7659,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 680.3131,20.1694 ZM 681.5452,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,457.8333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,375.6667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,293.5000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,211.3333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,129.1667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,47.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 417.8571,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 517.7087,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 617.5602,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 417.8571,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 517.7087,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 617.5602,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,529.7292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,519.4583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,509.1875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,498.9167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,488.6458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,478.3750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,468.1042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,447.5625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,437.2917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,427.0208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,416.7500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,406.4792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,396.2083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,385.9375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,365.3958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,355.1250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,344.8542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,334.5833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,324.3125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,314.0417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,303.7708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,283.2292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,272.9583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,262.6875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,252.4167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,242.1458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,231.8750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,221.6042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,201.0625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,190.7917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,180.5208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,170.2500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,159.9792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,149.7083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,139.4375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,118.8958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,108.6250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,98.3542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,88.0833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,77.8125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,67.5417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,57.2708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.1261,544.8235 ZM 30.7290,540.6765 h 3.3824 v 0.9265 h -3.3824 v -0.9265 ZM 34.6996,544.8235 ZM 35.2878,544.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 42.0084,544.8235 ZM 45.6702,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,545.0000 ZM 45.6702,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,544.8235 ZM 54.9937,541.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,541.0882 ZM 54.9937,540.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,540.3382 ZM 55.2584,545.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,545.0000 ZM 61.7143,545.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,545.0000 ZM 61.7143,544.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 42.0525,462.6569 ZM 45.7143,462.8333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7143,462.8333 ZM 45.7143,461.8627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3319,462.6569 ZM 55.0378,458.9216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0378,458.9216 ZM 55.0378,458.1716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0378,458.1716 ZM 55.3025,462.8333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3025,462.8333 ZM 61.7584,462.8333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7584,462.8333 ZM 61.7584,462.0833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6261,380.4902 ZM 35.2143,379.7696 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 41.9349,380.4902 ZM 45.5966,380.6667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.5966,380.6667 ZM 45.5966,379.6961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2143,380.4902 ZM 54.9202,376.7549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9202,376.7549 ZM 54.9202,376.0049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9202,376.0049 ZM 55.1849,380.6667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.1849,380.6667 ZM 61.6408,380.6667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.6408,380.6667 ZM 61.6408,379.9167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.3466,298.3235 ZM 38.8172,294.7647 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 38.8172,294.7647 ZM 41.2437,295.7353 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 41.6555,298.3235 ZM 45.3172,298.5000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.3172,298.5000 ZM 45.3172,297.5294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.9349,298.3235 ZM 54.6408,294.5882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.6408,294.5882 ZM 54.6408,293.8382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.6408,293.8382 ZM 54.9055,298.5000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 54.9055,298.5000 ZM 61.3613,298.5000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.3613,298.5000 ZM 61.3613,297.7500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.8025,216.1569 ZM 38.7437,215.3775 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 38.7437,215.3775 ZM 40.6702,208.3480 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 42.1113,216.1569 ZM 45.7731,216.3333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7731,216.3333 ZM 45.7731,215.3627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3908,216.1569 ZM 55.0966,212.4216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0966,212.4216 ZM 55.0966,211.6716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0966,211.6716 ZM 55.3613,216.3333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3613,216.3333 ZM 61.8172,216.3333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.8172,216.3333 ZM 61.8172,215.5833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6996,133.9902 ZM 36.3908,131.4755 c 0.0000,0.3971 0.1544,0.7206 0.1544 0.7206c 0.1544,0.3235 0.4265,0.5662 0.4265 0.5662c 0.2721,0.2426 0.6397,0.3750 0.6397 0.3750c 0.3676,0.1324 0.7941,0.1324 0.7941 0.1324c 0.8235,0.0000 1.3309,-0.4559 1.3309 -0.4559c 0.5074,-0.4559 0.5074,-1.1912 0.5074 -1.1912c 0.0000,-0.4559 -0.2059,-0.7794 -0.2059 -0.7794c -0.2059,-0.3235 -0.5588,-0.5662 -0.5588 -0.5662c -0.3529,-0.2426 -0.8162,-0.4412 -0.8162 -0.4412c -0.4632,-0.1985 -0.9632,-0.4044 -0.9632 -0.4044c -0.5588,0.3824 -0.9338,0.8897 -0.9338 0.8897c -0.3750,0.5074 -0.3750,1.1544 -0.3750 1.1544ZM 36.3908,131.4755 ZM 39.0378,128.8725 c 0.4706,-0.4265 0.7279,-0.8971 0.7279 -0.8971c 0.2574,-0.4706 0.2574,-0.9853 0.2574 -0.9853c 0.0000,-0.7059 -0.4265,-1.1838 -0.4265 -1.1838c -0.4265,-0.4779 -1.2059,-0.4779 -1.2059 -0.4779c -0.6618,-0.0000 -1.0882,0.4118 -1.0882 0.4118c -0.4265,0.4118 -0.4265,1.1029 -0.4265 1.1029c 0.0000,0.4265 0.1765,0.7279 0.1765 0.7279c 0.1765,0.3015 0.4779,0.5368 0.4779 0.5368c 0.3015,0.2353 0.6912,0.4191 0.6912 0.4191c 0.3897,0.1838 0.8162,0.3456 0.8162 0.3456ZM 39.0378,128.8725 ZM 35.3025,131.5931 c 0.0000,-0.4559 0.1544,-0.8456 0.1544 -0.8456c 0.1544,-0.3897 0.3971,-0.7059 0.3971 -0.7059c 0.2426,-0.3162 0.5588,-0.5588 0.5588 -0.5588c 0.3162,-0.2426 0.6544,-0.4191 0.6544 -0.4191v -0.0588 c -0.5147,-0.3676 -0.9118,-0.8897 -0.9118 -0.8897c -0.3971,-0.5221 -0.3971,-1.2721 -0.3971 -1.2721c 0.0000,-0.5441 0.2059,-0.9853 0.2059 -0.9853c 0.2059,-0.4412 0.5588,-0.7574 0.5588 -0.7574c 0.3529,-0.3162 0.8382,-0.4926 0.8382 -0.4926c 0.4853,-0.1765 1.0588,-0.1765 1.0588 -0.1765c 0.6176,0.0000 1.1029,0.1838 1.1029 0.1838c 0.4853,0.1838 0.8309,0.5147 0.8309 0.5147c 0.3456,0.3309 0.5294,0.7941 0.5294 0.7941c 0.1838,0.4632 0.1838,1.0074 0.1838 1.0074c 0.0000,0.3676 -0.1250,0.7059 -0.1250 0.7059c -0.1250,0.3382 -0.3088,0.6324 -0.3088 0.6324c -0.1838,0.2941 -0.4118,0.5294 -0.4118 0.5294c -0.2279,0.2353 -0.4485,0.3971 -0.4485 0.3971v 0.0588 c 0.3088,0.1765 0.6029,0.4044 0.6029 0.4044c 0.2941,0.2279 0.5221,0.5147 0.5221 0.5147c 0.2279,0.2868 0.3676,0.6544 0.3676 0.6544c 0.1397,0.3676 0.1397,0.8382 0.1397 0.8382c 0.0000,0.5294 -0.2206,0.9853 -0.2206 0.9853c -0.2206,0.4559 -0.6176,0.7941 -0.6176 0.7941c -0.3971,0.3382 -0.9559,0.5294 -0.9559 0.5294c -0.5588,0.1912 -1.2353,0.1912 -1.2353 0.1912c -0.6618,-0.0000 -1.2279,-0.1912 -1.2279 -0.1912c -0.5662,-0.1912 -0.9706,-0.5368 -0.9706 -0.5368c -0.4044,-0.3456 -0.6397,-0.8162 -0.6397 -0.8162c -0.2353,-0.4706 -0.2353,-1.0294 -0.2353 -1.0294ZM 42.0084,133.9902 ZM 45.6702,134.1667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,134.1667 ZM 45.6702,133.1961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,133.9902 ZM 54.9937,130.2549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,130.2549 ZM 54.9937,129.5049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,129.5049 ZM 55.2584,134.1667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,134.1667 ZM 61.7143,134.1667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,134.1667 ZM 61.7143,133.4167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 27.9496,51.8235 ZM 29.1113,50.8235 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 35.2584,51.8235 ZM 38.9202,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 38.9202,52.0000 ZM 38.9202,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 42.5672,51.8235 ZM 46.2290,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 46.2290,52.0000 ZM 46.2290,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.8466,51.8235 ZM 55.5525,48.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.5525,48.0882 ZM 55.5525,47.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.5525,47.3382 ZM 55.8172,52.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.8172,52.0000 ZM 62.2731,52.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 62.2731,52.0000 ZM 62.2731,51.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.7773,566.0000 ZM 175.9370,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 181.8193,566.0000 ZM 183.4328,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 187.5000,566.0000 ZM 188.8782,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 193.1639,566.0000 ZM 193.9370,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 193.9370,561.9328 ZM 199.6513,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 201.2647,566.0000 ZM 202.2395,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 202.2395,563.8824 ZM 203.6008,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 209.8697,566.0000 ZM 211.2479,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 223.8025,566.0000 ZM 225.1807,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 228.0882,566.0000 ZM 228.9118,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 235.9370,566.0000 ZM 239.5336,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 241.0294,566.0000 ZM 244.1218,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 244.1218,561.7311 ZM 244.1218,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 244.1218,560.8739 ZM 244.4244,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 244.4244,566.2017 ZM 251.8025,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 251.8025,566.2017 ZM 251.8025,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 254.8782,566.0000 ZM 255.5168,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 259.9706,566.0000 ZM 263.5672,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 265.0630,566.0000 ZM 266.4412,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 266.4412,554.0336 ZM 267.8193,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 274.1555,566.0000 ZM 275.1303,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 275.1303,563.8824 ZM 276.4916,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 282.7605,566.0000 ZM 283.9202,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 289.8025,566.0000 ZM 290.5756,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 290.5756,561.9328 ZM 296.2899,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 298.1387,566.0000 ZM 298.7773,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 510.0462,566.0000 ZM 510.2479,557.8319 h 1.4286 l 1.5462,4.6387 c 0.1849,0.6050 0.3782,1.2101 0.3782 1.2101c 0.1933,0.6050 0.3782,1.1933 0.3782 1.1933h 0.0672 c 0.1849,-0.5882 0.3697,-1.1933 0.3697 -1.1933l 0.3697,-1.2101 l 1.5462,-4.6387 h 1.3613 l -2.8908,8.1681 h -1.6134 ZM 517.8277,566.0000 ZM 518.6008,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 518.6008,561.9328 ZM 524.3151,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 526.1639,566.0000 ZM 526.9370,561.9328 c 0.0000,-1.0252 0.3193,-1.8235 0.3193 -1.8235c 0.3193,-0.7983 0.8571,-1.3529 0.8571 -1.3529c 0.5378,-0.5546 1.2521,-0.8403 1.2521 -0.8403c 0.7143,-0.2857 1.5042,-0.2857 1.5042 -0.2857c 0.8067,0.0000 1.3866,0.2941 1.3866 0.2941c 0.5798,0.2941 1.0000,0.6807 1.0000 0.6807l -0.6891,0.8908 c -0.3697,-0.3193 -0.7647,-0.5210 -0.7647 -0.5210c -0.3950,-0.2017 -0.8824,-0.2017 -0.8824 -0.2017c -0.5546,-0.0000 -1.0252,0.2269 -1.0252 0.2269c -0.4706,0.2269 -0.8067,0.6471 -0.8067 0.6471c -0.3361,0.4202 -0.5294,1.0000 -0.5294 1.0000c -0.1933,0.5798 -0.1933,1.2857 -0.1933 1.2857c 0.0000,0.7059 0.1849,1.2773 0.1849 1.2773c 0.1849,0.5714 0.5126,0.9832 0.5126 0.9832c 0.3277,0.4118 0.7983,0.6387 0.7983 0.6387c 0.4706,0.2269 1.0252,0.2269 1.0252 0.2269c 0.5882,0.0000 1.0672,-0.2437 1.0672 -0.2437c 0.4790,-0.2437 0.8487,-0.5798 0.8487 -0.5798l 0.6218,0.9076 c -0.5546,0.4874 -1.2353,0.7731 -1.2353 0.7731c -0.6807,0.2857 -1.4202,0.2857 -1.4202 0.2857c -0.8067,-0.0000 -1.5126,-0.2857 -1.5126 -0.2857c -0.7059,-0.2857 -1.2185,-0.8319 -1.2185 -0.8319c -0.5126,-0.5462 -0.8067,-1.3445 -0.8067 -1.3445c -0.2941,-0.7983 -0.2941,-1.8067 -0.2941 -1.8067ZM 533.8277,566.0000 ZM 535.4412,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 539.3403,566.0000 ZM 540.1134,561.9328 c 0.0000,-1.0252 0.3109,-1.8235 0.3109 -1.8235c 0.3109,-0.7983 0.8319,-1.3529 0.8319 -1.3529c 0.5210,-0.5546 1.2017,-0.8403 1.2017 -0.8403c 0.6807,-0.2857 1.4370,-0.2857 1.4370 -0.2857c 0.7563,0.0000 1.4370,0.2857 1.4370 0.2857c 0.6807,0.2857 1.2017,0.8403 1.2017 0.8403c 0.5210,0.5546 0.8319,1.3529 0.8319 1.3529c 0.3109,0.7983 0.3109,1.8235 0.3109 1.8235c 0.0000,1.0084 -0.3109,1.8067 -0.3109 1.8067c -0.3109,0.7983 -0.8319,1.3445 -0.8319 1.3445c -0.5210,0.5462 -1.2017,0.8319 -1.2017 0.8319c -0.6807,0.2857 -1.4370,0.2857 -1.4370 0.2857c -0.7563,-0.0000 -1.4370,-0.2857 -1.4370 -0.2857c -0.6807,-0.2857 -1.2017,-0.8319 -1.2017 -0.8319c -0.5210,-0.5462 -0.8319,-1.3445 -0.8319 -1.3445c -0.3109,-0.7983 -0.3109,-1.8067 -0.3109 -1.8067ZM 540.1134,561.9328 ZM 541.5420,561.9328 c 0.0000,0.7059 0.1681,1.2773 0.1681 1.2773c 0.1681,0.5714 0.4790,0.9832 0.4790 0.9832c 0.3109,0.4118 0.7479,0.6387 0.7479 0.6387c 0.4370,0.2269 0.9580,0.2269 0.9580 0.2269c 0.5210,0.0000 0.9580,-0.2269 0.9580 -0.2269c 0.4370,-0.2269 0.7479,-0.6387 0.7479 -0.6387c 0.3109,-0.4118 0.4790,-0.9832 0.4790 -0.9832c 0.1681,-0.5714 0.1681,-1.2773 0.1681 -1.2773c 0.0000,-0.7059 -0.1681,-1.2857 -0.1681 -1.2857c -0.1681,-0.5798 -0.4790,-1.0000 -0.4790 -1.0000c -0.3109,-0.4202 -0.7479,-0.6471 -0.7479 -0.6471c -0.4370,-0.2269 -0.9580,-0.2269 -0.9580 -0.2269c -0.5210,-0.0000 -0.9580,0.2269 -0.9580 0.2269c -0.4370,0.2269 -0.7479,0.6471 -0.7479 0.6471c -0.3109,0.4202 -0.4790,1.0000 -0.4790 1.0000c -0.1681,0.5798 -0.1681,1.2857 -0.1681 1.2857ZM 548.4496,566.0000 ZM 549.8277,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 554.2815,566.0000 ZM 557.8782,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 559.3739,566.0000 ZM 562.4664,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 562.4664,561.7311 ZM 562.4664,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 562.4664,560.8739 ZM 562.7689,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 562.7689,566.2017 ZM 570.1471,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 570.1471,566.2017 ZM 570.1471,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 573.2227,566.0000 ZM 573.8613,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 578.3151,566.0000 ZM 581.9118,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 583.4076,566.0000 ZM 584.0966,561.2605 h 3.8655 v 1.0588 h -3.8655 v -1.0588 ZM 588.6345,566.0000 ZM 590.0126,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 590.0126,554.0336 ZM 591.3908,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 597.7269,566.0000 ZM 598.7017,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 598.7017,563.8824 ZM 600.0630,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 606.3319,566.0000 ZM 607.4916,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 613.3739,566.0000 ZM 614.1471,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 614.1471,561.9328 ZM 619.8613,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 621.7101,566.0000 ZM 622.3487,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 43.5294,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 43.2500,585.2500 ZM 43.9265,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 43.9265,581.6912 ZM 45.1765,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 51.2206,585.2500 ZM 52.4265,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 54.9706,585.2500 ZM 55.6618,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 55.6618,581.6912 ZM 56.9118,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 81.4853,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.5882,585.2500 ZM 111.7941,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 122.7794,585.2500 ZM 123.6324,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 123.6324,583.3971 ZM 124.8235,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 130.3088,585.2500 ZM 132.7206,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 132.7206,585.8529 ZM 132.7206,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 156.5588,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.6618,585.2500 ZM 186.1176,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 191.9118,585.2500 ZM 193.7353,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 193.7353,576.6324 ZM 193.1176,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 195.5294,585.2500 ZM 197.9412,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 197.9412,585.8529 ZM 197.9412,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/grouped-percent-delta-median-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.3681,20.1694 ZM 176.6042,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 180.1976,20.1694 ZM 182.3794,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 190.0282,20.1694 ZM 193.5703,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 193.5703,5.5647 ZM 191.6966,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 197.1124,20.1694 ZM 198.7808,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 219.1093,20.1694 ZM 220.0334,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 220.0334,13.8039 ZM 228.2469,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 232.4050,20.1694 ZM 233.6371,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 241.2346,20.1694 ZM 246.4707,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 250.0642,20.1694 ZM 252.0406,3.4343 h 4.0041 l 2.7977,7.5205 l 1.0010,2.9261 h 0.1027 l 1.0010,-2.9261 l 2.7207,-7.5205 h 3.9784 v 16.7351 h -3.5164 v -6.1345 c 0.0000,-0.6160 0.0513,-1.3604 0.0513 -1.3604c 0.0513,-0.7444 0.1283,-1.5015 0.1283 -1.5015c 0.0770,-0.7572 0.1540,-1.4887 0.1540 -1.4887c 0.0770,-0.7315 0.1540,-1.3475 0.1540 -1.3475h -0.1027 l -1.3860,3.8758 l -2.5667,6.4938 h -1.5144 l -2.5667,-6.4938 l -1.3347,-3.8758 h -0.1027 c 0.0770,0.6160 0.1540,1.3475 0.1540 1.3475c 0.0770,0.7315 0.1412,1.4887 0.1412 1.4887c 0.0642,0.7572 0.1155,1.5015 0.1155 1.5015c 0.0513,0.7444 0.0513,1.3604 0.0513 1.3604v 6.1345 h -3.4651 v -16.7351 ZM 269.6227,20.1694 ZM 270.5467,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 270.5467,13.8039 ZM 278.7603,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 282.9184,20.1694 ZM 283.9194,13.8039 c 0.0000,-1.5657 0.4492,-2.7977 0.4492 -2.7977c 0.4492,-1.2320 1.1807,-2.0919 1.1807 -2.0919c 0.7315,-0.8599 1.6940,-1.3219 1.6940 -1.3219c 0.9625,-0.4620 1.9636,-0.4620 1.9636 -0.4620c 1.0780,0.0000 1.7710,0.3593 1.7710 0.3593c 0.6930,0.3593 1.3604,0.9754 1.3604 0.9754l -0.1540,-1.9507 v -4.3378 h 3.7731 v 17.9928 h -3.0801 l -0.2567,-1.2577 h -0.1027 c -0.6674,0.6674 -1.5657,1.1165 -1.5657 1.1165c -0.8984,0.4492 -1.8224,0.4492 -1.8224 0.4492c -1.1807,-0.0000 -2.1432,-0.4620 -2.1432 -0.4620c -0.9625,-0.4620 -1.6427,-1.3219 -1.6427 -1.3219c -0.6802,-0.8599 -1.0524,-2.0919 -1.0524 -2.0919c -0.3722,-1.2320 -0.3722,-2.7977 -0.3722 -2.7977ZM 283.9194,13.8039 ZM 287.7952,13.7526 c 0.0000,1.8994 0.6032,2.7721 0.6032 2.7721c 0.6032,0.8727 1.7069,0.8727 1.7069 0.8727c 0.6160,0.0000 1.1165,-0.2567 1.1165 -0.2567c 0.5005,-0.2567 0.9625,-0.8984 0.9625 -0.8984v -5.2105 c -0.5133,-0.4620 -1.0524,-0.6417 -1.0524 -0.6417c -0.5390,-0.1797 -1.0524,-0.1797 -1.0524 -0.1797c -0.8984,-0.0000 -1.5914,0.8599 -1.5914 0.8599c -0.6930,0.8599 -0.6930,2.6822 -0.6930 2.6822ZM 297.6258,20.1694 ZM 301.1679,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 301.1679,5.5647 ZM 299.2941,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 304.7100,20.1694 ZM 305.9163,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 305.9163,16.6273 ZM 309.5098,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 318.4163,20.1694 ZM 320.0847,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 333.0980,20.1694 ZM 334.3301,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 341.9276,20.1694 ZM 347.1638,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 350.7572,20.1694 ZM 352.7336,3.4343 h 4.7228 c 1.9251,0.0000 3.4651,0.4877 3.4651 0.4877c 1.5400,0.4877 2.6437,1.5015 2.6437 1.5015c 1.1037,1.0139 1.6940,2.5796 1.6940 2.5796c 0.5903,1.5657 0.5903,3.7218 0.5903 3.7218c 0.0000,2.1561 -0.5903,3.7474 -0.5903 3.7474c -0.5903,1.5914 -1.6684,2.6309 -1.6684 2.6309c -1.0780,1.0395 -2.5796,1.5529 -2.5796 1.5529c -1.5015,0.5133 -3.3496,0.5133 -3.3496 0.5133h -4.9281 v -16.7351 ZM 352.7336,3.4343 ZM 357.2254,17.1150 c 1.0780,0.0000 1.9507,-0.2823 1.9507 -0.2823c 0.8727,-0.2823 1.4887,-0.9112 1.4887 -0.9112c 0.6160,-0.6289 0.9625,-1.6555 0.9625 -1.6555c 0.3465,-1.0267 0.3465,-2.5411 0.3465 -2.5411c 0.0000,-1.4887 -0.3465,-2.5026 -0.3465 -2.5026c -0.3465,-1.0139 -0.9625,-1.6170 -0.9625 -1.6170c -0.6160,-0.6032 -1.4887,-0.8599 -1.4887 -0.8599c -0.8727,-0.2567 -1.9507,-0.2567 -1.9507 -0.2567h -0.7187 v 10.6263 h 0.7187 ZM 367.0560,20.1694 ZM 370.5980,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 370.5980,5.5647 ZM 368.7243,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 374.1401,20.1694 ZM 391.1063,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 396.3167,20.1694 ZM 397.8568,7.4384 h 3.7731 v 7.4179 c 0.0000,1.3860 0.3850,1.8994 0.3850 1.8994c 0.3850,0.5133 1.2064,0.5133 1.2064 0.5133c 0.7187,0.0000 1.2064,-0.3337 1.2064 -0.3337c 0.4877,-0.3337 1.0524,-1.0780 1.0524 -1.0780v -8.4189 h 3.7731 v 12.7310 h -3.0801 l -0.2823,-1.7710 h -0.0770 c -0.8214,0.9754 -1.7582,1.5272 -1.7582 1.5272c -0.9369,0.5518 -2.2459,0.5518 -2.2459 0.5518c -2.0791,-0.0000 -3.0159,-1.3604 -3.0159 -1.3604c -0.9369,-1.3604 -0.9369,-3.7731 -0.9369 -3.7731v -7.9055 ZM 410.8958,20.1694 ZM 413.1289,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 422.2664,20.1694 ZM 425.8085,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 425.8085,5.5647 ZM 423.9348,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 429.3506,20.1694 ZM 431.0190,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 444.0323,20.1694 ZM 448.0108,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 448.0108,21.7608 ZM 444.9050,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 444.9050,22.3511 ZM 450.5262,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 463.0775,20.1694 ZM 464.7459,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 485.0744,20.1694 ZM 488.6165,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 488.6165,5.5647 ZM 486.7428,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 492.1586,20.1694 ZM 493.8270,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 512.1792,20.1694 ZM 513.1032,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 513.1032,13.8039 ZM 521.3167,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 525.4748,20.1694 ZM 527.7079,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 536.8455,20.1694 ZM 539.0272,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 546.6761,20.1694 ZM 550.2182,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 550.2182,5.5647 ZM 548.3445,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 553.7603,20.1694 ZM 555.4286,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 575.7572,20.1694 ZM 576.9636,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 576.9636,16.6273 ZM 580.5570,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 589.4636,20.1694 ZM 591.6453,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 599.0375,20.1694 ZM 599.9615,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 599.9615,13.8039 ZM 603.8373,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 613.2829,20.1694 ZM 614.9512,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 623.4985,20.1694 ZM 624.7305,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,457.8333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,375.6667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,293.5000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,211.3333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,129.1667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,47.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 417.8571,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 517.7087,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 617.5602,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 417.8571,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 517.7087,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 617.5602,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,529.7292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,519.4583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,509.1875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,498.9167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,488.6458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,478.3750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,468.1042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,447.5625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,437.2917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,427.0208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,416.7500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,406.4792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,396.2083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,385.9375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,365.3958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,355.1250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,344.8542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,334.5833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,324.3125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,314.0417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,303.7708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,283.2292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,272.9583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,262.6875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,252.4167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,242.1458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,231.8750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,221.6042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,201.0625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,190.7917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,180.5208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,170.2500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,159.9792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,149.7083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,139.4375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,118.8958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,108.6250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,98.3542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,88.0833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,77.8125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,67.5417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,57.2708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.1261,544.8235 ZM 30.7290,540.6765 h 3.3824 v 0.9265 h -3.3824 v -0.9265 ZM 34.6996,544.8235 ZM 35.2878,544.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 42.0084,544.8235 ZM 45.6702,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,545.0000 ZM 45.6702,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,544.8235 ZM 54.9937,541.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,541.0882 ZM 54.9937,540.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,540.3382 ZM 55.2584,545.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,545.0000 ZM 61.7143,545.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,545.0000 ZM 61.7143,544.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 42.0525,462.6569 ZM 45.7143,462.8333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7143,462.8333 ZM 45.7143,461.8627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3319,462.6569 ZM 55.0378,458.9216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0378,458.9216 ZM 55.0378,458.1716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0378,458.1716 ZM 55.3025,462.8333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3025,462.8333 ZM 61.7584,462.8333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7584,462.8333 ZM 61.7584,462.0833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6261,380.4902 ZM 35.2143,379.7696 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 41.9349,380.4902 ZM 45.5966,380.6667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.5966,380.6667 ZM 45.5966,379.6961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2143,380.4902 ZM 54.9202,376.7549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9202,376.7549 ZM 54.9202,376.0049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9202,376.0049 ZM 55.1849,380.6667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.1849,380.6667 ZM 61.6408,380.6667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.6408,380.6667 ZM 61.6408,379.9167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.3466,298.3235 ZM 38.8172,294.7647 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 38.8172,294.7647 ZM 41.2437,295.7353 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 41.6555,298.3235 ZM 45.3172,298.5000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.3172,298.5000 ZM 45.3172,297.5294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.9349,298.3235 ZM 54.6408,294.5882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.6408,294.5882 ZM 54.6408,293.8382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.6408,293.8382 ZM 54.9055,298.5000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 54.9055,298.5000 ZM 61.3613,298.5000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.3613,298.5000 ZM 61.3613,297.7500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.8025,216.1569 ZM 38.7437,215.3775 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 38.7437,215.3775 ZM 40.6702,208.3480 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 42.1113,216.1569 ZM 45.7731,216.3333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7731,216.3333 ZM 45.7731,215.3627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3908,216.1569 ZM 55.0966,212.4216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0966,212.4216 ZM 55.0966,211.6716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0966,211.6716 ZM 55.3613,216.3333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3613,216.3333 ZM 61.8172,216.3333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.8172,216.3333 ZM 61.8172,215.5833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6996,133.9902 ZM 36.3908,131.4755 c 0.0000,0.3971 0.1544,0.7206 0.1544 0.7206c 0.1544,0.3235 0.4265,0.5662 0.4265 0.5662c 0.2721,0.2426 0.6397,0.3750 0.6397 0.3750c 0.3676,0.1324 0.7941,0.1324 0.7941 0.1324c 0.8235,0.0000 1.3309,-0.4559 1.3309 -0.4559c 0.5074,-0.4559 0.5074,-1.1912 0.5074 -1.1912c 0.0000,-0.4559 -0.2059,-0.7794 -0.2059 -0.7794c -0.2059,-0.3235 -0.5588,-0.5662 -0.5588 -0.5662c -0.3529,-0.2426 -0.8162,-0.4412 -0.8162 -0.4412c -0.4632,-0.1985 -0.9632,-0.4044 -0.9632 -0.4044c -0.5588,0.3824 -0.9338,0.8897 -0.9338 0.8897c -0.3750,0.5074 -0.3750,1.1544 -0.3750 1.1544ZM 36.3908,131.4755 ZM 39.0378,128.8725 c 0.4706,-0.4265 0.7279,-0.8971 0.7279 -0.8971c 0.2574,-0.4706 0.2574,-0.9853 0.2574 -0.9853c 0.0000,-0.7059 -0.4265,-1.1838 -0.4265 -1.1838c -0.4265,-0.4779 -1.2059,-0.4779 -1.2059 -0.4779c -0.6618,-0.0000 -1.0882,0.4118 -1.0882 0.4118c -0.4265,0.4118 -0.4265,1.1029 -0.4265 1.1029c 0.0000,0.4265 0.1765,0.7279 0.1765 0.7279c 0.1765,0.3015 0.4779,0.5368 0.4779 0.5368c 0.3015,0.2353 0.6912,0.4191 0.6912 0.4191c 0.3897,0.1838 0.8162,0.3456 0.8162 0.3456ZM 39.0378,128.8725 ZM 35.3025,131.5931 c 0.0000,-0.4559 0.1544,-0.8456 0.1544 -0.8456c 0.1544,-0.3897 0.3971,-0.7059 0.3971 -0.7059c 0.2426,-0.3162 0.5588,-0.5588 0.5588 -0.5588c 0.3162,-0.2426 0.6544,-0.4191 0.6544 -0.4191v -0.0588 c -0.5147,-0.3676 -0.9118,-0.8897 -0.9118 -0.8897c -0.3971,-0.5221 -0.3971,-1.2721 -0.3971 -1.2721c 0.0000,-0.5441 0.2059,-0.9853 0.2059 -0.9853c 0.2059,-0.4412 0.5588,-0.7574 0.5588 -0.7574c 0.3529,-0.3162 0.8382,-0.4926 0.8382 -0.4926c 0.4853,-0.1765 1.0588,-0.1765 1.0588 -0.1765c 0.6176,0.0000 1.1029,0.1838 1.1029 0.1838c 0.4853,0.1838 0.8309,0.5147 0.8309 0.5147c 0.3456,0.3309 0.5294,0.7941 0.5294 0.7941c 0.1838,0.4632 0.1838,1.0074 0.1838 1.0074c 0.0000,0.3676 -0.1250,0.7059 -0.1250 0.7059c -0.1250,0.3382 -0.3088,0.6324 -0.3088 0.6324c -0.1838,0.2941 -0.4118,0.5294 -0.4118 0.5294c -0.2279,0.2353 -0.4485,0.3971 -0.4485 0.3971v 0.0588 c 0.3088,0.1765 0.6029,0.4044 0.6029 0.4044c 0.2941,0.2279 0.5221,0.5147 0.5221 0.5147c 0.2279,0.2868 0.3676,0.6544 0.3676 0.6544c 0.1397,0.3676 0.1397,0.8382 0.1397 0.8382c 0.0000,0.5294 -0.2206,0.9853 -0.2206 0.9853c -0.2206,0.4559 -0.6176,0.7941 -0.6176 0.7941c -0.3971,0.3382 -0.9559,0.5294 -0.9559 0.5294c -0.5588,0.1912 -1.2353,0.1912 -1.2353 0.1912c -0.6618,-0.0000 -1.2279,-0.1912 -1.2279 -0.1912c -0.5662,-0.1912 -0.9706,-0.5368 -0.9706 -0.5368c -0.4044,-0.3456 -0.6397,-0.8162 -0.6397 -0.8162c -0.2353,-0.4706 -0.2353,-1.0294 -0.2353 -1.0294ZM 42.0084,133.9902 ZM 45.6702,134.1667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,134.1667 ZM 45.6702,133.1961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,133.9902 ZM 54.9937,130.2549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,130.2549 ZM 54.9937,129.5049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,129.5049 ZM 55.2584,134.1667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,134.1667 ZM 61.7143,134.1667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,134.1667 ZM 61.7143,133.4167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 27.9496,51.8235 ZM 29.1113,50.8235 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 35.2584,51.8235 ZM 38.9202,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 38.9202,52.0000 ZM 38.9202,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 42.5672,51.8235 ZM 46.2290,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 46.2290,52.0000 ZM 46.2290,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.8466,51.8235 ZM 55.5525,48.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.5525,48.0882 ZM 55.5525,47.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.5525,47.3382 ZM 55.8172,52.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.8172,52.0000 ZM 62.2731,52.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 62.2731,52.0000 ZM 62.2731,51.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.7773,566.0000 ZM 175.9370,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 181.8193,566.0000 ZM 183.4328,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 187.5000,566.0000 ZM 188.8782,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 193.1639,566.0000 ZM 193.9370,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 193.9370,561.9328 ZM 199.6513,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 201.2647,566.0000 ZM 202.2395,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 202.2395,563.8824 ZM 203.6008,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 209.8697,566.0000 ZM 211.2479,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 223.8025,566.0000 ZM 225.1807,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 228.0882,566.0000 ZM 228.9118,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 235.9370,566.0000 ZM 239.5336,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 241.0294,566.0000 ZM 244.1218,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 244.1218,561.7311 ZM 244.1218,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 244.1218,560.8739 ZM 244.4244,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 244.4244,566.2017 ZM 251.8025,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 251.8025,566.2017 ZM 251.8025,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 254.8782,566.0000 ZM 255.5168,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 259.9706,566.0000 ZM 263.5672,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 265.0630,566.0000 ZM 266.4412,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 266.4412,554.0336 ZM 267.8193,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 274.1555,566.0000 ZM 275.1303,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 275.1303,563.8824 ZM 276.4916,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 282.7605,566.0000 ZM 283.9202,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 289.8025,566.0000 ZM 290.5756,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 290.5756,561.9328 ZM 296.2899,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 298.1387,566.0000 ZM 298.7773,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 510.0462,566.0000 ZM 510.2479,557.8319 h 1.4286 l 1.5462,4.6387 c 0.1849,0.6050 0.3782,1.2101 0.3782 1.2101c 0.1933,0.6050 0.3782,1.1933 0.3782 1.1933h 0.0672 c 0.1849,-0.5882 0.3697,-1.1933 0.3697 -1.1933l 0.3697,-1.2101 l 1.5462,-4.6387 h 1.3613 l -2.8908,8.1681 h -1.6134 ZM 517.8277,566.0000 ZM 518.6008,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 518.6008,561.9328 ZM 524.3151,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 526.1639,566.0000 ZM 526.9370,561.9328 c 0.0000,-1.0252 0.3193,-1.8235 0.3193 -1.8235c 0.3193,-0.7983 0.8571,-1.3529 0.8571 -1.3529c 0.5378,-0.5546 1.2521,-0.8403 1.2521 -0.8403c 0.7143,-0.2857 1.5042,-0.2857 1.5042 -0.2857c 0.8067,0.0000 1.3866,0.2941 1.3866 0.2941c 0.5798,0.2941 1.0000,0.6807 1.0000 0.6807l -0.6891,0.8908 c -0.3697,-0.3193 -0.7647,-0.5210 -0.7647 -0.5210c -0.3950,-0.2017 -0.8824,-0.2017 -0.8824 -0.2017c -0.5546,-0.0000 -1.0252,0.2269 -1.0252 0.2269c -0.4706,0.2269 -0.8067,0.6471 -0.8067 0.6471c -0.3361,0.4202 -0.5294,1.0000 -0.5294 1.0000c -0.1933,0.5798 -0.1933,1.2857 -0.1933 1.2857c 0.0000,0.7059 0.1849,1.2773 0.1849 1.2773c 0.1849,0.5714 0.5126,0.9832 0.5126 0.9832c 0.3277,0.4118 0.7983,0.6387 0.7983 0.6387c 0.4706,0.2269 1.0252,0.2269 1.0252 0.2269c 0.5882,0.0000 1.0672,-0.2437 1.0672 -0.2437c 0.4790,-0.2437 0.8487,-0.5798 0.8487 -0.5798l 0.6218,0.9076 c -0.5546,0.4874 -1.2353,0.7731 -1.2353 0.7731c -0.6807,0.2857 -1.4202,0.2857 -1.4202 0.2857c -0.8067,-0.0000 -1.5126,-0.2857 -1.5126 -0.2857c -0.7059,-0.2857 -1.2185,-0.8319 -1.2185 -0.8319c -0.5126,-0.5462 -0.8067,-1.3445 -0.8067 -1.3445c -0.2941,-0.7983 -0.2941,-1.8067 -0.2941 -1.8067ZM 533.8277,566.0000 ZM 535.4412,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 539.3403,566.0000 ZM 540.1134,561.9328 c 0.0000,-1.0252 0.3109,-1.8235 0.3109 -1.8235c 0.3109,-0.7983 0.8319,-1.3529 0.8319 -1.3529c 0.5210,-0.5546 1.2017,-0.8403 1.2017 -0.8403c 0.6807,-0.2857 1.4370,-0.2857 1.4370 -0.2857c 0.7563,0.0000 1.4370,0.2857 1.4370 0.2857c 0.6807,0.2857 1.2017,0.8403 1.2017 0.8403c 0.5210,0.5546 0.8319,1.3529 0.8319 1.3529c 0.3109,0.7983 0.3109,1.8235 0.3109 1.8235c 0.0000,1.0084 -0.3109,1.8067 -0.3109 1.8067c -0.3109,0.7983 -0.8319,1.3445 -0.8319 1.3445c -0.5210,0.5462 -1.2017,0.8319 -1.2017 0.8319c -0.6807,0.2857 -1.4370,0.2857 -1.4370 0.2857c -0.7563,-0.0000 -1.4370,-0.2857 -1.4370 -0.2857c -0.6807,-0.2857 -1.2017,-0.8319 -1.2017 -0.8319c -0.5210,-0.5462 -0.8319,-1.3445 -0.8319 -1.3445c -0.3109,-0.7983 -0.3109,-1.8067 -0.3109 -1.8067ZM 540.1134,561.9328 ZM 541.5420,561.9328 c 0.0000,0.7059 0.1681,1.2773 0.1681 1.2773c 0.1681,0.5714 0.4790,0.9832 0.4790 0.9832c 0.3109,0.4118 0.7479,0.6387 0.7479 0.6387c 0.4370,0.2269 0.9580,0.2269 0.9580 0.2269c 0.5210,0.0000 0.9580,-0.2269 0.9580 -0.2269c 0.4370,-0.2269 0.7479,-0.6387 0.7479 -0.6387c 0.3109,-0.4118 0.4790,-0.9832 0.4790 -0.9832c 0.1681,-0.5714 0.1681,-1.2773 0.1681 -1.2773c 0.0000,-0.7059 -0.1681,-1.2857 -0.1681 -1.2857c -0.1681,-0.5798 -0.4790,-1.0000 -0.4790 -1.0000c -0.3109,-0.4202 -0.7479,-0.6471 -0.7479 -0.6471c -0.4370,-0.2269 -0.9580,-0.2269 -0.9580 -0.2269c -0.5210,-0.0000 -0.9580,0.2269 -0.9580 0.2269c -0.4370,0.2269 -0.7479,0.6471 -0.7479 0.6471c -0.3109,0.4202 -0.4790,1.0000 -0.4790 1.0000c -0.1681,0.5798 -0.1681,1.2857 -0.1681 1.2857ZM 548.4496,566.0000 ZM 549.8277,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 554.2815,566.0000 ZM 557.8782,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 559.3739,566.0000 ZM 562.4664,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 562.4664,561.7311 ZM 562.4664,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 562.4664,560.8739 ZM 562.7689,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 562.7689,566.2017 ZM 570.1471,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 570.1471,566.2017 ZM 570.1471,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 573.2227,566.0000 ZM 573.8613,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 578.3151,566.0000 ZM 581.9118,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 583.4076,566.0000 ZM 584.0966,561.2605 h 3.8655 v 1.0588 h -3.8655 v -1.0588 ZM 588.6345,566.0000 ZM 590.0126,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 590.0126,554.0336 ZM 591.3908,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 597.7269,566.0000 ZM 598.7017,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 598.7017,563.8824 ZM 600.0630,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 606.3319,566.0000 ZM 607.4916,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 613.3739,566.0000 ZM 614.1471,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 614.1471,561.9328 ZM 619.8613,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 621.7101,566.0000 ZM 622.3487,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 43.5294,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 43.2500,585.2500 ZM 43.9265,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 43.9265,581.6912 ZM 45.1765,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 51.2206,585.2500 ZM 52.4265,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 54.9706,585.2500 ZM 55.6618,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 55.6618,581.6912 ZM 56.9118,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 81.4853,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.5882,585.2500 ZM 111.7941,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 122.7794,585.2500 ZM 123.6324,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 123.6324,583.3971 ZM 124.8235,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 130.3088,585.2500 ZM 132.7206,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 132.7206,585.8529 ZM 132.7206,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 156.5588,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.6618,585.2500 ZM 186.1176,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 191.9118,585.2500 ZM 193.7353,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 193.7353,576.6324 ZM 193.1176,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 195.5294,585.2500 ZM 197.9412,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 197.9412,585.8529 ZM 197.9412,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/grouped-percent-delta-sorted-median-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.3681,20.1694 ZM 176.6042,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 180.1976,20.1694 ZM 182.3794,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 190.0282,20.1694 ZM 193.5703,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 193.5703,5.5647 ZM 191.6966,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 197.1124,20.1694 ZM 198.7808,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 219.1093,20.1694 ZM 220.0334,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 220.0334,13.8039 ZM 228.2469,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 232.4050,20.1694 ZM 233.6371,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 241.2346,20.1694 ZM 246.4707,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 250.0642,20.1694 ZM 252.0406,3.4343 h 4.0041 l 2.7977,7.5205 l 1.0010,2.9261 h 0.1027 l 1.0010,-2.9261 l 2.7207,-7.5205 h 3.9784 v 16.7351 h -3.5164 v -6.1345 c 0.0000,-0.6160 0.0513,-1.3604 0.0513 -1.3604c 0.0513,-0.7444 0.1283,-1.5015 0.1283 -1.5015c 0.0770,-0.7572 0.1540,-1.4887 0.1540 -1.4887c 0.0770,-0.7315 0.1540,-1.3475 0.1540 -1.3475h -0.1027 l -1.3860,3.8758 l -2.5667,6.4938 h -1.5144 l -2.5667,-6.4938 l -1.3347,-3.8758 h -0.1027 c 0.0770,0.6160 0.1540,1.3475 0.1540 1.3475c 0.0770,0.7315 0.1412,1.4887 0.1412 1.4887c 0.0642,0.7572 0.1155,1.5015 0.1155 1.5015c 0.0513,0.7444 0.0513,1.3604 0.0513 1.3604v 6.1345 h -3.4651 v -16.7351 ZM 269.6227,20.1694 ZM 270.5467,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 270.5467,13.8039 ZM 278.7603,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 282.9184,20.1694 ZM 283.9194,13.8039 c 0.0000,-1.5657 0.4492,-2.7977 0.4492 -2.7977c 0.4492,-1.2320 1.1807,-2.0919 1.1807 -2.0919c 0.7315,-0.8599 1.6940,-1.3219 1.6940 -1.3219c 0.9625,-0.4620 1.9636,-0.4620 1.9636 -0.4620c 1.0780,0.0000 1.7710,0.3593 1.7710 0.3593c 0.6930,0.3593 1.3604,0.9754 1.3604 0.9754l -0.1540,-1.9507 v -4.3378 h 3.7731 v 17.9928 h -3.0801 l -0.2567,-1.2577 h -0.1027 c -0.6674,0.6674 -1.5657,1.1165 -1.5657 1.1165c -0.8984,0.4492 -1.8224,0.4492 -1.8224 0.4492c -1.1807,-0.0000 -2.1432,-0.4620 -2.1432 -0.4620c -0.9625,-0.4620 -1.6427,-1.3219 -1.6427 -1.3219c -0.6802,-0.8599 -1.0524,-2.0919 -1.0524 -2.0919c -0.3722,-1.2320 -0.3722,-2.7977 -0.3722 -2.7977ZM 283.9194,13.8039 ZM 287.7952,13.7526 c 0.0000,1.8994 0.6032,2.7721 0.6032 2.7721c 0.6032,0.8727 1.7069,0.8727 1.7069 0.8727c 0.6160,0.0000 1.1165,-0.2567 1.1165 -0.2567c 0.5005,-0.2567 0.9625,-0.8984 0.9625 -0.8984v -5.2105 c -0.5133,-0.4620 -1.0524,-0.6417 -1.0524 -0.6417c -0.5390,-0.1797 -1.0524,-0.1797 -1.0524 -0.1797c -0.8984,-0.0000 -1.5914,0.8599 -1.5914 0.8599c -0.6930,0.8599 -0.6930,2.6822 -0.6930 2.6822ZM 297.6258,20.1694 ZM 301.1679,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 301.1679,5.5647 ZM 299.2941,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 304.7100,20.1694 ZM 305.9163,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 305.9163,16.6273 ZM 309.5098,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 318.4163,20.1694 ZM 320.0847,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 333.0980,20.1694 ZM 334.3301,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 341.9276,20.1694 ZM 347.1638,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 350.7572,20.1694 ZM 352.7336,3.4343 h 4.7228 c 1.9251,0.0000 3.4651,0.4877 3.4651 0.4877c 1.5400,0.4877 2.6437,1.5015 2.6437 1.5015c 1.1037,1.0139 1.6940,2.5796 1.6940 2.5796c 0.5903,1.5657 0.5903,3.7218 0.5903 3.7218c 0.0000,2.1561 -0.5903,3.7474 -0.5903 3.7474c -0.5903,1.5914 -1.6684,2.6309 -1.6684 2.6309c -1.0780,1.0395 -2.5796,1.5529 -2.5796 1.5529c -1.5015,0.5133 -3.3496,0.5133 -3.3496 0.5133h -4.9281 v -16.7351 ZM 352.7336,3.4343 ZM 357.2254,17.1150 c 1.0780,0.0000 1.9507,-0.2823 1.9507 -0.2823c 0.8727,-0.2823 1.4887,-0.9112 1.4887 -0.9112c 0.6160,-0.6289 0.9625,-1.6555 0.9625 -1.6555c 0.3465,-1.0267 0.3465,-2.5411 0.3465 -2.5411c 0.0000,-1.4887 -0.3465,-2.5026 -0.3465 -2.5026c -0.3465,-1.0139 -0.9625,-1.6170 -0.9625 -1.6170c -0.6160,-0.6032 -1.4887,-0.8599 -1.4887 -0.8599c -0.8727,-0.2567 -1.9507,-0.2567 -1.9507 -0.2567h -0.7187 v 10.6263 h 0.7187 ZM 367.0560,20.1694 ZM 370.5980,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 370.5980,5.5647 ZM 368.7243,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 374.1401,20.1694 ZM 391.1063,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 396.3167,20.1694 ZM 397.8568,7.4384 h 3.7731 v 7.4179 c 0.0000,1.3860 0.3850,1.8994 0.3850 1.8994c 0.3850,0.5133 1.2064,0.5133 1.2064 0.5133c 0.7187,0.0000 1.2064,-0.3337 1.2064 -0.3337c 0.4877,-0.3337 1.0524,-1.0780 1.0524 -1.0780v -8.4189 h 3.7731 v 12.7310 h -3.0801 l -0.2823,-1.7710 h -0.0770 c -0.8214,0.9754 -1.7582,1.5272 -1.7582 1.5272c -0.9369,0.5518 -2.2459,0.5518 -2.2459 0.5518c -2.0791,-0.0000 -3.0159,-1.3604 -3.0159 -1.3604c -0.9369,-1.3604 -0.9369,-3.7731 -0.9369 -3.7731v -7.9055 ZM 410.8958,20.1694 ZM 413.1289,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 422.2664,20.1694 ZM 425.8085,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 425.8085,5.5647 ZM 423.9348,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 429.3506,20.1694 ZM 431.0190,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 444.0323,20.1694 ZM 448.0108,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 448.0108,21.7608 ZM 444.9050,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 444.9050,22.3511 ZM 450.5262,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 463.0775,20.1694 ZM 464.7459,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 485.0744,20.1694 ZM 488.6165,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 488.6165,5.5647 ZM 486.7428,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 492.1586,20.1694 ZM 493.8270,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 512.1792,20.1694 ZM 513.1032,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 513.1032,13.8039 ZM 521.3167,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 525.4748,20.1694 ZM 527.7079,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 536.8455,20.1694 ZM 539.0272,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 546.6761,20.1694 ZM 550.2182,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 550.2182,5.5647 ZM 548.3445,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 553.7603,20.1694 ZM 555.4286,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 575.7572,20.1694 ZM 576.9636,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 576.9636,16.6273 ZM 580.5570,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 589.4636,20.1694 ZM 591.6453,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 599.0375,20.1694 ZM 599.9615,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 599.9615,13.8039 ZM 603.8373,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 613.2829,20.1694 ZM 614.9512,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 623.4985,20.1694 ZM 624.7305,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,457.8333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,375.6667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,293.5000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,211.3333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,129.1667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,47.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 417.8571,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 517.7087,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 617.5602,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 417.8571,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 517.7087,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 617.5602,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,529.7292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,519.4583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,509.1875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,498.9167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,488.6458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,478.3750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,468.1042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,447.5625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,437.2917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,427.0208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,416.7500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,406.4792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,396.2083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,385.9375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,365.3958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,355.1250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,344.8542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,334.5833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,324.3125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,314.0417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,303.7708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,283.2292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,272.9583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,262.6875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,252.4167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,242.1458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,231.8750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,221.6042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,201.0625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,190.7917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,180.5208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,170.2500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,159.9792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,149.7083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,139.4375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,118.8958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,108.6250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,98.3542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,88.0833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,77.8125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,67.5417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,57.2708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.1261,544.8235 ZM 30.7290,540.6765 h 3.3824 v 0.9265 h -3.3824 v -0.9265 ZM 34.6996,544.8235 ZM 35.2878,544.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 42.0084,544.8235 ZM 45.6702,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,545.0000 ZM 45.6702,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,544.8235 ZM 54.9937,541.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,541.0882 ZM 54.9937,540.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,540.3382 ZM 55.2584,545.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,545.0000 ZM 61.7143,545.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,545.0000 ZM 61.7143,544.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 42.0525,462.6569 ZM 45.7143,462.8333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7143,462.8333 ZM 45.7143,461.8627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3319,462.6569 ZM 55.0378,458.9216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0378,458.9216 ZM 55.0378,458.1716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0378,458.1716 ZM 55.3025,462.8333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3025,462.8333 ZM 61.7584,462.8333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7584,462.8333 ZM 61.7584,462.0833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6261,380.4902 ZM 35.2143,379.7696 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 41.9349,380.4902 ZM 45.5966,380.6667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.5966,380.6667 ZM 45.5966,379.6961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2143,380.4902 ZM 54.9202,376.7549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9202,376.7549 ZM 54.9202,376.0049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9202,376.0049 ZM 55.1849,380.6667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.1849,380.6667 ZM 61.6408,380.6667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.6408,380.6667 ZM 61.6408,379.9167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.3466,298.3235 ZM 38.8172,294.7647 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 38.8172,294.7647 ZM 41.2437,295.7353 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 41.6555,298.3235 ZM 45.3172,298.5000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.3172,298.5000 ZM 45.3172,297.5294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.9349,298.3235 ZM 54.6408,294.5882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.6408,294.5882 ZM 54.6408,293.8382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.6408,293.8382 ZM 54.9055,298.5000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 54.9055,298.5000 ZM 61.3613,298.5000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.3613,298.5000 ZM 61.3613,297.7500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.8025,216.1569 ZM 38.7437,215.3775 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 38.7437,215.3775 ZM 40.6702,208.3480 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 42.1113,216.1569 ZM 45.7731,216.3333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7731,216.3333 ZM 45.7731,215.3627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3908,216.1569 ZM 55.0966,212.4216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0966,212.4216 ZM 55.0966,211.6716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0966,211.6716 ZM 55.3613,216.3333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3613,216.3333 ZM 61.8172,216.3333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.8172,216.3333 ZM 61.8172,215.5833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6996,133.9902 ZM 36.3908,131.4755 c 0.0000,0.3971 0.1544,0.7206 0.1544 0.7206c 0.1544,0.3235 0.4265,0.5662 0.4265 0.5662c 0.2721,0.2426 0.6397,0.3750 0.6397 0.3750c 0.3676,0.1324 0.7941,0.1324 0.7941 0.1324c 0.8235,0.0000 1.3309,-0.4559 1.3309 -0.4559c 0.5074,-0.4559 0.5074,-1.1912 0.5074 -1.1912c 0.0000,-0.4559 -0.2059,-0.7794 -0.2059 -0.7794c -0.2059,-0.3235 -0.5588,-0.5662 -0.5588 -0.5662c -0.3529,-0.2426 -0.8162,-0.4412 -0.8162 -0.4412c -0.4632,-0.1985 -0.9632,-0.4044 -0.9632 -0.4044c -0.5588,0.3824 -0.9338,0.8897 -0.9338 0.8897c -0.3750,0.5074 -0.3750,1.1544 -0.3750 1.1544ZM 36.3908,131.4755 ZM 39.0378,128.8725 c 0.4706,-0.4265 0.7279,-0.8971 0.7279 -0.8971c 0.2574,-0.4706 0.2574,-0.9853 0.2574 -0.9853c 0.0000,-0.7059 -0.4265,-1.1838 -0.4265 -1.1838c -0.4265,-0.4779 -1.2059,-0.4779 -1.2059 -0.4779c -0.6618,-0.0000 -1.0882,0.4118 -1.0882 0.4118c -0.4265,0.4118 -0.4265,1.1029 -0.4265 1.1029c 0.0000,0.4265 0.1765,0.7279 0.1765 0.7279c 0.1765,0.3015 0.4779,0.5368 0.4779 0.5368c 0.3015,0.2353 0.6912,0.4191 0.6912 0.4191c 0.3897,0.1838 0.8162,0.3456 0.8162 0.3456ZM 39.0378,128.8725 ZM 35.3025,131.5931 c 0.0000,-0.4559 0.1544,-0.8456 0.1544 -0.8456c 0.1544,-0.3897 0.3971,-0.7059 0.3971 -0.7059c 0.2426,-0.3162 0.5588,-0.5588 0.5588 -0.5588c 0.3162,-0.2426 0.6544,-0.4191 0.6544 -0.4191v -0.0588 c -0.5147,-0.3676 -0.9118,-0.8897 -0.9118 -0.8897c -0.3971,-0.5221 -0.3971,-1.2721 -0.3971 -1.2721c 0.0000,-0.5441 0.2059,-0.9853 0.2059 -0.9853c 0.2059,-0.4412 0.5588,-0.7574 0.5588 -0.7574c 0.3529,-0.3162 0.8382,-0.4926 0.8382 -0.4926c 0.4853,-0.1765 1.0588,-0.1765 1.0588 -0.1765c 0.6176,0.0000 1.1029,0.1838 1.1029 0.1838c 0.4853,0.1838 0.8309,0.5147 0.8309 0.5147c 0.3456,0.3309 0.5294,0.7941 0.5294 0.7941c 0.1838,0.4632 0.1838,1.0074 0.1838 1.0074c 0.0000,0.3676 -0.1250,0.7059 -0.1250 0.7059c -0.1250,0.3382 -0.3088,0.6324 -0.3088 0.6324c -0.1838,0.2941 -0.4118,0.5294 -0.4118 0.5294c -0.2279,0.2353 -0.4485,0.3971 -0.4485 0.3971v 0.0588 c 0.3088,0.1765 0.6029,0.4044 0.6029 0.4044c 0.2941,0.2279 0.5221,0.5147 0.5221 0.5147c 0.2279,0.2868 0.3676,0.6544 0.3676 0.6544c 0.1397,0.3676 0.1397,0.8382 0.1397 0.8382c 0.0000,0.5294 -0.2206,0.9853 -0.2206 0.9853c -0.2206,0.4559 -0.6176,0.7941 -0.6176 0.7941c -0.3971,0.3382 -0.9559,0.5294 -0.9559 0.5294c -0.5588,0.1912 -1.2353,0.1912 -1.2353 0.1912c -0.6618,-0.0000 -1.2279,-0.1912 -1.2279 -0.1912c -0.5662,-0.1912 -0.9706,-0.5368 -0.9706 -0.5368c -0.4044,-0.3456 -0.6397,-0.8162 -0.6397 -0.8162c -0.2353,-0.4706 -0.2353,-1.0294 -0.2353 -1.0294ZM 42.0084,133.9902 ZM 45.6702,134.1667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,134.1667 ZM 45.6702,133.1961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,133.9902 ZM 54.9937,130.2549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,130.2549 ZM 54.9937,129.5049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,129.5049 ZM 55.2584,134.1667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,134.1667 ZM 61.7143,134.1667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,134.1667 ZM 61.7143,133.4167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 27.9496,51.8235 ZM 29.1113,50.8235 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 35.2584,51.8235 ZM 38.9202,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 38.9202,52.0000 ZM 38.9202,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 42.5672,51.8235 ZM 46.2290,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 46.2290,52.0000 ZM 46.2290,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.8466,51.8235 ZM 55.5525,48.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.5525,48.0882 ZM 55.5525,47.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.5525,47.3382 ZM 55.8172,52.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.8172,52.0000 ZM 62.2731,52.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 62.2731,52.0000 ZM 62.2731,51.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.7773,566.0000 ZM 175.9370,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 181.8193,566.0000 ZM 183.4328,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 187.5000,566.0000 ZM 188.8782,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 193.1639,566.0000 ZM 193.9370,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 193.9370,561.9328 ZM 199.6513,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 201.2647,566.0000 ZM 202.2395,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 202.2395,563.8824 ZM 203.6008,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 209.8697,566.0000 ZM 211.2479,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 223.8025,566.0000 ZM 225.1807,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 228.0882,566.0000 ZM 228.9118,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 235.9370,566.0000 ZM 239.5336,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 241.0294,566.0000 ZM 244.1218,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 244.1218,561.7311 ZM 244.1218,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 244.1218,560.8739 ZM 244.4244,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 244.4244,566.2017 ZM 251.8025,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 251.8025,566.2017 ZM 251.8025,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 254.8782,566.0000 ZM 255.5168,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 259.9706,566.0000 ZM 263.5672,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 265.0630,566.0000 ZM 266.4412,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 266.4412,554.0336 ZM 267.8193,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 274.1555,566.0000 ZM 275.1303,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 275.1303,563.8824 ZM 276.4916,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 282.7605,566.0000 ZM 283.9202,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 289.8025,566.0000 ZM 290.5756,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 290.5756,561.9328 ZM 296.2899,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 298.1387,566.0000 ZM 298.7773,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 510.0462,566.0000 ZM 510.2479,557.8319 h 1.4286 l 1.5462,4.6387 c 0.1849,0.6050 0.3782,1.2101 0.3782 1.2101c 0.1933,0.6050 0.3782,1.1933 0.3782 1.1933h 0.0672 c 0.1849,-0.5882 0.3697,-1.1933 0.3697 -1.1933l 0.3697,-1.2101 l 1.5462,-4.6387 h 1.3613 l -2.8908,8.1681 h -1.6134 ZM 517.8277,566.0000 ZM 518.6008,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 518.6008,561.9328 ZM 524.3151,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 526.1639,566.0000 ZM 526.9370,561.9328 c 0.0000,-1.0252 0.3193,-1.8235 0.3193 -1.8235c 0.3193,-0.7983 0.8571,-1.3529 0.8571 -1.3529c 0.5378,-0.5546 1.2521,-0.8403 1.2521 -0.8403c 0.7143,-0.2857 1.5042,-0.2857 1.5042 -0.2857c 0.8067,0.0000 1.3866,0.2941 1.3866 0.2941c 0.5798,0.2941 1.0000,0.6807 1.0000 0.6807l -0.6891,0.8908 c -0.3697,-0.3193 -0.7647,-0.5210 -0.7647 -0.5210c -0.3950,-0.2017 -0.8824,-0.2017 -0.8824 -0.2017c -0.5546,-0.0000 -1.0252,0.2269 -1.0252 0.2269c -0.4706,0.2269 -0.8067,0.6471 -0.8067 0.6471c -0.3361,0.4202 -0.5294,1.0000 -0.5294 1.0000c -0.1933,0.5798 -0.1933,1.2857 -0.1933 1.2857c 0.0000,0.7059 0.1849,1.2773 0.1849 1.2773c 0.1849,0.5714 0.5126,0.9832 0.5126 0.9832c 0.3277,0.4118 0.7983,0.6387 0.7983 0.6387c 0.4706,0.2269 1.0252,0.2269 1.0252 0.2269c 0.5882,0.0000 1.0672,-0.2437 1.0672 -0.2437c 0.4790,-0.2437 0.8487,-0.5798 0.8487 -0.5798l 0.6218,0.9076 c -0.5546,0.4874 -1.2353,0.7731 -1.2353 0.7731c -0.6807,0.2857 -1.4202,0.2857 -1.4202 0.2857c -0.8067,-0.0000 -1.5126,-0.2857 -1.5126 -0.2857c -0.7059,-0.2857 -1.2185,-0.8319 -1.2185 -0.8319c -0.5126,-0.5462 -0.8067,-1.3445 -0.8067 -1.3445c -0.2941,-0.7983 -0.2941,-1.8067 -0.2941 -1.8067ZM 533.8277,566.0000 ZM 535.4412,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 539.3403,566.0000 ZM 540.1134,561.9328 c 0.0000,-1.0252 0.3109,-1.8235 0.3109 -1.8235c 0.3109,-0.7983 0.8319,-1.3529 0.8319 -1.3529c 0.5210,-0.5546 1.2017,-0.8403 1.2017 -0.8403c 0.6807,-0.2857 1.4370,-0.2857 1.4370 -0.2857c 0.7563,0.0000 1.4370,0.2857 1.4370 0.2857c 0.6807,0.2857 1.2017,0.8403 1.2017 0.8403c 0.5210,0.5546 0.8319,1.3529 0.8319 1.3529c 0.3109,0.7983 0.3109,1.8235 0.3109 1.8235c 0.0000,1.0084 -0.3109,1.8067 -0.3109 1.8067c -0.3109,0.7983 -0.8319,1.3445 -0.8319 1.3445c -0.5210,0.5462 -1.2017,0.8319 -1.2017 0.8319c -0.6807,0.2857 -1.4370,0.2857 -1.4370 0.2857c -0.7563,-0.0000 -1.4370,-0.2857 -1.4370 -0.2857c -0.6807,-0.2857 -1.2017,-0.8319 -1.2017 -0.8319c -0.5210,-0.5462 -0.8319,-1.3445 -0.8319 -1.3445c -0.3109,-0.7983 -0.3109,-1.8067 -0.3109 -1.8067ZM 540.1134,561.9328 ZM 541.5420,561.9328 c 0.0000,0.7059 0.1681,1.2773 0.1681 1.2773c 0.1681,0.5714 0.4790,0.9832 0.4790 0.9832c 0.3109,0.4118 0.7479,0.6387 0.7479 0.6387c 0.4370,0.2269 0.9580,0.2269 0.9580 0.2269c 0.5210,0.0000 0.9580,-0.2269 0.9580 -0.2269c 0.4370,-0.2269 0.7479,-0.6387 0.7479 -0.6387c 0.3109,-0.4118 0.4790,-0.9832 0.4790 -0.9832c 0.1681,-0.5714 0.1681,-1.2773 0.1681 -1.2773c 0.0000,-0.7059 -0.1681,-1.2857 -0.1681 -1.2857c -0.1681,-0.5798 -0.4790,-1.0000 -0.4790 -1.0000c -0.3109,-0.4202 -0.7479,-0.6471 -0.7479 -0.6471c -0.4370,-0.2269 -0.9580,-0.2269 -0.9580 -0.2269c -0.5210,-0.0000 -0.9580,0.2269 -0.9580 0.2269c -0.4370,0.2269 -0.7479,0.6471 -0.7479 0.6471c -0.3109,0.4202 -0.4790,1.0000 -0.4790 1.0000c -0.1681,0.5798 -0.1681,1.2857 -0.1681 1.2857ZM 548.4496,566.0000 ZM 549.8277,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 554.2815,566.0000 ZM 557.8782,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 559.3739,566.0000 ZM 562.4664,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 562.4664,561.7311 ZM 562.4664,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 562.4664,560.8739 ZM 562.7689,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 562.7689,566.2017 ZM 570.1471,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 570.1471,566.2017 ZM 570.1471,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 573.2227,566.0000 ZM 573.8613,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 578.3151,566.0000 ZM 581.9118,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 583.4076,566.0000 ZM 584.0966,561.2605 h 3.8655 v 1.0588 h -3.8655 v -1.0588 ZM 588.6345,566.0000 ZM 590.0126,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 590.0126,554.0336 ZM 591.3908,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 597.7269,566.0000 ZM 598.7017,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 598.7017,563.8824 ZM 600.0630,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 606.3319,566.0000 ZM 607.4916,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 613.3739,566.0000 ZM 614.1471,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 614.1471,561.9328 ZM 619.8613,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 621.7101,566.0000 ZM 622.3487,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 39.5588,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 45.3529,585.2500 ZM 47.1765,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 47.1765,576.6324 ZM 46.5588,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 48.9706,585.2500 ZM 51.3824,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 51.3824,585.8529 ZM 51.3824,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.9706,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0735,585.2500 ZM 109.5000,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 109.2206,585.2500 ZM 109.8971,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 109.8971,581.6912 ZM 111.1471,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 117.1912,585.2500 ZM 118.3971,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 120.9412,585.2500 ZM 121.6324,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 121.6324,581.6912 ZM 122.8824,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 147.4559,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 176.5588,585.2500 ZM 177.7647,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 188.7500,585.2500 ZM 189.6029,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 189.6029,583.3971 ZM 190.7941,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 196.2794,585.2500 ZM 198.6912,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 198.6912,585.8529 ZM 198.6912,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/grouped-single-estimator-coeff-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 228.1443,20.1694 ZM 233.3804,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 236.9738,20.1694 ZM 239.1555,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 246.8044,20.1694 ZM 250.3465,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 250.3465,5.5647 ZM 248.4728,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 253.8886,20.1694 ZM 255.5570,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 275.8855,20.1694 ZM 276.8095,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 276.8095,13.8039 ZM 285.0231,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 289.1812,20.1694 ZM 290.4132,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 298.0108,20.1694 ZM 303.2469,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 306.8403,20.1694 ZM 312.5898,11.1345 h 1.9507 c 1.4887,0.0000 2.2716,-0.6289 2.2716 -0.6289c 0.7829,-0.6289 0.7829,-1.8609 0.7829 -1.8609c 0.0000,-1.2320 -0.7829,-1.7197 -0.7829 -1.7197c -0.7829,-0.4877 -2.2716,-0.4877 -2.2716 -0.4877h -1.9507 v 4.6971 ZM 312.5898,11.1345 ZM 317.8773,20.1694 l -3.2084,-6.0318 h -2.0791 v 6.0318 h -3.7731 v -16.7351 h 6.0318 c 1.3347,0.0000 2.5026,0.2567 2.5026 0.2567c 1.1679,0.2567 2.0406,0.8599 2.0406 0.8599c 0.8727,0.6032 1.3860,1.6042 1.3860 1.6042c 0.5133,1.0010 0.5133,2.4897 0.5133 2.4897c 0.0000,1.8480 -0.8085,3.0416 -0.8085 3.0416c -0.8085,1.1935 -2.1689,1.7839 -2.1689 1.7839l 3.7988,6.6992 h -4.2351 ZM 322.3948,20.1694 ZM 323.3188,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 323.3188,13.8039 ZM 331.5323,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 335.4338,20.1694 ZM 339.4122,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 339.4122,21.7608 ZM 336.3065,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 336.3065,22.3511 ZM 341.9276,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 349.1401,20.1694 ZM 350.8085,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 359.0991,20.1694 ZM 360.0231,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 360.0231,13.8039 ZM 368.2367,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 372.3948,20.1694 ZM 374.6278,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 383.7654,20.1694 ZM 385.9985,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 395.1360,20.1694 ZM 398.6781,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 398.6781,5.5647 ZM 396.8044,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 402.2202,20.1694 ZM 403.1443,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 403.1443,13.8039 ZM 407.0200,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 416.4656,20.1694 ZM 418.1340,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 436.4861,20.1694 ZM 437.6668,11.9045 c 0.0000,-2.0791 0.6417,-3.7089 0.6417 -3.7089c 0.6417,-1.6299 1.7325,-2.7592 1.7325 -2.7592c 1.0909,-1.1294 2.5411,-1.7197 2.5411 -1.7197c 1.4502,-0.5903 3.0672,-0.5903 3.0672 -0.5903c 1.5657,0.0000 2.8362,0.6545 2.8362 0.6545c 1.2705,0.6545 2.1176,1.5272 2.1176 1.5272l -2.0791,2.3357 c -0.6417,-0.5903 -1.2962,-0.9240 -1.2962 -0.9240c -0.6545,-0.3337 -1.5272,-0.3337 -1.5272 -0.3337c -0.8727,-0.0000 -1.6299,0.3722 -1.6299 0.3722c -0.7572,0.3722 -1.3219,1.0652 -1.3219 1.0652c -0.5647,0.6930 -0.8855,1.6940 -0.8855 1.6940c -0.3208,1.0010 -0.3208,2.2587 -0.3208 2.2587c 0.0000,2.5924 1.1037,4.0169 1.1037 4.0169c 1.1037,1.4245 2.9517,1.4245 2.9517 1.4245c 1.0267,0.0000 1.7967,-0.4107 1.7967 -0.4107c 0.7700,-0.4107 1.3860,-1.0780 1.3860 -1.0780l 2.0791,2.2844 c -1.0524,1.2320 -2.3999,1.8480 -2.3999 1.8480c -1.3475,0.6160 -2.9132,0.6160 -2.9132 0.6160c -1.6170,-0.0000 -3.0544,-0.5518 -3.0544 -0.5518c -1.4374,-0.5518 -2.5154,-1.6299 -2.5154 -1.6299c -1.0780,-1.0780 -1.6940,-2.6822 -1.6940 -2.6822c -0.6160,-1.6042 -0.6160,-3.7089 -0.6160 -3.7089ZM 451.4245,20.1694 ZM 452.3486,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 452.3486,13.8039 ZM 456.2243,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 465.6699,20.1694 ZM 466.5939,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 466.5939,13.8039 ZM 474.8075,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 478.9656,20.1694 ZM 495.9317,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 495.8034,20.1694 ZM 497.3691,18.1160 c 0.0000,-1.0267 0.6545,-1.7069 0.6545 -1.7069c 0.6545,-0.6802 1.6299,-0.6802 1.6299 -0.6802c 0.9754,0.0000 1.6299,0.6802 1.6299 0.6802c 0.6545,0.6802 0.6545,1.7069 0.6545 1.7069c 0.0000,1.0010 -0.6545,1.6812 -0.6545 1.6812c -0.6545,0.6802 -1.6299,0.6802 -1.6299 0.6802c -0.9754,-0.0000 -1.6299,-0.6802 -1.6299 -0.6802c -0.6545,-0.6802 -0.6545,-1.6812 -0.6545 -1.6812ZM 503.5036,20.1694 ZM 504.7356,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 512.3332,20.1694 ZM 517.5693,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 521.1627,20.1694 ZM 523.1391,3.4343 h 4.7228 c 1.9251,0.0000 3.4651,0.4877 3.4651 0.4877c 1.5400,0.4877 2.6437,1.5015 2.6437 1.5015c 1.1037,1.0139 1.6940,2.5796 1.6940 2.5796c 0.5903,1.5657 0.5903,3.7218 0.5903 3.7218c 0.0000,2.1561 -0.5903,3.7474 -0.5903 3.7474c -0.5903,1.5914 -1.6684,2.6309 -1.6684 2.6309c -1.0780,1.0395 -2.5796,1.5529 -2.5796 1.5529c -1.5015,0.5133 -3.3496,0.5133 -3.3496 0.5133h -4.9281 v -16.7351 ZM 523.1391,3.4343 ZM 527.6309,17.1150 c 1.0780,0.0000 1.9507,-0.2823 1.9507 -0.2823c 0.8727,-0.2823 1.4887,-0.9112 1.4887 -0.9112c 0.6160,-0.6289 0.9625,-1.6555 0.9625 -1.6555c 0.3465,-1.0267 0.3465,-2.5411 0.3465 -2.5411c 0.0000,-1.4887 -0.3465,-2.5026 -0.3465 -2.5026c -0.3465,-1.0139 -0.9625,-1.6170 -0.9625 -1.6170c -0.6160,-0.6032 -1.4887,-0.8599 -1.4887 -0.8599c -0.8727,-0.2567 -1.9507,-0.2567 -1.9507 -0.2567h -0.7187 v 10.6263 h 0.7187 ZM 537.4615,20.1694 ZM 541.0036,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 541.0036,5.5647 ZM 539.1299,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 544.5457,20.1694 ZM 561.5118,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 566.7223,20.1694 ZM 567.9543,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,457.8333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,375.6667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,293.5000 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,211.3333 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,129.1667 h 659.1092 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 73.3025,47.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 88.3025,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 188.1541,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 288.0056,457.8333 v -410.8333 h 99.8515 v 410.8333 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 417.8571,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 517.7087,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 617.5602,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 417.8571,457.8333 v -1.0674 h 99.8515 v 1.0674 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 517.7087,457.8333 v 9.1009 h 99.8515 v -9.1009 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 73.3025,47.0000 v 493.0000 h 659.1092 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 617.5602,457.8333 v -4.5180 h 99.8515 v 4.5180 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,529.7292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,519.4583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,509.1875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,498.9167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,488.6458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,478.3750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,468.1042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,447.5625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,437.2917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,427.0208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,416.7500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,406.4792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,396.2083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,385.9375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,365.3958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,355.1250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,344.8542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,334.5833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,324.3125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,314.0417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,303.7708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,283.2292 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,272.9583 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,262.6875 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,252.4167 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,242.1458 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,231.8750 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,221.6042 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,201.0625 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,190.7917 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,180.5208 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,170.2500 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,159.9792 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,149.7083 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,139.4375 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,118.8958 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,108.6250 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,98.3542 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,88.0833 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,77.8125 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,67.5417 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,57.2708 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,457.8333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,375.6667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,293.5000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,211.3333 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,129.1667 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.3025,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.1261,544.8235 ZM 30.7290,540.6765 h 3.3824 v 0.9265 h -3.3824 v -0.9265 ZM 34.6996,544.8235 ZM 35.2878,544.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 42.0084,544.8235 ZM 45.6702,545.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,545.0000 ZM 45.6702,544.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,544.8235 ZM 54.9937,541.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,541.0882 ZM 54.9937,540.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,540.3382 ZM 55.2584,545.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,545.0000 ZM 61.7143,545.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,545.0000 ZM 61.7143,544.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 42.0525,462.6569 ZM 45.7143,462.8333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7143,462.8333 ZM 45.7143,461.8627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3319,462.6569 ZM 55.0378,458.9216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0378,458.9216 ZM 55.0378,458.1716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0378,458.1716 ZM 55.3025,462.8333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3025,462.8333 ZM 61.7584,462.8333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7584,462.8333 ZM 61.7584,462.0833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6261,380.4902 ZM 35.2143,379.7696 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 41.9349,380.4902 ZM 45.5966,380.6667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.5966,380.6667 ZM 45.5966,379.6961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2143,380.4902 ZM 54.9202,376.7549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9202,376.7549 ZM 54.9202,376.0049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9202,376.0049 ZM 55.1849,380.6667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.1849,380.6667 ZM 61.6408,380.6667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.6408,380.6667 ZM 61.6408,379.9167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.3466,298.3235 ZM 38.8172,294.7647 v -2.7206 c 0.0000,-0.3824 0.0221,-0.9044 0.0221 -0.9044c 0.0221,-0.5221 0.0515,-0.9044 0.0515 -0.9044h -0.0588 c -0.1765,0.3382 -0.3676,0.6618 -0.3676 0.6618c -0.1912,0.3235 -0.3971,0.6618 -0.3971 0.6618l -2.1912,3.2059 h 2.9412 ZM 38.8172,294.7647 ZM 41.2437,295.7353 h -1.2794 v 2.5882 h -1.1471 v -2.5882 h -4.2206 v -0.7941 l 4.0147,-6.0000 h 1.3529 v 5.8235 h 1.2794 v 0.9706 ZM 41.6555,298.3235 ZM 45.3172,298.5000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.3172,298.5000 ZM 45.3172,297.5294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.9349,298.3235 ZM 54.6408,294.5882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.6408,294.5882 ZM 54.6408,293.8382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.6408,293.8382 ZM 54.9055,298.5000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 54.9055,298.5000 ZM 61.3613,298.5000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.3613,298.5000 ZM 61.3613,297.7500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.8025,216.1569 ZM 38.7437,215.3775 c 0.3529,0.0000 0.6471,-0.1471 0.6471 -0.1471c 0.2941,-0.1471 0.5147,-0.4191 0.5147 -0.4191c 0.2206,-0.2721 0.3456,-0.6471 0.3456 -0.6471c 0.1250,-0.3750 0.1250,-0.8456 0.1250 -0.8456c 0.0000,-0.9265 -0.4265,-1.4559 -0.4265 -1.4559c -0.4265,-0.5294 -1.3088,-0.5294 -1.3088 -0.5294c -0.4412,-0.0000 -0.9632,0.2868 -0.9632 0.2868c -0.5221,0.2868 -0.9926,0.9485 -0.9926 0.9485c 0.1176,1.3824 0.6397,2.0956 0.6397 2.0956c 0.5221,0.7132 1.4191,0.7132 1.4191 0.7132ZM 38.7437,215.3775 ZM 40.6702,208.3480 c -0.2941,-0.3382 -0.6985,-0.5368 -0.6985 -0.5368c -0.4044,-0.1985 -0.8456,-0.1985 -0.8456 -0.1985c -0.4853,-0.0000 -0.9265,0.2059 -0.9265 0.2059c -0.4412,0.2059 -0.7794,0.6765 -0.7794 0.6765c -0.3382,0.4706 -0.5441,1.2279 -0.5441 1.2279c -0.2059,0.7574 -0.2206,1.8750 -0.2206 1.8750c 0.4412,-0.5441 1.0294,-0.8603 1.0294 -0.8603c 0.5882,-0.3162 1.1618,-0.3162 1.1618 -0.3162c 1.2206,0.0000 1.9485,0.7206 1.9485 0.7206c 0.7279,0.7206 0.7279,2.1765 0.7279 2.1765c 0.0000,0.6765 -0.2206,1.2279 -0.2206 1.2279c -0.2206,0.5515 -0.6029,0.9485 -0.6029 0.9485c -0.3824,0.3971 -0.8824,0.6176 -0.8824 0.6176c -0.5000,0.2206 -1.0735,0.2206 -1.0735 0.2206c -0.6912,-0.0000 -1.2794,-0.2794 -1.2794 -0.2794c -0.5882,-0.2794 -1.0221,-0.8456 -1.0221 -0.8456c -0.4338,-0.5662 -0.6838,-1.4118 -0.6838 -1.4118c -0.2500,-0.8456 -0.2500,-1.9779 -0.2500 -1.9779c 0.0000,-1.4118 0.2941,-2.4044 0.2941 -2.4044c 0.2941,-0.9926 0.7941,-1.6176 0.7941 -1.6176c 0.5000,-0.6250 1.1397,-0.9118 1.1397 -0.9118c 0.6397,-0.2868 1.3456,-0.2868 1.3456 -0.2868c 0.7647,0.0000 1.3162,0.2868 1.3162 0.2868c 0.5515,0.2868 0.9485,0.7132 0.9485 0.7132ZM 42.1113,216.1569 ZM 45.7731,216.3333 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.7731,216.3333 ZM 45.7731,215.3627 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.3908,216.1569 ZM 55.0966,212.4216 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.0966,212.4216 ZM 55.0966,211.6716 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.0966,211.6716 ZM 55.3613,216.3333 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.3613,216.3333 ZM 61.8172,216.3333 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.8172,216.3333 ZM 61.8172,215.5833 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 34.6996,133.9902 ZM 36.3908,131.4755 c 0.0000,0.3971 0.1544,0.7206 0.1544 0.7206c 0.1544,0.3235 0.4265,0.5662 0.4265 0.5662c 0.2721,0.2426 0.6397,0.3750 0.6397 0.3750c 0.3676,0.1324 0.7941,0.1324 0.7941 0.1324c 0.8235,0.0000 1.3309,-0.4559 1.3309 -0.4559c 0.5074,-0.4559 0.5074,-1.1912 0.5074 -1.1912c 0.0000,-0.4559 -0.2059,-0.7794 -0.2059 -0.7794c -0.2059,-0.3235 -0.5588,-0.5662 -0.5588 -0.5662c -0.3529,-0.2426 -0.8162,-0.4412 -0.8162 -0.4412c -0.4632,-0.1985 -0.9632,-0.4044 -0.9632 -0.4044c -0.5588,0.3824 -0.9338,0.8897 -0.9338 0.8897c -0.3750,0.5074 -0.3750,1.1544 -0.3750 1.1544ZM 36.3908,131.4755 ZM 39.0378,128.8725 c 0.4706,-0.4265 0.7279,-0.8971 0.7279 -0.8971c 0.2574,-0.4706 0.2574,-0.9853 0.2574 -0.9853c 0.0000,-0.7059 -0.4265,-1.1838 -0.4265 -1.1838c -0.4265,-0.4779 -1.2059,-0.4779 -1.2059 -0.4779c -0.6618,-0.0000 -1.0882,0.4118 -1.0882 0.4118c -0.4265,0.4118 -0.4265,1.1029 -0.4265 1.1029c 0.0000,0.4265 0.1765,0.7279 0.1765 0.7279c 0.1765,0.3015 0.4779,0.5368 0.4779 0.5368c 0.3015,0.2353 0.6912,0.4191 0.6912 0.4191c 0.3897,0.1838 0.8162,0.3456 0.8162 0.3456ZM 39.0378,128.8725 ZM 35.3025,131.5931 c 0.0000,-0.4559 0.1544,-0.8456 0.1544 -0.8456c 0.1544,-0.3897 0.3971,-0.7059 0.3971 -0.7059c 0.2426,-0.3162 0.5588,-0.5588 0.5588 -0.5588c 0.3162,-0.2426 0.6544,-0.4191 0.6544 -0.4191v -0.0588 c -0.5147,-0.3676 -0.9118,-0.8897 -0.9118 -0.8897c -0.3971,-0.5221 -0.3971,-1.2721 -0.3971 -1.2721c 0.0000,-0.5441 0.2059,-0.9853 0.2059 -0.9853c 0.2059,-0.4412 0.5588,-0.7574 0.5588 -0.7574c 0.3529,-0.3162 0.8382,-0.4926 0.8382 -0.4926c 0.4853,-0.1765 1.0588,-0.1765 1.0588 -0.1765c 0.6176,0.0000 1.1029,0.1838 1.1029 0.1838c 0.4853,0.1838 0.8309,0.5147 0.8309 0.5147c 0.3456,0.3309 0.5294,0.7941 0.5294 0.7941c 0.1838,0.4632 0.1838,1.0074 0.1838 1.0074c 0.0000,0.3676 -0.1250,0.7059 -0.1250 0.7059c -0.1250,0.3382 -0.3088,0.6324 -0.3088 0.6324c -0.1838,0.2941 -0.4118,0.5294 -0.4118 0.5294c -0.2279,0.2353 -0.4485,0.3971 -0.4485 0.3971v 0.0588 c 0.3088,0.1765 0.6029,0.4044 0.6029 0.4044c 0.2941,0.2279 0.5221,0.5147 0.5221 0.5147c 0.2279,0.2868 0.3676,0.6544 0.3676 0.6544c 0.1397,0.3676 0.1397,0.8382 0.1397 0.8382c 0.0000,0.5294 -0.2206,0.9853 -0.2206 0.9853c -0.2206,0.4559 -0.6176,0.7941 -0.6176 0.7941c -0.3971,0.3382 -0.9559,0.5294 -0.9559 0.5294c -0.5588,0.1912 -1.2353,0.1912 -1.2353 0.1912c -0.6618,-0.0000 -1.2279,-0.1912 -1.2279 -0.1912c -0.5662,-0.1912 -0.9706,-0.5368 -0.9706 -0.5368c -0.4044,-0.3456 -0.6397,-0.8162 -0.6397 -0.8162c -0.2353,-0.4706 -0.2353,-1.0294 -0.2353 -1.0294ZM 42.0084,133.9902 ZM 45.6702,134.1667 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 45.6702,134.1667 ZM 45.6702,133.1961 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.2878,133.9902 ZM 54.9937,130.2549 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 54.9937,130.2549 ZM 54.9937,129.5049 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 54.9937,129.5049 ZM 55.2584,134.1667 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.2584,134.1667 ZM 61.7143,134.1667 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 61.7143,134.1667 ZM 61.7143,133.4167 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 27.9496,51.8235 ZM 29.1113,50.8235 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 35.2584,51.8235 ZM 38.9202,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 38.9202,52.0000 ZM 38.9202,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 42.5672,51.8235 ZM 46.2290,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 46.2290,52.0000 ZM 46.2290,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 52.8466,51.8235 ZM 55.5525,48.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 55.5525,48.0882 ZM 55.5525,47.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 55.5525,47.3382 ZM 55.8172,52.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 55.8172,52.0000 ZM 62.2731,52.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 62.2731,52.0000 ZM 62.2731,51.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 73.3025,540.0000 h 659.1092 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.7773,566.0000 ZM 175.9370,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 181.8193,566.0000 ZM 183.4328,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 187.5000,566.0000 ZM 188.8782,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 193.1639,566.0000 ZM 193.9370,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 193.9370,561.9328 ZM 199.6513,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 201.2647,566.0000 ZM 202.2395,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 202.2395,563.8824 ZM 203.6008,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 209.8697,566.0000 ZM 211.2479,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 223.8025,566.0000 ZM 225.1807,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 228.0882,566.0000 ZM 228.9118,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 235.9370,566.0000 ZM 239.5336,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 241.0294,566.0000 ZM 244.1218,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 244.1218,561.7311 ZM 244.1218,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 244.1218,560.8739 ZM 244.4244,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 244.4244,566.2017 ZM 251.8025,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 251.8025,566.2017 ZM 251.8025,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 254.8782,566.0000 ZM 255.5168,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 259.9706,566.0000 ZM 263.5672,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 265.0630,566.0000 ZM 266.4412,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 266.4412,554.0336 ZM 267.8193,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 274.1555,566.0000 ZM 275.1303,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 275.1303,563.8824 ZM 276.4916,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 282.7605,566.0000 ZM 283.9202,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 289.8025,566.0000 ZM 290.5756,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 290.5756,561.9328 ZM 296.2899,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 298.1387,566.0000 ZM 298.7773,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 510.0462,566.0000 ZM 510.2479,557.8319 h 1.4286 l 1.5462,4.6387 c 0.1849,0.6050 0.3782,1.2101 0.3782 1.2101c 0.1933,0.6050 0.3782,1.1933 0.3782 1.1933h 0.0672 c 0.1849,-0.5882 0.3697,-1.1933 0.3697 -1.1933l 0.3697,-1.2101 l 1.5462,-4.6387 h 1.3613 l -2.8908,8.1681 h -1.6134 ZM 517.8277,566.0000 ZM 518.6008,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 518.6008,561.9328 ZM 524.3151,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 526.1639,566.0000 ZM 526.9370,561.9328 c 0.0000,-1.0252 0.3193,-1.8235 0.3193 -1.8235c 0.3193,-0.7983 0.8571,-1.3529 0.8571 -1.3529c 0.5378,-0.5546 1.2521,-0.8403 1.2521 -0.8403c 0.7143,-0.2857 1.5042,-0.2857 1.5042 -0.2857c 0.8067,0.0000 1.3866,0.2941 1.3866 0.2941c 0.5798,0.2941 1.0000,0.6807 1.0000 0.6807l -0.6891,0.8908 c -0.3697,-0.3193 -0.7647,-0.5210 -0.7647 -0.5210c -0.3950,-0.2017 -0.8824,-0.2017 -0.8824 -0.2017c -0.5546,-0.0000 -1.0252,0.2269 -1.0252 0.2269c -0.4706,0.2269 -0.8067,0.6471 -0.8067 0.6471c -0.3361,0.4202 -0.5294,1.0000 -0.5294 1.0000c -0.1933,0.5798 -0.1933,1.2857 -0.1933 1.2857c 0.0000,0.7059 0.1849,1.2773 0.1849 1.2773c 0.1849,0.5714 0.5126,0.9832 0.5126 0.9832c 0.3277,0.4118 0.7983,0.6387 0.7983 0.6387c 0.4706,0.2269 1.0252,0.2269 1.0252 0.2269c 0.5882,0.0000 1.0672,-0.2437 1.0672 -0.2437c 0.4790,-0.2437 0.8487,-0.5798 0.8487 -0.5798l 0.6218,0.9076 c -0.5546,0.4874 -1.2353,0.7731 -1.2353 0.7731c -0.6807,0.2857 -1.4202,0.2857 -1.4202 0.2857c -0.8067,-0.0000 -1.5126,-0.2857 -1.5126 -0.2857c -0.7059,-0.2857 -1.2185,-0.8319 -1.2185 -0.8319c -0.5126,-0.5462 -0.8067,-1.3445 -0.8067 -1.3445c -0.2941,-0.7983 -0.2941,-1.8067 -0.2941 -1.8067ZM 533.8277,566.0000 ZM 535.4412,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 539.3403,566.0000 ZM 540.1134,561.9328 c 0.0000,-1.0252 0.3109,-1.8235 0.3109 -1.8235c 0.3109,-0.7983 0.8319,-1.3529 0.8319 -1.3529c 0.5210,-0.5546 1.2017,-0.8403 1.2017 -0.8403c 0.6807,-0.2857 1.4370,-0.2857 1.4370 -0.2857c 0.7563,0.0000 1.4370,0.2857 1.4370 0.2857c 0.6807,0.2857 1.2017,0.8403 1.2017 0.8403c 0.5210,0.5546 0.8319,1.3529 0.8319 1.3529c 0.3109,0.7983 0.3109,1.8235 0.3109 1.8235c 0.0000,1.0084 -0.3109,1.8067 -0.3109 1.8067c -0.3109,0.7983 -0.8319,1.3445 -0.8319 1.3445c -0.5210,0.5462 -1.2017,0.8319 -1.2017 0.8319c -0.6807,0.2857 -1.4370,0.2857 -1.4370 0.2857c -0.7563,-0.0000 -1.4370,-0.2857 -1.4370 -0.2857c -0.6807,-0.2857 -1.2017,-0.8319 -1.2017 -0.8319c -0.5210,-0.5462 -0.8319,-1.3445 -0.8319 -1.3445c -0.3109,-0.7983 -0.3109,-1.8067 -0.3109 -1.8067ZM 540.1134,561.9328 ZM 541.5420,561.9328 c 0.0000,0.7059 0.1681,1.2773 0.1681 1.2773c 0.1681,0.5714 0.4790,0.9832 0.4790 0.9832c 0.3109,0.4118 0.7479,0.6387 0.7479 0.6387c 0.4370,0.2269 0.9580,0.2269 0.9580 0.2269c 0.5210,0.0000 0.9580,-0.2269 0.9580 -0.2269c 0.4370,-0.2269 0.7479,-0.6387 0.7479 -0.6387c 0.3109,-0.4118 0.4790,-0.9832 0.4790 -0.9832c 0.1681,-0.5714 0.1681,-1.2773 0.1681 -1.2773c 0.0000,-0.7059 -0.1681,-1.2857 -0.1681 -1.2857c -0.1681,-0.5798 -0.4790,-1.0000 -0.4790 -1.0000c -0.3109,-0.4202 -0.7479,-0.6471 -0.7479 -0.6471c -0.4370,-0.2269 -0.9580,-0.2269 -0.9580 -0.2269c -0.5210,-0.0000 -0.9580,0.2269 -0.9580 0.2269c -0.4370,0.2269 -0.7479,0.6471 -0.7479 0.6471c -0.3109,0.4202 -0.4790,1.0000 -0.4790 1.0000c -0.1681,0.5798 -0.1681,1.2857 -0.1681 1.2857ZM 548.4496,566.0000 ZM 549.8277,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 554.2815,566.0000 ZM 557.8782,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 559.3739,566.0000 ZM 562.4664,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 562.4664,561.7311 ZM 562.4664,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 562.4664,560.8739 ZM 562.7689,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 562.7689,566.2017 ZM 570.1471,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 570.1471,566.2017 ZM 570.1471,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 573.2227,566.0000 ZM 573.8613,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 578.3151,566.0000 ZM 581.9118,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 583.4076,566.0000 ZM 584.0966,561.2605 h 3.8655 v 1.0588 h -3.8655 v -1.0588 ZM 588.6345,566.0000 ZM 590.0126,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 590.0126,554.0336 ZM 591.3908,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 597.7269,566.0000 ZM 598.7017,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 598.7017,563.8824 ZM 600.0630,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 606.3319,566.0000 ZM 607.4916,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 613.3739,566.0000 ZM 614.1471,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 614.1471,561.9328 ZM 619.8613,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 621.7101,566.0000 ZM 622.3487,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 43.5294,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 43.2500,585.2500 ZM 43.9265,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 43.9265,581.6912 ZM 45.1765,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 51.2206,585.2500 ZM 52.4265,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 54.9706,585.2500 ZM 55.6618,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 55.6618,581.6912 ZM 56.9118,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 81.4853,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.5882,585.2500 ZM 111.7941,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 122.7794,585.2500 ZM 123.6324,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 123.6324,583.3971 ZM 124.8235,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 130.3088,585.2500 ZM 132.7206,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 132.7206,585.8529 ZM 132.7206,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 156.5588,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.6618,585.2500 ZM 186.1176,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 191.9118,585.2500 ZM 193.7353,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 193.7353,576.6324 ZM 193.1176,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 195.5294,585.2500 ZM 197.9412,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 197.9412,585.8529 ZM 197.9412,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g></svg>
+ docs/regression-percent-descending-median-time.svg view
@@ -0,0 +1,3 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="480.0000" stroke-opacity="1" viewBox="0 0 800 600" font-size="1" width="640.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.3681,20.1694 ZM 176.6042,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 180.1976,20.1694 ZM 182.3794,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 190.0282,20.1694 ZM 193.5703,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 193.5703,5.5647 ZM 191.6966,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 197.1124,20.1694 ZM 198.7808,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 219.1093,20.1694 ZM 220.0334,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 220.0334,13.8039 ZM 228.2469,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 232.4050,20.1694 ZM 233.6371,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 241.2346,20.1694 ZM 246.4707,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 250.0642,20.1694 ZM 252.0406,3.4343 h 4.0041 l 2.7977,7.5205 l 1.0010,2.9261 h 0.1027 l 1.0010,-2.9261 l 2.7207,-7.5205 h 3.9784 v 16.7351 h -3.5164 v -6.1345 c 0.0000,-0.6160 0.0513,-1.3604 0.0513 -1.3604c 0.0513,-0.7444 0.1283,-1.5015 0.1283 -1.5015c 0.0770,-0.7572 0.1540,-1.4887 0.1540 -1.4887c 0.0770,-0.7315 0.1540,-1.3475 0.1540 -1.3475h -0.1027 l -1.3860,3.8758 l -2.5667,6.4938 h -1.5144 l -2.5667,-6.4938 l -1.3347,-3.8758 h -0.1027 c 0.0770,0.6160 0.1540,1.3475 0.1540 1.3475c 0.0770,0.7315 0.1412,1.4887 0.1412 1.4887c 0.0642,0.7572 0.1155,1.5015 0.1155 1.5015c 0.0513,0.7444 0.0513,1.3604 0.0513 1.3604v 6.1345 h -3.4651 v -16.7351 ZM 269.6227,20.1694 ZM 270.5467,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 270.5467,13.8039 ZM 278.7603,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 282.9184,20.1694 ZM 283.9194,13.8039 c 0.0000,-1.5657 0.4492,-2.7977 0.4492 -2.7977c 0.4492,-1.2320 1.1807,-2.0919 1.1807 -2.0919c 0.7315,-0.8599 1.6940,-1.3219 1.6940 -1.3219c 0.9625,-0.4620 1.9636,-0.4620 1.9636 -0.4620c 1.0780,0.0000 1.7710,0.3593 1.7710 0.3593c 0.6930,0.3593 1.3604,0.9754 1.3604 0.9754l -0.1540,-1.9507 v -4.3378 h 3.7731 v 17.9928 h -3.0801 l -0.2567,-1.2577 h -0.1027 c -0.6674,0.6674 -1.5657,1.1165 -1.5657 1.1165c -0.8984,0.4492 -1.8224,0.4492 -1.8224 0.4492c -1.1807,-0.0000 -2.1432,-0.4620 -2.1432 -0.4620c -0.9625,-0.4620 -1.6427,-1.3219 -1.6427 -1.3219c -0.6802,-0.8599 -1.0524,-2.0919 -1.0524 -2.0919c -0.3722,-1.2320 -0.3722,-2.7977 -0.3722 -2.7977ZM 283.9194,13.8039 ZM 287.7952,13.7526 c 0.0000,1.8994 0.6032,2.7721 0.6032 2.7721c 0.6032,0.8727 1.7069,0.8727 1.7069 0.8727c 0.6160,0.0000 1.1165,-0.2567 1.1165 -0.2567c 0.5005,-0.2567 0.9625,-0.8984 0.9625 -0.8984v -5.2105 c -0.5133,-0.4620 -1.0524,-0.6417 -1.0524 -0.6417c -0.5390,-0.1797 -1.0524,-0.1797 -1.0524 -0.1797c -0.8984,-0.0000 -1.5914,0.8599 -1.5914 0.8599c -0.6930,0.8599 -0.6930,2.6822 -0.6930 2.6822ZM 297.6258,20.1694 ZM 301.1679,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 301.1679,5.5647 ZM 299.2941,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 304.7100,20.1694 ZM 305.9163,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 305.9163,16.6273 ZM 309.5098,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 318.4163,20.1694 ZM 320.0847,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 333.0980,20.1694 ZM 334.3301,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 ZM 341.9276,20.1694 ZM 347.1638,24.7639 c -1.6170,-2.6437 -2.5026,-5.4928 -2.5026 -5.4928c -0.8855,-2.8491 -0.8855,-6.2372 -0.8855 -6.2372c 0.0000,-3.3881 0.8855,-6.2372 0.8855 -6.2372c 0.8855,-2.8491 2.5026,-5.4928 2.5026 -5.4928l 2.3614,0.9754 c -1.4117,2.5154 -2.0534,5.2618 -2.0534 5.2618c -0.6417,2.7464 -0.6417,5.4928 -0.6417 5.4928c 0.0000,2.7464 0.6417,5.4928 0.6417 5.4928c 0.6417,2.7464 2.0534,5.2618 2.0534 5.2618l -2.3614,0.9754 h 0.0000 ZM 350.7572,20.1694 ZM 352.7336,3.4343 h 4.7228 c 1.9251,0.0000 3.4651,0.4877 3.4651 0.4877c 1.5400,0.4877 2.6437,1.5015 2.6437 1.5015c 1.1037,1.0139 1.6940,2.5796 1.6940 2.5796c 0.5903,1.5657 0.5903,3.7218 0.5903 3.7218c 0.0000,2.1561 -0.5903,3.7474 -0.5903 3.7474c -0.5903,1.5914 -1.6684,2.6309 -1.6684 2.6309c -1.0780,1.0395 -2.5796,1.5529 -2.5796 1.5529c -1.5015,0.5133 -3.3496,0.5133 -3.3496 0.5133h -4.9281 v -16.7351 ZM 352.7336,3.4343 ZM 357.2254,17.1150 c 1.0780,0.0000 1.9507,-0.2823 1.9507 -0.2823c 0.8727,-0.2823 1.4887,-0.9112 1.4887 -0.9112c 0.6160,-0.6289 0.9625,-1.6555 0.9625 -1.6555c 0.3465,-1.0267 0.3465,-2.5411 0.3465 -2.5411c 0.0000,-1.4887 -0.3465,-2.5026 -0.3465 -2.5026c -0.3465,-1.0139 -0.9625,-1.6170 -0.9625 -1.6170c -0.6160,-0.6032 -1.4887,-0.8599 -1.4887 -0.8599c -0.8727,-0.2567 -1.9507,-0.2567 -1.9507 -0.2567h -0.7187 v 10.6263 h 0.7187 ZM 367.0560,20.1694 ZM 370.5980,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 370.5980,5.5647 ZM 368.7243,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 374.1401,20.1694 ZM 391.1063,5.1027 c -0.7187,-0.2567 -1.3090,-0.2567 -1.3090 -0.2567c -0.6930,-0.0000 -1.0780,0.4235 -1.0780 0.4235c -0.3850,0.4235 -0.3850,1.3989 -0.3850 1.3989v 0.7700 h 2.2844 v 2.9517 h -2.2844 v 9.7793 h -3.7731 v -9.7793 h -4.3378 v 9.7793 h -3.7731 v -9.7793 h -1.6940 v -2.7977 l 1.6940,-0.1283 v -0.5903 c 0.0000,-0.9754 0.2695,-1.8480 0.2695 -1.8480c 0.2695,-0.8727 0.8470,-1.5144 0.8470 -1.5144c 0.5775,-0.6417 1.4887,-1.0139 1.4887 -1.0139c 0.9112,-0.3722 2.2202,-0.3722 2.2202 -0.3722c 0.8214,0.0000 1.5144,0.1412 1.5144 0.1412c 0.6930,0.1412 1.1294,0.3208 1.1294 0.3208l -0.6930,2.7977 c -0.3080,-0.1283 -0.6417,-0.2053 -0.6417 -0.2053c -0.3337,-0.0770 -0.8470,-0.0770 -0.8470 -0.0770c -0.6674,-0.0000 -1.0909,0.4235 -1.0909 0.4235c -0.4235,0.4235 -0.4235,1.3219 -0.4235 1.3219v 0.5903 h 4.3378 v -0.6674 c 0.0000,-1.0010 0.2438,-1.8994 0.2438 -1.8994c 0.2438,-0.8984 0.8085,-1.5657 0.8085 -1.5657c 0.5647,-0.6674 1.4502,-1.0524 1.4502 -1.0524c 0.8855,-0.3850 2.1689,-0.3850 2.1689 -0.3850c 0.8214,0.0000 1.4630,0.1540 1.4630 0.1540c 0.6417,0.1540 1.0780,0.3080 1.0780 0.3080ZM 396.3167,20.1694 ZM 397.8568,7.4384 h 3.7731 v 7.4179 c 0.0000,1.3860 0.3850,1.8994 0.3850 1.8994c 0.3850,0.5133 1.2064,0.5133 1.2064 0.5133c 0.7187,0.0000 1.2064,-0.3337 1.2064 -0.3337c 0.4877,-0.3337 1.0524,-1.0780 1.0524 -1.0780v -8.4189 h 3.7731 v 12.7310 h -3.0801 l -0.2823,-1.7710 h -0.0770 c -0.8214,0.9754 -1.7582,1.5272 -1.7582 1.5272c -0.9369,0.5518 -2.2459,0.5518 -2.2459 0.5518c -2.0791,-0.0000 -3.0159,-1.3604 -3.0159 -1.3604c -0.9369,-1.3604 -0.9369,-3.7731 -0.9369 -3.7731v -7.9055 ZM 410.8958,20.1694 ZM 413.1289,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 422.2664,20.1694 ZM 425.8085,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 425.8085,5.5647 ZM 423.9348,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 429.3506,20.1694 ZM 431.0190,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 444.0323,20.1694 ZM 448.0108,21.7608 c 0.0000,0.7187 0.7700,1.0909 0.7700 1.0909c 0.7700,0.3722 2.0534,0.3722 2.0534 0.3722c 1.2834,0.0000 2.1047,-0.4492 2.1047 -0.4492c 0.8214,-0.4492 0.8214,-1.1165 0.8214 -1.1165c 0.0000,-0.5903 -0.5005,-0.7957 -0.5005 -0.7957c -0.5005,-0.2053 -1.4502,-0.2053 -1.4502 -0.2053h -1.3090 c -0.6674,-0.0000 -1.0780,-0.0385 -1.0780 -0.0385c -0.4107,-0.0385 -0.7187,-0.1155 -0.7187 -0.1155c -0.6930,0.6160 -0.6930,1.2577 -0.6930 1.2577ZM 448.0108,21.7608 ZM 444.9050,22.3511 c 0.0000,-1.5400 1.8224,-2.5667 1.8224 -2.5667v -0.1027 c -0.5133,-0.3337 -0.8470,-0.8470 -0.8470 -0.8470c -0.3337,-0.5133 -0.3337,-1.3090 -0.3337 -1.3090c 0.0000,-0.6930 0.4107,-1.3219 0.4107 -1.3219c 0.4107,-0.6289 1.0267,-1.0652 1.0267 -1.0652v -0.1027 c -0.6674,-0.4620 -1.1935,-1.3219 -1.1935 -1.3219c -0.5262,-0.8599 -0.5262,-1.9892 -0.5262 -1.9892c 0.0000,-1.1550 0.4363,-2.0149 0.4363 -2.0149c 0.4363,-0.8599 1.1679,-1.4374 1.1679 -1.4374c 0.7315,-0.5775 1.6812,-0.8599 1.6812 -0.8599c 0.9497,-0.2823 1.9764,-0.2823 1.9764 -0.2823c 1.1294,0.0000 1.9764,0.3080 1.9764 0.3080h 4.6458 v 2.7464 h -2.0277 c 0.1797,0.2823 0.2952,0.7187 0.2952 0.7187c 0.1155,0.4363 0.1155,0.9497 0.1155 0.9497c 0.0000,1.1037 -0.3850,1.9122 -0.3850 1.9122c -0.3850,0.8085 -1.0652,1.3347 -1.0652 1.3347c -0.6802,0.5262 -1.5914,0.7829 -1.5914 0.7829c -0.9112,0.2567 -1.9636,0.2567 -1.9636 0.2567c -0.7444,-0.0000 -1.5400,-0.2567 -1.5400 -0.2567c -0.2567,0.2053 -0.3593,0.4107 -0.3593 0.4107c -0.1027,0.2053 -0.1027,0.5390 -0.1027 0.5390c 0.0000,0.4877 0.4235,0.7187 0.4235 0.7187c 0.4235,0.2310 1.5015,0.2310 1.5015 0.2310h 2.0534 c 2.3614,0.0000 3.6063,0.7572 3.6063 0.7572c 1.2449,0.7572 1.2449,2.4769 1.2449 2.4769c 0.0000,1.0010 -0.5005,1.8352 -0.5005 1.8352c -0.5005,0.8342 -1.4245,1.4374 -1.4245 1.4374c -0.9240,0.6032 -2.2331,0.9497 -2.2331 0.9497c -1.3090,0.3465 -2.9517,0.3465 -2.9517 0.3465c -1.1294,-0.0000 -2.0919,-0.1925 -2.0919 -0.1925c -0.9625,-0.1925 -1.6940,-0.5775 -1.6940 -0.5775c -0.7315,-0.3850 -1.1422,-1.0010 -1.1422 -1.0010c -0.4107,-0.6160 -0.4107,-1.4630 -0.4107 -1.4630ZM 444.9050,22.3511 ZM 450.5262,13.8552 c 0.7444,0.0000 1.2449,-0.5262 1.2449 -0.5262c 0.5005,-0.5262 0.5005,-1.6042 0.5005 -1.6042c 0.0000,-1.0010 -0.5005,-1.5272 -0.5005 -1.5272c -0.5005,-0.5262 -1.2449,-0.5262 -1.2449 -0.5262c -0.7444,-0.0000 -1.2449,0.5133 -1.2449 0.5133c -0.5005,0.5133 -0.5005,1.5400 -0.5005 1.5400c 0.0000,1.0780 0.5005,1.6042 0.5005 1.6042c 0.5005,0.5262 1.2449,0.5262 1.2449 0.5262ZM 463.0775,20.1694 ZM 464.7459,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 485.0744,20.1694 ZM 488.6165,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 488.6165,5.5647 ZM 486.7428,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 492.1586,20.1694 ZM 493.8270,7.4384 h 3.0801 l 0.2567,1.6170 h 0.1027 c 0.8214,-0.7700 1.7967,-1.3475 1.7967 -1.3475c 0.9754,-0.5775 2.2844,-0.5775 2.2844 -0.5775c 2.0791,0.0000 3.0159,1.3604 3.0159 1.3604c 0.9369,1.3604 0.9369,3.7731 0.9369 3.7731v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.7187,-0.0000 -1.2320,0.3208 -1.2320 0.3208c -0.5133,0.3208 -1.1294,0.9112 -1.1294 0.9112v 8.5986 h -3.7731 v -12.7310 ZM 512.1792,20.1694 ZM 513.1032,13.8039 c 0.0000,-1.5400 0.5133,-2.7849 0.5133 -2.7849c 0.5133,-1.2449 1.3475,-2.1047 1.3475 -2.1047c 0.8342,-0.8599 1.9122,-1.3219 1.9122 -1.3219c 1.0780,-0.4620 2.2331,-0.4620 2.2331 -0.4620c 1.3604,0.0000 2.3742,0.4620 2.3742 0.4620c 1.0139,0.4620 1.6940,1.2834 1.6940 1.2834c 0.6802,0.8214 1.0139,1.9379 1.0139 1.9379c 0.3337,1.1165 0.3337,2.4256 0.3337 2.4256c 0.0000,0.5133 -0.0513,0.9369 -0.0513 0.9369c -0.0513,0.4235 -0.1027,0.6545 -0.1027 0.6545h -7.6232 c 0.2567,1.4630 1.1422,2.1176 1.1422 2.1176c 0.8855,0.6545 2.1689,0.6545 2.1689 0.6545c 1.3604,0.0000 2.7464,-0.8470 2.7464 -0.8470l 1.2577,2.2844 c -0.9754,0.6674 -2.1689,1.0524 -2.1689 1.0524c -1.1935,0.3850 -2.3486,0.3850 -2.3486 0.3850c -1.3604,-0.0000 -2.5411,-0.4492 -2.5411 -0.4492c -1.1807,-0.4492 -2.0534,-1.3090 -2.0534 -1.3090c -0.8727,-0.8599 -1.3604,-2.0919 -1.3604 -2.0919c -0.4877,-1.2320 -0.4877,-2.8234 -0.4877 -2.8234ZM 513.1032,13.8039 ZM 521.3167,12.4949 c 0.0000,-1.1037 -0.4877,-1.7967 -0.4877 -1.7967c -0.4877,-0.6930 -1.6427,-0.6930 -1.6427 -0.6930c -0.8984,-0.0000 -1.5785,0.6032 -1.5785 0.6032c -0.6802,0.6032 -0.8855,1.8866 -0.8855 1.8866h 4.5945 ZM 525.4748,20.1694 ZM 527.7079,16.3450 c 0.8727,0.6674 1.6684,1.0010 1.6684 1.0010c 0.7957,0.3337 1.6170,0.3337 1.6170 0.3337c 0.8470,0.0000 1.2320,-0.2823 1.2320 -0.2823c 0.3850,-0.2823 0.3850,-0.7957 0.3850 -0.7957c 0.0000,-0.3080 -0.2182,-0.5518 -0.2182 -0.5518c -0.2182,-0.2438 -0.5903,-0.4492 -0.5903 -0.4492c -0.3722,-0.2053 -0.8342,-0.3722 -0.8342 -0.3722c -0.4620,-0.1668 -0.9497,-0.3722 -0.9497 -0.3722c -0.5903,-0.2310 -1.1807,-0.5390 -1.1807 -0.5390c -0.5903,-0.3080 -1.0780,-0.7572 -1.0780 -0.7572c -0.4877,-0.4492 -0.7957,-1.0524 -0.7957 -1.0524c -0.3080,-0.6032 -0.3080,-1.3989 -0.3080 -1.3989c 0.0000,-0.8727 0.3465,-1.6170 0.3465 -1.6170c 0.3465,-0.7444 0.9882,-1.2577 0.9882 -1.2577c 0.6417,-0.5133 1.5400,-0.8085 1.5400 -0.8085c 0.8984,-0.2952 2.0021,-0.2952 2.0021 -0.2952c 1.4630,0.0000 2.5667,0.5005 2.5667 0.5005c 1.1037,0.5005 1.9251,1.1165 1.9251 1.1165l -1.6940,2.2587 c -0.6930,-0.5133 -1.3604,-0.7957 -1.3604 -0.7957c -0.6674,-0.2823 -1.3347,-0.2823 -1.3347 -0.2823c -1.4374,-0.0000 -1.4374,1.0010 -1.4374 1.0010c 0.0000,0.3080 0.2053,0.5262 0.2053 0.5262c 0.2053,0.2182 0.5518,0.3978 0.5518 0.3978c 0.3465,0.1797 0.7957,0.3465 0.7957 0.3465c 0.4492,0.1668 0.9369,0.3465 0.9369 0.3465c 0.6160,0.2310 1.2192,0.5262 1.2192 0.5262c 0.6032,0.2952 1.1037,0.7315 1.1037 0.7315c 0.5005,0.4363 0.8085,1.0652 0.8085 1.0652c 0.3080,0.6289 0.3080,1.5015 0.3080 1.5015c 0.0000,0.8727 -0.3337,1.6170 -0.3337 1.6170c -0.3337,0.7444 -1.0010,1.2962 -1.0010 1.2962c -0.6674,0.5518 -1.6427,0.8727 -1.6427 0.8727c -0.9754,0.3208 -2.2587,0.3208 -2.2587 0.3208c -1.2577,-0.0000 -2.5796,-0.4877 -2.5796 -0.4877c -1.3219,-0.4877 -2.2972,-1.2834 -2.2972 -1.2834ZM 536.8455,20.1694 ZM 539.0272,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 546.6761,20.1694 ZM 550.2182,5.5647 c -0.9497,-0.0000 -1.5657,-0.5518 -1.5657 -0.5518c -0.6160,-0.5518 -0.6160,-1.4245 -0.6160 -1.4245c 0.0000,-0.8727 0.6160,-1.4117 0.6160 -1.4117c 0.6160,-0.5390 1.5657,-0.5390 1.5657 -0.5390c 0.9754,0.0000 1.5785,0.5390 1.5785 0.5390c 0.6032,0.5390 0.6032,1.4117 0.6032 1.4117c 0.0000,0.8727 -0.6032,1.4245 -0.6032 1.4245c -0.6032,0.5518 -1.5785,0.5518 -1.5785 0.5518ZM 550.2182,5.5647 ZM 548.3445,7.4384 h 3.7731 v 12.7310 h -3.7731 v -12.7310 ZM 553.7603,20.1694 ZM 555.4286,7.4384 h 3.0801 l 0.2567,1.6427 h 0.1027 c 0.7957,-0.7957 1.6940,-1.3732 1.6940 -1.3732c 0.8984,-0.5775 2.1561,-0.5775 2.1561 -0.5775c 1.3604,0.0000 2.1946,0.5518 2.1946 0.5518c 0.8342,0.5518 1.3219,1.5785 1.3219 1.5785c 0.8470,-0.8727 1.7839,-1.5015 1.7839 -1.5015c 0.9369,-0.6289 2.2202,-0.6289 2.2202 -0.6289c 2.0534,0.0000 3.0159,1.3732 3.0159 1.3732c 0.9625,1.3732 0.9625,3.7603 0.9625 3.7603v 7.9055 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9497,-0.0000 -2.1817,1.2320 -2.1817 1.2320v 8.5986 h -3.7731 v -7.4179 c 0.0000,-1.3860 -0.3722,-1.8994 -0.3722 -1.8994c -0.3722,-0.5133 -1.1935,-0.5133 -1.1935 -0.5133c -0.9754,-0.0000 -2.1561,1.2320 -2.1561 1.2320v 8.5986 h -3.7731 v -12.7310 ZM 575.7572,20.1694 ZM 576.9636,16.6273 c 0.0000,-2.0021 1.6940,-3.1314 1.6940 -3.1314c 1.6940,-1.1294 5.4671,-1.5144 5.4671 -1.5144c -0.0513,-0.8470 -0.5133,-1.3475 -0.5133 -1.3475c -0.4620,-0.5005 -1.4887,-0.5005 -1.4887 -0.5005c -0.8214,-0.0000 -1.6427,0.3080 -1.6427 0.3080c -0.8214,0.3080 -1.7454,0.8470 -1.7454 0.8470l -1.3347,-2.4897 c 1.2320,-0.7444 2.5796,-1.2064 2.5796 -1.2064c 1.3475,-0.4620 2.8619,-0.4620 2.8619 -0.4620c 2.4641,0.0000 3.7603,1.3989 3.7603 1.3989c 1.2962,1.3989 1.2962,4.3506 1.2962 4.3506v 7.2895 h -3.0801 l -0.2823,-1.3090 h -0.0770 c -0.8214,0.7187 -1.7325,1.1679 -1.7325 1.1679c -0.9112,0.4492 -1.9892,0.4492 -1.9892 0.4492c -0.8727,-0.0000 -1.5657,-0.2952 -1.5657 -0.2952c -0.6930,-0.2952 -1.1807,-0.8214 -1.1807 -0.8214c -0.4877,-0.5262 -0.7572,-1.2192 -0.7572 -1.2192c -0.2695,-0.6930 -0.2695,-1.5144 -0.2695 -1.5144ZM 576.9636,16.6273 ZM 580.5570,16.3450 c 0.0000,0.6160 0.3978,0.9112 0.3978 0.9112c 0.3978,0.2952 1.0652,0.2952 1.0652 0.2952c 0.6674,0.0000 1.1294,-0.2823 1.1294 -0.2823c 0.4620,-0.2823 0.9754,-0.7957 0.9754 -0.7957v -2.2331 c -2.0277,0.2823 -2.7977,0.8214 -2.7977 0.8214c -0.7700,0.5390 -0.7700,1.2834 -0.7700 1.2834ZM 589.4636,20.1694 ZM 591.6453,10.3901 h -1.7454 v -2.7977 l 1.9507,-0.1540 l 0.4363,-3.3881 h 3.1314 v 3.3881 h 3.0544 v 2.9517 h -3.0544 v 5.1078 c 0.0000,1.0780 0.4492,1.5529 0.4492 1.5529c 0.4492,0.4748 1.1935,0.4748 1.1935 0.4748c 0.3080,0.0000 0.6289,-0.0770 0.6289 -0.0770c 0.3208,-0.0770 0.5775,-0.1797 0.5775 -0.1797l 0.5903,2.7464 c -0.5133,0.1540 -1.2064,0.3080 -1.2064 0.3080c -0.6930,0.1540 -1.6170,0.1540 -1.6170 0.1540c -1.1807,-0.0000 -2.0149,-0.3593 -2.0149 -0.3593c -0.8342,-0.3593 -1.3604,-1.0010 -1.3604 -1.0010c -0.5262,-0.6417 -0.7700,-1.5529 -0.7700 -1.5529c -0.2438,-0.9112 -0.2438,-2.0149 -0.2438 -2.0149v -5.1591 ZM 599.0375,20.1694 ZM 599.9615,13.8039 c 0.0000,-1.5914 0.5133,-2.8362 0.5133 -2.8362c 0.5133,-1.2449 1.3732,-2.0919 1.3732 -2.0919c 0.8599,-0.8470 1.9892,-1.2962 1.9892 -1.2962c 1.1294,-0.4492 2.3357,-0.4492 2.3357 -0.4492c 1.2064,0.0000 2.3229,0.4492 2.3229 0.4492c 1.1165,0.4492 1.9764,1.2962 1.9764 1.2962c 0.8599,0.8470 1.3732,2.0919 1.3732 2.0919c 0.5133,1.2449 0.5133,2.8362 0.5133 2.8362c 0.0000,1.5914 -0.5133,2.8362 -0.5133 2.8362c -0.5133,1.2449 -1.3732,2.0919 -1.3732 2.0919c -0.8599,0.8470 -1.9764,1.2962 -1.9764 1.2962c -1.1165,0.4492 -2.3229,0.4492 -2.3229 0.4492c -1.2064,-0.0000 -2.3357,-0.4492 -2.3357 -0.4492c -1.1294,-0.4492 -1.9892,-1.2962 -1.9892 -1.2962c -0.8599,-0.8470 -1.3732,-2.0919 -1.3732 -2.0919c -0.5133,-1.2449 -0.5133,-2.8362 -0.5133 -2.8362ZM 599.9615,13.8039 ZM 603.8373,13.8039 c 0.0000,1.6684 0.5775,2.6437 0.5775 2.6437c 0.5775,0.9754 1.7582,0.9754 1.7582 0.9754c 1.1550,0.0000 1.7454,-0.9754 1.7454 -0.9754c 0.5903,-0.9754 0.5903,-2.6437 0.5903 -2.6437c 0.0000,-1.6684 -0.5903,-2.6437 -0.5903 -2.6437c -0.5903,-0.9754 -1.7454,-0.9754 -1.7454 -0.9754c -1.1807,-0.0000 -1.7582,0.9754 -1.7582 0.9754c -0.5775,0.9754 -0.5775,2.6437 -0.5775 2.6437ZM 613.2829,20.1694 ZM 614.9512,7.4384 h 3.0801 l 0.2567,2.2331 h 0.1027 c 0.6930,-1.3090 1.6684,-1.9251 1.6684 -1.9251c 0.9754,-0.6160 1.9507,-0.6160 1.9507 -0.6160c 0.5390,0.0000 0.8855,0.0642 0.8855 0.0642c 0.3465,0.0642 0.6289,0.1925 0.6289 0.1925l -0.6160,3.2598 c -0.3593,-0.1027 -0.6674,-0.1540 -0.6674 -0.1540c -0.3080,-0.0513 -0.7187,-0.0513 -0.7187 -0.0513c -0.7187,-0.0000 -1.5015,0.5133 -1.5015 0.5133c -0.7829,0.5133 -1.2962,1.8224 -1.2962 1.8224v 7.3922 h -3.7731 v -12.7310 ZM 623.4985,20.1694 ZM 624.7305,23.7885 c 1.4374,-2.5154 2.0791,-5.2618 2.0791 -5.2618c 0.6417,-2.7464 0.6417,-5.4928 0.6417 -5.4928c 0.0000,-2.7464 -0.6417,-5.4928 -0.6417 -5.4928c -0.6417,-2.7464 -2.0791,-5.2618 -2.0791 -5.2618l 2.3614,-0.9754 c 1.6170,2.6437 2.5026,5.4928 2.5026 5.4928c 0.8855,2.8491 0.8855,6.2372 0.8855 6.2372c 0.0000,3.3881 -0.8855,6.2372 -0.8855 6.2372c -0.8855,2.8491 -2.5026,5.4928 -2.5026 5.4928l -2.3614,-0.9754 h 0.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 82.5714,540.0000 h 632.2437 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 82.5714,441.4000 h 632.2437 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 82.5714,342.8000 h 632.2437 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 82.5714,244.2000 h 632.2437 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 82.5714,145.6000 h 632.2437 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(211,211,211)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-dashoffset="0.0" stroke-linecap="butt" stroke-miterlimit="10.0" stroke-dasharray="4.999999999999998,4.999999999999998"><path d="M 82.5714,47.0000 h 632.2437 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip1"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip1)"><path d="M 97.5714,441.4000 v -394.4000 h 95.3739 v 394.4000 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip2"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip2)"><path d="M 192.9454,441.4000 v -394.4000 h 95.3739 v 394.4000 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip3"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip3)"><path d="M 288.3193,441.4000 v -394.4000 h 95.3739 v 394.4000 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip4"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip4)"><path d="M 97.5714,441.4000 v -394.4000 h 95.3739 v 394.4000 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip5"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip5)"><path d="M 192.9454,441.4000 v -394.4000 h 95.3739 v 394.4000 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip6"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip6)"><path d="M 288.3193,441.4000 v -394.4000 h 95.3739 v 394.4000 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip7"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip7)"><path d="M 413.6933,441.4000 v -91.8157 h 95.3739 v 91.8157 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip8"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip8)"><path d="M 509.0672,441.4000 v -30.1822 h 95.3739 v 30.1822 Z"/></g></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip9"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip9)"><path d="M 604.4412,441.4000 v 61.6290 h 95.3739 v -61.6290 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip10"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip10)"><path d="M 413.6933,441.4000 v -91.8157 h 95.3739 v 91.8157 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip11"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip11)"><path d="M 509.0672,441.4000 v -30.1822 h 95.3739 v 30.1822 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="myClip12"><path d="M 82.5714,47.0000 v 493.0000 h 632.2437 v -493.0000 Z"/></clipPath></defs><g clip-path="url(#myClip12)"><path d="M 604.4412,441.4000 v 61.6290 h 95.3739 v -61.6290 Z"/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 82.5714,540.0000 v -493.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,540.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,530.1400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,520.2800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,510.4200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,500.5600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,490.7000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,480.8400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,470.9800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,461.1200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,451.2600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,441.4000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,431.5400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,421.6800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,411.8200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,401.9600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,392.1000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,382.2400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,372.3800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,362.5200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,352.6600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,342.8000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,332.9400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,323.0800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,313.2200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,303.3600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,293.5000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,283.6400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,273.7800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,263.9200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,254.0600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,244.2000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,234.3400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,224.4800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,214.6200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,204.7600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,194.9000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,185.0400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,175.1800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,165.3200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,155.4600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,145.6000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,135.7400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,125.8800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,116.0200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,106.1600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,96.3000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,86.4400 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,76.5800 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,66.7200 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,56.8600 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,47.0000 h 2.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,540.0000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,441.4000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,342.8000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,244.2000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,145.6000 h 5.0000 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.5714,47.0000 h 5.0000 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.3950,544.8235 ZM 39.9979,540.6765 h 3.3824 v 0.9265 h -3.3824 v -0.9265 ZM 43.9685,544.8235 ZM 44.5567,544.1029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 51.2773,544.8235 ZM 52.2332,542.9265 c 0.4118,0.4265 0.9779,0.7500 0.9779 0.7500c 0.5662,0.3235 1.3897,0.3235 1.3897 0.3235c 0.4265,0.0000 0.8015,-0.1544 0.8015 -0.1544c 0.3750,-0.1544 0.6544,-0.4338 0.6544 -0.4338c 0.2794,-0.2794 0.4412,-0.6765 0.4412 -0.6765c 0.1618,-0.3971 0.1618,-0.8824 0.1618 -0.8824c 0.0000,-0.9706 -0.5441,-1.5147 -0.5441 -1.5147c -0.5441,-0.5441 -1.4559,-0.5441 -1.4559 -0.5441c -0.4853,-0.0000 -0.8309,0.1471 -0.8309 0.1471c -0.3456,0.1471 -0.7721,0.4265 -0.7721 0.4265l -0.6471,-0.4118 l 0.3088,-4.5147 h 4.6912 v 1.0441 h -3.6324 l -0.2500,2.7794 c 0.3382,-0.1765 0.6765,-0.2794 0.6765 -0.2794c 0.3382,-0.1029 0.7647,-0.1029 0.7647 -0.1029c 0.6029,0.0000 1.1324,0.1765 1.1324 0.1765c 0.5294,0.1765 0.9265,0.5368 0.9265 0.5368c 0.3971,0.3603 0.6250,0.9118 0.6250 0.9118c 0.2279,0.5515 0.2279,1.3162 0.2279 1.3162c 0.0000,0.7647 -0.2647,1.3529 -0.2647 1.3529c -0.2647,0.5882 -0.7059,0.9926 -0.7059 0.9926c -0.4412,0.4044 -1.0074,0.6176 -1.0074 0.6176c -0.5662,0.2132 -1.1838,0.2132 -1.1838 0.2132c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8382,-0.2868 -0.8382 -0.2868c -0.3750,-0.1765 -0.6765,-0.4044 -0.6765 -0.4044c -0.3015,-0.2279 -0.5368,-0.4779 -0.5368 -0.4779ZM 61.5567,544.8235 ZM 64.2626,541.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 64.2626,541.0882 ZM 64.2626,540.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 64.2626,540.3382 ZM 64.5273,545.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 64.5273,545.0000 ZM 70.9832,545.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 70.9832,545.0000 ZM 70.9832,544.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 51.3214,446.2235 ZM 54.9832,446.4000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 54.9832,446.4000 ZM 54.9832,445.4294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 61.6008,446.2235 ZM 64.3067,442.4882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 64.3067,442.4882 ZM 64.3067,441.7382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 64.3067,441.7382 ZM 64.5714,446.4000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 64.5714,446.4000 ZM 71.0273,446.4000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 71.0273,446.4000 ZM 71.0273,445.6500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 43.8950,347.6235 ZM 44.4832,346.9029 c 1.0588,-1.0588 1.8824,-1.9118 1.8824 -1.9118c 0.8235,-0.8529 1.3824,-1.5809 1.3824 -1.5809c 0.5588,-0.7279 0.8529,-1.3382 0.8529 -1.3382c 0.2941,-0.6103 0.2941,-1.1838 0.2941 -1.1838c 0.0000,-0.8088 -0.4412,-1.3235 -0.4412 -1.3235c -0.4412,-0.5147 -1.3382,-0.5147 -1.3382 -0.5147c -0.5882,-0.0000 -1.0882,0.3309 -1.0882 0.3309c -0.5000,0.3309 -0.9118,0.8015 -0.9118 0.8015l -0.6912,-0.6912 c 0.5882,-0.6471 1.2500,-1.0368 1.2500 -1.0368c 0.6618,-0.3897 1.5882,-0.3897 1.5882 -0.3897c 1.3088,0.0000 2.0588,0.7574 2.0588 0.7574c 0.7500,0.7574 0.7500,2.0074 0.7500 2.0074c 0.0000,0.6618 -0.2868,1.3309 -0.2868 1.3309c -0.2868,0.6691 -0.7941,1.3824 -0.7941 1.3824c -0.5074,0.7132 -1.2059,1.4853 -1.2059 1.4853c -0.6985,0.7721 -1.5368,1.6397 -1.5368 1.6397c 0.3824,-0.0294 0.7941,-0.0588 0.7941 -0.0588c 0.4118,-0.0294 0.7794,-0.0294 0.7794 -0.0294h 2.7206 v 1.0441 h -6.0588 v -0.7206 ZM 51.2038,347.6235 ZM 52.1597,345.7265 c 0.4118,0.4265 0.9779,0.7500 0.9779 0.7500c 0.5662,0.3235 1.3897,0.3235 1.3897 0.3235c 0.4265,0.0000 0.8015,-0.1544 0.8015 -0.1544c 0.3750,-0.1544 0.6544,-0.4338 0.6544 -0.4338c 0.2794,-0.2794 0.4412,-0.6765 0.4412 -0.6765c 0.1618,-0.3971 0.1618,-0.8824 0.1618 -0.8824c 0.0000,-0.9706 -0.5441,-1.5147 -0.5441 -1.5147c -0.5441,-0.5441 -1.4559,-0.5441 -1.4559 -0.5441c -0.4853,-0.0000 -0.8309,0.1471 -0.8309 0.1471c -0.3456,0.1471 -0.7721,0.4265 -0.7721 0.4265l -0.6471,-0.4118 l 0.3088,-4.5147 h 4.6912 v 1.0441 h -3.6324 l -0.2500,2.7794 c 0.3382,-0.1765 0.6765,-0.2794 0.6765 -0.2794c 0.3382,-0.1029 0.7647,-0.1029 0.7647 -0.1029c 0.6029,0.0000 1.1324,0.1765 1.1324 0.1765c 0.5294,0.1765 0.9265,0.5368 0.9265 0.5368c 0.3971,0.3603 0.6250,0.9118 0.6250 0.9118c 0.2279,0.5515 0.2279,1.3162 0.2279 1.3162c 0.0000,0.7647 -0.2647,1.3529 -0.2647 1.3529c -0.2647,0.5882 -0.7059,0.9926 -0.7059 0.9926c -0.4412,0.4044 -1.0074,0.6176 -1.0074 0.6176c -0.5662,0.2132 -1.1838,0.2132 -1.1838 0.2132c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8382,-0.2868 -0.8382 -0.2868c -0.3750,-0.1765 -0.6765,-0.4044 -0.6765 -0.4044c -0.3015,-0.2279 -0.5368,-0.4779 -0.5368 -0.4779ZM 61.4832,347.6235 ZM 64.1891,343.8882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 64.1891,343.8882 ZM 64.1891,343.1382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 64.1891,343.1382 ZM 64.4538,347.8000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 64.4538,347.8000 ZM 70.9097,347.8000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 70.9097,347.8000 ZM 70.9097,347.0500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 43.7332,249.0235 ZM 44.6891,247.1265 c 0.4118,0.4265 0.9779,0.7500 0.9779 0.7500c 0.5662,0.3235 1.3897,0.3235 1.3897 0.3235c 0.4265,0.0000 0.8015,-0.1544 0.8015 -0.1544c 0.3750,-0.1544 0.6544,-0.4338 0.6544 -0.4338c 0.2794,-0.2794 0.4412,-0.6765 0.4412 -0.6765c 0.1618,-0.3971 0.1618,-0.8824 0.1618 -0.8824c 0.0000,-0.9706 -0.5441,-1.5147 -0.5441 -1.5147c -0.5441,-0.5441 -1.4559,-0.5441 -1.4559 -0.5441c -0.4853,-0.0000 -0.8309,0.1471 -0.8309 0.1471c -0.3456,0.1471 -0.7721,0.4265 -0.7721 0.4265l -0.6471,-0.4118 l 0.3088,-4.5147 h 4.6912 v 1.0441 h -3.6324 l -0.2500,2.7794 c 0.3382,-0.1765 0.6765,-0.2794 0.6765 -0.2794c 0.3382,-0.1029 0.7647,-0.1029 0.7647 -0.1029c 0.6029,0.0000 1.1324,0.1765 1.1324 0.1765c 0.5294,0.1765 0.9265,0.5368 0.9265 0.5368c 0.3971,0.3603 0.6250,0.9118 0.6250 0.9118c 0.2279,0.5515 0.2279,1.3162 0.2279 1.3162c 0.0000,0.7647 -0.2647,1.3529 -0.2647 1.3529c -0.2647,0.5882 -0.7059,0.9926 -0.7059 0.9926c -0.4412,0.4044 -1.0074,0.6176 -1.0074 0.6176c -0.5662,0.2132 -1.1838,0.2132 -1.1838 0.2132c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8382,-0.2868 -0.8382 -0.2868c -0.3750,-0.1765 -0.6765,-0.4044 -0.6765 -0.4044c -0.3015,-0.2279 -0.5368,-0.4779 -0.5368 -0.4779ZM 51.0420,249.0235 ZM 54.7038,249.2000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 54.7038,249.2000 ZM 54.7038,248.2294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 61.3214,249.0235 ZM 64.0273,245.2882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 64.0273,245.2882 ZM 64.0273,244.5382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 64.0273,244.5382 ZM 64.2920,249.2000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 64.2920,249.2000 ZM 70.7479,249.2000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 70.7479,249.2000 ZM 70.7479,248.4500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 44.0126,150.4235 ZM 46.6155,150.4235 c 0.0588,-1.3235 0.2353,-2.4265 0.2353 -2.4265c 0.1765,-1.1029 0.4926,-2.0956 0.4926 -2.0956c 0.3162,-0.9926 0.8088,-1.9191 0.8088 -1.9191c 0.4926,-0.9265 1.1838,-1.8971 1.1838 -1.8971h -4.6765 v -1.0441 h 6.0441 v 0.7500 c -0.8382,1.0588 -1.3603,2.0294 -1.3603 2.0294c -0.5221,0.9706 -0.8309,1.9779 -0.8309 1.9779c -0.3088,1.0074 -0.4485,2.1324 -0.4485 2.1324c -0.1397,1.1250 -0.1985,2.4926 -0.1985 2.4926h -1.2500 h 0.0000 ZM 51.3214,150.4235 ZM 52.2773,148.5265 c 0.4118,0.4265 0.9779,0.7500 0.9779 0.7500c 0.5662,0.3235 1.3897,0.3235 1.3897 0.3235c 0.4265,0.0000 0.8015,-0.1544 0.8015 -0.1544c 0.3750,-0.1544 0.6544,-0.4338 0.6544 -0.4338c 0.2794,-0.2794 0.4412,-0.6765 0.4412 -0.6765c 0.1618,-0.3971 0.1618,-0.8824 0.1618 -0.8824c 0.0000,-0.9706 -0.5441,-1.5147 -0.5441 -1.5147c -0.5441,-0.5441 -1.4559,-0.5441 -1.4559 -0.5441c -0.4853,-0.0000 -0.8309,0.1471 -0.8309 0.1471c -0.3456,0.1471 -0.7721,0.4265 -0.7721 0.4265l -0.6471,-0.4118 l 0.3088,-4.5147 h 4.6912 v 1.0441 h -3.6324 l -0.2500,2.7794 c 0.3382,-0.1765 0.6765,-0.2794 0.6765 -0.2794c 0.3382,-0.1029 0.7647,-0.1029 0.7647 -0.1029c 0.6029,0.0000 1.1324,0.1765 1.1324 0.1765c 0.5294,0.1765 0.9265,0.5368 0.9265 0.5368c 0.3971,0.3603 0.6250,0.9118 0.6250 0.9118c 0.2279,0.5515 0.2279,1.3162 0.2279 1.3162c 0.0000,0.7647 -0.2647,1.3529 -0.2647 1.3529c -0.2647,0.5882 -0.7059,0.9926 -0.7059 0.9926c -0.4412,0.4044 -1.0074,0.6176 -1.0074 0.6176c -0.5662,0.2132 -1.1838,0.2132 -1.1838 0.2132c -0.5588,-0.0000 -1.0221,-0.1103 -1.0221 -0.1103c -0.4632,-0.1103 -0.8382,-0.2868 -0.8382 -0.2868c -0.3750,-0.1765 -0.6765,-0.4044 -0.6765 -0.4044c -0.3015,-0.2279 -0.5368,-0.4779 -0.5368 -0.4779ZM 61.6008,150.4235 ZM 64.3067,146.6882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 64.3067,146.6882 ZM 64.3067,145.9382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 64.3067,145.9382 ZM 64.5714,150.6000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 64.5714,150.6000 ZM 71.0273,150.6000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 71.0273,150.6000 ZM 71.0273,149.8500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 37.2185,51.8235 ZM 38.3803,50.8235 h 2.1471 v -6.9118 h -1.7059 v -0.7794 c 0.6471,-0.1176 1.1250,-0.2868 1.1250 -0.2868c 0.4779,-0.1691 0.8603,-0.4044 0.8603 -0.4044h 0.9265 v 8.3824 h 1.9412 v 1.0000 h -5.2941 v -1.0000 ZM 44.5273,51.8235 ZM 48.1891,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 48.1891,52.0000 ZM 48.1891,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 51.8361,51.8235 ZM 55.4979,52.0000 c -1.4265,-0.0000 -2.2206,-1.2647 -2.2206 -1.2647c -0.7941,-1.2647 -0.7941,-3.6324 -0.7941 -3.6324c 0.0000,-2.3676 0.7941,-3.6029 0.7941 -3.6029c 0.7941,-1.2353 2.2206,-1.2353 2.2206 -1.2353c 1.4118,0.0000 2.2059,1.2353 2.2059 1.2353c 0.7941,1.2353 0.7941,3.6029 0.7941 3.6029c 0.0000,2.3676 -0.7941,3.6324 -0.7941 3.6324c -0.7941,1.2647 -2.2059,1.2647 -2.2059 1.2647ZM 55.4979,52.0000 ZM 55.4979,51.0294 c 0.4118,0.0000 0.7426,-0.2279 0.7426 -0.2279c 0.3309,-0.2279 0.5735,-0.7059 0.5735 -0.7059c 0.2426,-0.4779 0.3750,-1.2206 0.3750 -1.2206c 0.1324,-0.7426 0.1324,-1.7721 0.1324 -1.7721c 0.0000,-1.0294 -0.1324,-1.7647 -0.1324 -1.7647c -0.1324,-0.7353 -0.3750,-1.1985 -0.3750 -1.1985c -0.2426,-0.4632 -0.5735,-0.6838 -0.5735 -0.6838c -0.3309,-0.2206 -0.7426,-0.2206 -0.7426 -0.2206c -0.4118,-0.0000 -0.7500,0.2206 -0.7500 0.2206c -0.3382,0.2206 -0.5809,0.6838 -0.5809 0.6838c -0.2426,0.4632 -0.3750,1.1985 -0.3750 1.1985c -0.1324,0.7353 -0.1324,1.7647 -0.1324 1.7647c 0.0000,2.0588 0.5074,2.9926 0.5074 2.9926c 0.5074,0.9338 1.3309,0.9338 1.3309 0.9338ZM 62.1155,51.8235 ZM 64.8214,48.0882 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 64.8214,48.0882 ZM 64.8214,47.3382 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809ZM 64.8214,47.3382 ZM 65.0861,52.0000 l 5.3235,-10.0000 h 0.8235 l -5.3235,10.0000 h -0.8235 ZM 65.0861,52.0000 ZM 71.5420,52.0000 c -1.0000,-0.0000 -1.5956,-0.7941 -1.5956 -0.7941c -0.5956,-0.7941 -0.5956,-2.2647 -0.5956 -2.2647c 0.0000,-1.4559 0.5956,-2.2426 0.5956 -2.2426c 0.5956,-0.7868 1.5956,-0.7868 1.5956 -0.7868c 0.9853,0.0000 1.5882,0.7868 1.5882 0.7868c 0.6029,0.7868 0.6029,2.2426 0.6029 2.2426c 0.0000,1.4706 -0.6029,2.2647 -0.6029 2.2647c -0.6029,0.7941 -1.5882,0.7941 -1.5882 0.7941ZM 71.5420,52.0000 ZM 71.5420,51.2500 c 0.5588,0.0000 0.9118,-0.5809 0.9118 -0.5809c 0.3529,-0.5809 0.3529,-1.7279 0.3529 -1.7279c 0.0000,-1.1471 -0.3529,-1.7132 -0.3529 -1.7132c -0.3529,-0.5662 -0.9118,-0.5662 -0.9118 -0.5662c -0.5735,-0.0000 -0.9265,0.5662 -0.9265 0.5662c -0.3529,0.5662 -0.3529,1.7132 -0.3529 1.7132c 0.0000,1.1471 0.3529,1.7279 0.3529 1.7279c 0.3529,0.5809 0.9265,0.5809 0.9265 0.5809Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9999999999999997" fill="rgb(0,0,0)" stroke-linecap="square" stroke-miterlimit="10.0"><path d="M 82.5714,540.0000 h 632.2437 "/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 168.0609,566.0000 ZM 169.2206,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 175.1029,566.0000 ZM 176.7164,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 180.7836,566.0000 ZM 182.1618,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 186.4475,566.0000 ZM 187.2206,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 187.2206,561.9328 ZM 192.9349,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 194.5483,566.0000 ZM 195.5231,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 195.5231,563.8824 ZM 196.8845,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 203.1534,566.0000 ZM 204.5315,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 217.0861,566.0000 ZM 218.4643,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 221.3718,566.0000 ZM 222.1954,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 229.2206,566.0000 ZM 232.8172,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 234.3130,566.0000 ZM 238.4979,566.2017 c -1.6303,-0.0000 -2.5378,-1.4454 -2.5378 -1.4454c -0.9076,-1.4454 -0.9076,-4.1513 -0.9076 -4.1513c 0.0000,-2.7059 0.9076,-4.1176 0.9076 -4.1176c 0.9076,-1.4118 2.5378,-1.4118 2.5378 -1.4118c 1.6134,0.0000 2.5210,1.4118 2.5210 1.4118c 0.9076,1.4118 0.9076,4.1176 0.9076 4.1176c 0.0000,2.7059 -0.9076,4.1513 -0.9076 4.1513c -0.9076,1.4454 -2.5210,1.4454 -2.5210 1.4454ZM 238.4979,566.2017 ZM 238.4979,565.0924 c 0.4706,0.0000 0.8487,-0.2605 0.8487 -0.2605c 0.3782,-0.2605 0.6555,-0.8067 0.6555 -0.8067c 0.2773,-0.5462 0.4286,-1.3950 0.4286 -1.3950c 0.1513,-0.8487 0.1513,-2.0252 0.1513 -2.0252c 0.0000,-1.1765 -0.1513,-2.0168 -0.1513 -2.0168c -0.1513,-0.8403 -0.4286,-1.3697 -0.4286 -1.3697c -0.2773,-0.5294 -0.6555,-0.7815 -0.6555 -0.7815c -0.3782,-0.2521 -0.8487,-0.2521 -0.8487 -0.2521c -0.4706,-0.0000 -0.8571,0.2521 -0.8571 0.2521c -0.3866,0.2521 -0.6639,0.7815 -0.6639 0.7815c -0.2773,0.5294 -0.4286,1.3697 -0.4286 1.3697c -0.1513,0.8403 -0.1513,2.0168 -0.1513 2.0168c 0.0000,2.3529 0.5798,3.4202 0.5798 3.4202c 0.5798,1.0672 1.5210,1.0672 1.5210 1.0672ZM 242.6660,566.0000 ZM 243.3046,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 247.7584,566.0000 ZM 251.3550,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 252.8508,566.0000 ZM 255.9433,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 255.9433,561.7311 ZM 255.9433,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 255.9433,560.8739 ZM 256.2458,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 256.2458,566.2017 ZM 263.6239,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 263.6239,566.2017 ZM 263.6239,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 266.6996,566.0000 ZM 267.3382,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 271.7920,566.0000 ZM 275.3887,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 276.8845,566.0000 ZM 278.2626,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 278.2626,554.0336 ZM 279.6408,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 285.9769,566.0000 ZM 286.9517,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 286.9517,563.8824 ZM 288.3130,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 294.5819,566.0000 ZM 295.7416,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 301.6239,566.0000 ZM 302.3971,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 302.3971,561.9328 ZM 308.1113,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 309.9601,566.0000 ZM 310.5987,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 481.5693,566.0000 ZM 482.7290,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 488.6113,566.0000 ZM 490.2248,558.9580 h -1.2101 v -1.0420 l 1.2773,-0.0840 l 0.1681,-2.2857 h 1.1597 v 2.2857 h 2.2017 v 1.1261 h -2.2017 v 4.5378 c 0.0000,0.7563 0.2773,1.1681 0.2773 1.1681c 0.2773,0.4118 0.9832,0.4118 0.9832 0.4118c 0.2185,0.0000 0.4706,-0.0672 0.4706 -0.0672c 0.2521,-0.0672 0.4538,-0.1513 0.4538 -0.1513l 0.2689,1.0420 c -0.3361,0.1176 -0.7311,0.2101 -0.7311 0.2101c -0.3950,0.0924 -0.7815,0.0924 -0.7815 0.0924c -0.6555,-0.0000 -1.1008,-0.2017 -1.1008 -0.2017c -0.4454,-0.2017 -0.7227,-0.5546 -0.7227 -0.5546c -0.2773,-0.3529 -0.3950,-0.8571 -0.3950 -0.8571c -0.1176,-0.5042 -0.1176,-1.1092 -0.1176 -1.1092v -4.5210 ZM 494.2920,566.0000 ZM 495.6702,557.8319 h 1.1429 l 0.1176,1.4790 h 0.0504 c 0.4202,-0.7731 1.0168,-1.2269 1.0168 -1.2269c 0.5966,-0.4538 1.3025,-0.4538 1.3025 -0.4538c 0.4874,0.0000 0.8739,0.1681 0.8739 0.1681l -0.2689,1.2101 c -0.2017,-0.0672 -0.3697,-0.1008 -0.3697 -0.1008c -0.1681,-0.0336 -0.4202,-0.0336 -0.4202 -0.0336c -0.5210,-0.0000 -1.0840,0.4202 -1.0840 0.4202c -0.5630,0.4202 -0.9832,1.4622 -0.9832 1.4622v 5.2437 h -1.3782 v -8.1681 ZM 499.9559,566.0000 ZM 500.7290,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 500.7290,561.9328 ZM 506.4433,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 508.0567,566.0000 ZM 509.0315,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 509.0315,563.8824 ZM 510.3929,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 516.6618,566.0000 ZM 518.0399,557.8319 h 1.1429 l 0.1176,1.1765 h 0.0504 c 0.5378,-0.5882 1.1681,-0.9832 1.1681 -0.9832c 0.6303,-0.3950 1.3697,-0.3950 1.3697 -0.3950c 0.9412,0.0000 1.4706,0.4118 1.4706 0.4118c 0.5294,0.4118 0.7815,1.1513 0.7815 1.1513c 0.6387,-0.7059 1.2857,-1.1345 1.2857 -1.1345c 0.6471,-0.4286 1.4034,-0.4286 1.4034 -0.4286c 1.2605,0.0000 1.8739,0.8067 1.8739 0.8067c 0.6134,0.8067 0.6134,2.3866 0.6134 2.3866v 5.1765 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1429,-0.5126 -1.1429 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -4.9916 c 0.0000,-1.1597 -0.3697,-1.6723 -0.3697 -1.6723c -0.3697,-0.5126 -1.1597,-0.5126 -1.1597 -0.5126c -0.9244,-0.0000 -2.0504,1.2605 -2.0504 1.2605v 5.9160 h -1.3782 v -8.1681 ZM 530.5945,566.0000 ZM 531.9727,554.0336 h 1.3782 v 10.4202 c 0.0000,0.3361 0.1176,0.4706 0.1176 0.4706c 0.1176,0.1345 0.2689,0.1345 0.2689 0.1345h 0.1261 c 0.0000,0.0000 0.1765,-0.0336 0.1765 -0.0336l 0.1849,1.0420 c -0.1345,0.0672 -0.3193,0.1008 -0.3193 0.1008c -0.1849,0.0336 -0.4706,0.0336 -0.4706 0.0336c -0.7899,-0.0000 -1.1261,-0.4706 -1.1261 -0.4706c -0.3361,-0.4706 -0.3361,-1.3782 -0.3361 -1.3782v -10.3193 ZM 534.8803,566.0000 ZM 535.7038,568.2521 l 0.3025,0.0756 c 0.0000,0.0000 0.3193,0.0420 0.3193 0.0420c 0.7059,0.0000 1.1513,-0.4958 1.1513 -0.4958c 0.4454,-0.4958 0.6975,-1.2521 0.6975 -1.2521l 0.1849,-0.6050 l -3.2773,-8.1849 h 1.4286 l 1.6639,4.5210 c 0.1849,0.5378 0.3950,1.1345 0.3950 1.1345c 0.2101,0.5966 0.3950,1.1681 0.3950 1.1681h 0.0672 c 0.1849,-0.5546 0.3529,-1.1597 0.3529 -1.1597c 0.1681,-0.6050 0.3361,-1.1429 0.3361 -1.1429l 1.4622,-4.5210 h 1.3445 l -3.0756,8.8403 c -0.2185,0.6050 -0.4874,1.1261 -0.4874 1.1261c -0.2689,0.5210 -0.6387,0.8992 -0.6387 0.8992c -0.3697,0.3782 -0.8403,0.5966 -0.8403 0.5966c -0.4706,0.2185 -1.0924,0.2185 -1.0924 0.2185c -0.2857,-0.0000 -0.5210,-0.0420 -0.5210 -0.0420c -0.2353,-0.0420 -0.4370,-0.1261 -0.4370 -0.1261l 0.2689,-1.0924 h 0.0000 ZM 542.7290,566.0000 ZM 546.3256,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 547.8214,566.0000 ZM 549.1492,564.8571 h 2.4538 v -7.8992 h -1.9496 v -0.8908 c 0.7395,-0.1345 1.2857,-0.3277 1.2857 -0.3277c 0.5462,-0.1933 0.9832,-0.4622 0.9832 -0.4622h 1.0588 v 9.5798 h 2.2185 v 1.1429 h -6.0504 v -1.1429 ZM 556.1744,566.0000 ZM 556.8130,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 561.2668,566.0000 ZM 564.8634,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 566.3592,566.0000 ZM 569.4517,561.7311 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 569.4517,561.7311 ZM 569.4517,560.8739 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 569.4517,560.8739 ZM 569.7542,566.2017 l 6.0840,-11.4286 h 0.9412 l -6.0840,11.4286 h -0.9412 ZM 569.7542,566.2017 ZM 577.1324,566.2017 c -1.1429,-0.0000 -1.8235,-0.9076 -1.8235 -0.9076c -0.6807,-0.9076 -0.6807,-2.5882 -0.6807 -2.5882c 0.0000,-1.6639 0.6807,-2.5630 0.6807 -2.5630c 0.6807,-0.8992 1.8235,-0.8992 1.8235 -0.8992c 1.1261,0.0000 1.8151,0.8992 1.8151 0.8992c 0.6891,0.8992 0.6891,2.5630 0.6891 2.5630c 0.0000,1.6807 -0.6891,2.5882 -0.6891 2.5882c -0.6891,0.9076 -1.8151,0.9076 -1.8151 0.9076ZM 577.1324,566.2017 ZM 577.1324,565.3445 c 0.6387,0.0000 1.0420,-0.6639 1.0420 -0.6639c 0.4034,-0.6639 0.4034,-1.9748 0.4034 -1.9748c 0.0000,-1.3109 -0.4034,-1.9580 -0.4034 -1.9580c -0.4034,-0.6471 -1.0420,-0.6471 -1.0420 -0.6471c -0.6555,-0.0000 -1.0588,0.6471 -1.0588 0.6471c -0.4034,0.6471 -0.4034,1.9580 -0.4034 1.9580c 0.0000,1.3109 0.4034,1.9748 0.4034 1.9748c 0.4034,0.6639 1.0588,0.6639 1.0588 0.6639ZM 580.2080,566.0000 ZM 580.8466,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 ZM 585.3004,566.0000 ZM 588.8971,568.9580 c -1.0420,-1.6807 -1.6303,-3.5462 -1.6303 -3.5462c -0.5882,-1.8655 -0.5882,-4.0840 -0.5882 -4.0840c 0.0000,-2.2185 0.5882,-4.0756 0.5882 -4.0756c 0.5882,-1.8571 1.6303,-3.5546 1.6303 -3.5546l 0.8571,0.4034 c -0.9748,1.6134 -1.4538,3.4538 -1.4538 3.4538c -0.4790,1.8403 -0.4790,3.7731 -0.4790 3.7731c 0.0000,1.9328 0.4790,3.7731 0.4790 3.7731c 0.4790,1.8403 1.4538,3.4538 1.4538 3.4538l -0.8571,0.4034 h 0.0000 ZM 590.3929,566.0000 ZM 591.0819,561.2605 h 3.8655 v 1.0588 h -3.8655 v -1.0588 ZM 595.6197,566.0000 ZM 596.9979,554.0336 h 1.3782 v 3.2605 l -0.0336,1.4790 c 0.5546,-0.4874 1.2101,-0.8151 1.2101 -0.8151c 0.6555,-0.3277 1.3445,-0.3277 1.3445 -0.3277c 0.7899,0.0000 1.3950,0.2941 1.3950 0.2941c 0.6050,0.2941 1.0168,0.8403 1.0168 0.8403c 0.4118,0.5462 0.6218,1.3109 0.6218 1.3109c 0.2101,0.7647 0.2101,1.7059 0.2101 1.7059c 0.0000,1.0420 -0.2857,1.8655 -0.2857 1.8655c -0.2857,0.8235 -0.7731,1.3950 -0.7731 1.3950c -0.4874,0.5714 -1.1261,0.8655 -1.1261 0.8655c -0.6387,0.2941 -1.3445,0.2941 -1.3445 0.2941c -0.5714,-0.0000 -1.1849,-0.2605 -1.1849 -0.2605c -0.6134,-0.2605 -1.1513,-0.7479 -1.1513 -0.7479h -0.0504 l -0.1176,0.8067 h -1.1092 v -11.9664 ZM 596.9979,554.0336 ZM 598.3761,564.1849 c 0.5378,0.4706 1.0672,0.6639 1.0672 0.6639c 0.5294,0.1933 0.9328,0.1933 0.9328 0.1933c 0.5042,0.0000 0.9328,-0.2269 0.9328 -0.2269c 0.4286,-0.2269 0.7395,-0.6387 0.7395 -0.6387c 0.3109,-0.4118 0.4874,-1.0168 0.4874 -1.0168c 0.1765,-0.6050 0.1765,-1.3613 0.1765 -1.3613c 0.0000,-0.6723 -0.1176,-1.2269 -0.1176 -1.2269c -0.1176,-0.5546 -0.3782,-0.9496 -0.3782 -0.9496c -0.2605,-0.3950 -0.6723,-0.6134 -0.6723 -0.6134c -0.4118,-0.2185 -0.9832,-0.2185 -0.9832 -0.2185c -0.9916,-0.0000 -2.1849,1.1092 -2.1849 1.1092v 4.2857 ZM 604.7122,566.0000 ZM 605.6870,563.8824 c 0.0000,-1.3445 1.2017,-2.0588 1.2017 -2.0588c 1.2017,-0.7143 3.8235,-1.0000 3.8235 -1.0000c 0.0000,-0.3866 -0.0756,-0.7563 -0.0756 -0.7563c -0.0756,-0.3697 -0.2689,-0.6555 -0.2689 -0.6555c -0.1933,-0.2857 -0.5126,-0.4622 -0.5126 -0.4622c -0.3193,-0.1765 -0.8235,-0.1765 -0.8235 -0.1765c -0.7227,-0.0000 -1.3361,0.2689 -1.3361 0.2689c -0.6134,0.2689 -1.1008,0.6050 -1.1008 0.6050l -0.5546,-0.9580 c 0.5714,-0.3697 1.3950,-0.7143 1.3950 -0.7143c 0.8235,-0.3445 1.8151,-0.3445 1.8151 -0.3445c 1.4958,0.0000 2.1681,0.9160 2.1681 0.9160c 0.6723,0.9160 0.6723,2.4454 0.6723 2.4454v 5.0084 h -1.1429 l -0.1176,-0.9748 h -0.0336 c -0.5882,0.4874 -1.2689,0.8319 -1.2689 0.8319c -0.6807,0.3445 -1.4370,0.3445 -1.4370 0.3445c -1.0420,-0.0000 -1.7227,-0.6050 -1.7227 -0.6050c -0.6807,-0.6050 -0.6807,-1.7143 -0.6807 -1.7143ZM 605.6870,563.8824 ZM 607.0483,563.7815 c 0.0000,0.7059 0.4118,1.0084 0.4118 1.0084c 0.4118,0.3025 1.0168,0.3025 1.0168 0.3025c 0.5882,0.0000 1.1176,-0.2773 1.1176 -0.2773c 0.5294,-0.2773 1.1176,-0.8151 1.1176 -0.8151v -2.2689 c -1.0252,0.1345 -1.7311,0.3193 -1.7311 0.3193c -0.7059,0.1849 -1.1345,0.4370 -1.1345 0.4370c -0.4286,0.2521 -0.6134,0.5798 -0.6134 0.5798c -0.1849,0.3277 -0.1849,0.7143 -0.1849 0.7143ZM 613.3172,566.0000 ZM 614.4769,564.1513 c 0.5378,0.4370 1.1008,0.7059 1.1008 0.7059c 0.5630,0.2689 1.3025,0.2689 1.3025 0.2689c 0.8067,0.0000 1.2101,-0.3697 1.2101 -0.3697c 0.4034,-0.3697 0.4034,-0.9076 0.4034 -0.9076c 0.0000,-0.3193 -0.1681,-0.5546 -0.1681 -0.5546c -0.1681,-0.2353 -0.4286,-0.4118 -0.4286 -0.4118c -0.2605,-0.1765 -0.5966,-0.3109 -0.5966 -0.3109l -0.6723,-0.2689 c -0.4370,-0.1513 -0.8739,-0.3445 -0.8739 -0.3445c -0.4370,-0.1933 -0.7815,-0.4706 -0.7815 -0.4706c -0.3445,-0.2773 -0.5630,-0.6471 -0.5630 -0.6471c -0.2185,-0.3697 -0.2185,-0.8908 -0.2185 -0.8908c 0.0000,-0.4874 0.1933,-0.9160 0.1933 -0.9160c 0.1933,-0.4286 0.5546,-0.7395 0.5546 -0.7395c 0.3613,-0.3109 0.8824,-0.4874 0.8824 -0.4874c 0.5210,-0.1765 1.1765,-0.1765 1.1765 -0.1765c 0.7731,0.0000 1.4202,0.2689 1.4202 0.2689c 0.6471,0.2689 1.1176,0.6555 1.1176 0.6555l -0.6555,0.8739 c -0.4202,-0.3193 -0.8739,-0.5210 -0.8739 -0.5210c -0.4538,-0.2017 -0.9916,-0.2017 -0.9916 -0.2017c -0.7731,-0.0000 -1.1345,0.3529 -1.1345 0.3529c -0.3613,0.3529 -0.3613,0.8235 -0.3613 0.8235c 0.0000,0.2857 0.1513,0.4958 0.1513 0.4958c 0.1513,0.2101 0.4034,0.3697 0.4034 0.3697c 0.2521,0.1597 0.5798,0.2857 0.5798 0.2857c 0.3277,0.1261 0.6807,0.2605 0.6807 0.2605c 0.4370,0.1681 0.8824,0.3529 0.8824 0.3529c 0.4454,0.1849 0.7983,0.4622 0.7983 0.4622c 0.3529,0.2773 0.5798,0.6807 0.5798 0.6807c 0.2269,0.4034 0.2269,0.9748 0.2269 0.9748c 0.0000,0.5042 -0.1933,0.9412 -0.1933 0.9412c -0.1933,0.4370 -0.5714,0.7731 -0.5714 0.7731c -0.3782,0.3361 -0.9412,0.5294 -0.9412 0.5294c -0.5630,0.1933 -1.2857,0.1933 -1.2857 0.1933c -0.8739,-0.0000 -1.6639,-0.3193 -1.6639 -0.3193c -0.7899,-0.3193 -1.3782,-0.8067 -1.3782 -0.8067ZM 620.3592,566.0000 ZM 621.1324,561.9328 c 0.0000,-1.0084 0.3109,-1.8067 0.3109 -1.8067c 0.3109,-0.7983 0.8235,-1.3529 0.8235 -1.3529c 0.5126,-0.5546 1.1681,-0.8487 1.1681 -0.8487c 0.6555,-0.2941 1.3613,-0.2941 1.3613 -0.2941c 0.7731,0.0000 1.3866,0.2689 1.3866 0.2689c 0.6134,0.2689 1.0252,0.7731 1.0252 0.7731c 0.4118,0.5042 0.6303,1.2101 0.6303 1.2101c 0.2185,0.7059 0.2185,1.5798 0.2185 1.5798c 0.0000,0.4538 -0.0504,0.7563 -0.0504 0.7563h -5.5126 c 0.0840,1.3277 0.8151,2.1008 0.8151 2.1008c 0.7311,0.7731 1.9076,0.7731 1.9076 0.7731c 0.5882,0.0000 1.0840,-0.1765 1.0840 -0.1765c 0.4958,-0.1765 0.9496,-0.4622 0.9496 -0.4622l 0.4874,0.9076 c -0.5378,0.3361 -1.1933,0.5882 -1.1933 0.5882c -0.6555,0.2521 -1.4958,0.2521 -1.4958 0.2521c -0.8235,-0.0000 -1.5378,-0.2941 -1.5378 -0.2941c -0.7143,-0.2941 -1.2437,-0.8403 -1.2437 -0.8403c -0.5294,-0.5462 -0.8319,-1.3361 -0.8319 -1.3361c -0.3025,-0.7899 -0.3025,-1.7983 -0.3025 -1.7983ZM 621.1324,561.9328 ZM 626.8466,561.3109 c 0.0000,-1.2605 -0.5294,-1.9244 -0.5294 -1.9244c -0.5294,-0.6639 -1.4874,-0.6639 -1.4874 -0.6639c -0.4370,-0.0000 -0.8319,0.1765 -0.8319 0.1765c -0.3950,0.1765 -0.7143,0.5042 -0.7143 0.5042c -0.3193,0.3277 -0.5294,0.8067 -0.5294 0.8067c -0.2101,0.4790 -0.2773,1.1008 -0.2773 1.1008h 4.3697 ZM 628.6954,566.0000 ZM 629.3340,568.5546 c 0.9748,-1.6134 1.4538,-3.4538 1.4538 -3.4538c 0.4790,-1.8403 0.4790,-3.7731 0.4790 -3.7731c 0.0000,-1.9328 -0.4790,-3.7731 -0.4790 -3.7731c -0.4790,-1.8403 -1.4538,-3.4538 -1.4538 -3.4538l 0.8571,-0.4034 c 1.0420,1.6975 1.6303,3.5546 1.6303 3.5546c 0.5882,1.8571 0.5882,4.0756 0.5882 4.0756c 0.0000,2.2185 -0.5882,4.0840 -0.5882 4.0840c -0.5882,1.8655 -1.6303,3.5462 -1.6303 3.5462l -0.8571,-0.4034 h 0.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.0000,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.1029,585.2500 ZM 39.5588,584.6029 l 3.7647,-5.5147 h -3.3529 v -0.9853 h 4.8824 v 0.6471 l -3.7647,5.5147 h 3.8824 v 0.9853 h -5.4118 v -0.6471 ZM 45.3529,585.2500 ZM 47.1765,576.6324 c -0.3529,-0.0000 -0.5956,-0.2206 -0.5956 -0.2206c -0.2426,-0.2206 -0.2426,-0.5588 -0.2426 -0.5588c 0.0000,-0.3529 0.2426,-0.5662 0.2426 -0.5662c 0.2426,-0.2132 0.5956,-0.2132 0.5956 -0.2132c 0.3529,0.0000 0.5956,0.2132 0.5956 0.2132c 0.2426,0.2132 0.2426,0.5662 0.2426 0.5662c 0.0000,0.3382 -0.2426,0.5588 -0.2426 0.5588c -0.2426,0.2206 -0.5956,0.2206 -0.5956 0.2206ZM 47.1765,576.6324 ZM 46.5588,578.1029 h 1.2059 v 7.1471 h -1.2059 v -7.1471 ZM 48.9706,585.2500 ZM 51.3824,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 51.3824,585.8529 ZM 51.3824,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,128,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.9706,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0735,585.2500 ZM 106.2794,578.1029 h 1.0000 l 0.1029,1.0294 h 0.0441 c 0.4706,-0.5147 1.0221,-0.8603 1.0221 -0.8603c 0.5515,-0.3456 1.1985,-0.3456 1.1985 -0.3456c 0.8235,0.0000 1.2868,0.3603 1.2868 0.3603c 0.4632,0.3603 0.6838,1.0074 0.6838 1.0074c 0.5588,-0.6176 1.1250,-0.9926 1.1250 -0.9926c 0.5662,-0.3750 1.2279,-0.3750 1.2279 -0.3750c 1.1029,0.0000 1.6397,0.7059 1.6397 0.7059c 0.5368,0.7059 0.5368,2.0882 0.5368 2.0882v 4.5294 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0000,-0.4485 -1.0000 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -4.3676 c 0.0000,-1.0147 -0.3235,-1.4632 -0.3235 -1.4632c -0.3235,-0.4485 -1.0147,-0.4485 -1.0147 -0.4485c -0.8088,-0.0000 -1.7941,1.1029 -1.7941 1.1029v 5.1765 h -1.2059 v -7.1471 ZM 117.2647,585.2500 ZM 118.1176,583.3971 c 0.0000,-1.1765 1.0515,-1.8015 1.0515 -1.8015c 1.0515,-0.6250 3.3456,-0.8750 3.3456 -0.8750c 0.0000,-0.3382 -0.0662,-0.6618 -0.0662 -0.6618c -0.0662,-0.3235 -0.2353,-0.5735 -0.2353 -0.5735c -0.1691,-0.2500 -0.4485,-0.4044 -0.4485 -0.4044c -0.2794,-0.1544 -0.7206,-0.1544 -0.7206 -0.1544c -0.6324,-0.0000 -1.1691,0.2353 -1.1691 0.2353c -0.5368,0.2353 -0.9632,0.5294 -0.9632 0.5294l -0.4853,-0.8382 c 0.5000,-0.3235 1.2206,-0.6250 1.2206 -0.6250c 0.7206,-0.3015 1.5882,-0.3015 1.5882 -0.3015c 1.3088,0.0000 1.8971,0.8015 1.8971 0.8015c 0.5882,0.8015 0.5882,2.1397 0.5882 2.1397v 4.3824 h -1.0000 l -0.1029,-0.8529 h -0.0294 c -0.5147,0.4265 -1.1103,0.7279 -1.1103 0.7279c -0.5956,0.3015 -1.2574,0.3015 -1.2574 0.3015c -0.9118,-0.0000 -1.5074,-0.5294 -1.5074 -0.5294c -0.5956,-0.5294 -0.5956,-1.5000 -0.5956 -1.5000ZM 118.1176,583.3971 ZM 119.3088,583.3088 c 0.0000,0.6176 0.3603,0.8824 0.3603 0.8824c 0.3603,0.2647 0.8897,0.2647 0.8897 0.2647c 0.5147,0.0000 0.9779,-0.2426 0.9779 -0.2426c 0.4632,-0.2426 0.9779,-0.7132 0.9779 -0.7132v -1.9853 c -0.8971,0.1176 -1.5147,0.2794 -1.5147 0.2794c -0.6176,0.1618 -0.9926,0.3824 -0.9926 0.3824c -0.3750,0.2206 -0.5368,0.5074 -0.5368 0.5074c -0.1618,0.2868 -0.1618,0.6250 -0.1618 0.6250ZM 124.7941,585.2500 ZM 127.2059,585.8529 v 2.4118 h -1.2059 v -10.1618 h 1.0000 l 0.1029,0.8235 h 0.0441 c 0.4853,-0.4118 1.0662,-0.7059 1.0662 -0.7059c 0.5809,-0.2941 1.2132,-0.2941 1.2132 -0.2941c 0.6912,0.0000 1.2206,0.2574 1.2206 0.2574c 0.5294,0.2574 0.8824,0.7353 0.8824 0.7353c 0.3529,0.4779 0.5368,1.1471 0.5368 1.1471c 0.1838,0.6691 0.1838,1.5074 0.1838 1.5074c 0.0000,0.9118 -0.2500,1.6250 -0.2500 1.6250c -0.2500,0.7132 -0.6765,1.2132 -0.6765 1.2132c -0.4265,0.5000 -0.9853,0.7574 -0.9853 0.7574c -0.5588,0.2574 -1.1765,0.2574 -1.1765 0.2574c -0.5000,-0.0000 -0.9926,-0.2206 -0.9926 -0.2206c -0.4926,-0.2206 -0.9926,-0.6029 -0.9926 -0.6029ZM 127.2059,585.8529 ZM 127.2059,583.6618 c 0.4853,0.4118 0.9412,0.5809 0.9412 0.5809c 0.4559,0.1691 0.8088,0.1691 0.8088 0.1691c 0.4412,0.0000 0.8162,-0.1985 0.8162 -0.1985c 0.3750,-0.1985 0.6471,-0.5588 0.6471 -0.5588c 0.2721,-0.3603 0.4265,-0.8897 0.4265 -0.8897c 0.1544,-0.5294 0.1544,-1.1912 0.1544 -1.1912c 0.0000,-0.5882 -0.1029,-1.0735 -0.1029 -1.0735c -0.1029,-0.4853 -0.3309,-0.8309 -0.3309 -0.8309c -0.2279,-0.3456 -0.5882,-0.5368 -0.5882 -0.5368c -0.3603,-0.1912 -0.8603,-0.1912 -0.8603 -0.1912c -0.4559,-0.0000 -0.9191,0.2500 -0.9191 0.2500c -0.4632,0.2500 -0.9926,0.7206 -0.9926 0.7206v 3.7500 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 151.0441,576.0000 v 14.0000 h 22.0000 v -14.0000 Z"/></g><g stroke-linejoin="bevel" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.1471,585.2500 ZM 184.5735,575.7647 c -0.3971,-0.1765 -0.8088,-0.1765 -0.8088 -0.1765c -1.0000,-0.0000 -1.0000,1.3824 -1.0000 1.3824v 1.1324 h 1.5147 v 0.9853 h -1.5147 v 6.1618 h -1.2059 v -6.1618 h -0.9706 v -0.9118 l 0.9706,-0.0735 v -1.1324 c 0.0000,-1.1029 0.5074,-1.7353 0.5074 -1.7353c 0.5074,-0.6324 1.5809,-0.6324 1.5809 -0.6324c 0.3382,0.0000 0.6397,0.0662 0.6397 0.0662c 0.3015,0.0662 0.5515,0.1691 0.5515 0.1691ZM 184.2941,585.2500 ZM 184.9706,581.6912 c 0.0000,-0.8971 0.2721,-1.5956 0.2721 -1.5956c 0.2721,-0.6985 0.7279,-1.1838 0.7279 -1.1838c 0.4559,-0.4853 1.0515,-0.7353 1.0515 -0.7353c 0.5956,-0.2500 1.2574,-0.2500 1.2574 -0.2500c 0.6618,0.0000 1.2574,0.2500 1.2574 0.2500c 0.5956,0.2500 1.0515,0.7353 1.0515 0.7353c 0.4559,0.4853 0.7279,1.1838 0.7279 1.1838c 0.2721,0.6985 0.2721,1.5956 0.2721 1.5956c 0.0000,0.8824 -0.2721,1.5809 -0.2721 1.5809c -0.2721,0.6985 -0.7279,1.1765 -0.7279 1.1765c -0.4559,0.4779 -1.0515,0.7279 -1.0515 0.7279c -0.5956,0.2500 -1.2574,0.2500 -1.2574 0.2500c -0.6618,-0.0000 -1.2574,-0.2500 -1.2574 -0.2500c -0.5956,-0.2500 -1.0515,-0.7279 -1.0515 -0.7279c -0.4559,-0.4779 -0.7279,-1.1765 -0.7279 -1.1765c -0.2721,-0.6985 -0.2721,-1.5809 -0.2721 -1.5809ZM 184.9706,581.6912 ZM 186.2206,581.6912 c 0.0000,0.6176 0.1471,1.1176 0.1471 1.1176c 0.1471,0.5000 0.4191,0.8603 0.4191 0.8603c 0.2721,0.3603 0.6544,0.5588 0.6544 0.5588c 0.3824,0.1985 0.8382,0.1985 0.8382 0.1985c 0.4559,0.0000 0.8382,-0.1985 0.8382 -0.1985c 0.3824,-0.1985 0.6544,-0.5588 0.6544 -0.5588c 0.2721,-0.3603 0.4191,-0.8603 0.4191 -0.8603c 0.1471,-0.5000 0.1471,-1.1176 0.1471 -1.1176c 0.0000,-0.6176 -0.1471,-1.1250 -0.1471 -1.1250c -0.1471,-0.5074 -0.4191,-0.8750 -0.4191 -0.8750c -0.2721,-0.3676 -0.6544,-0.5662 -0.6544 -0.5662c -0.3824,-0.1985 -0.8382,-0.1985 -0.8382 -0.1985c -0.4559,-0.0000 -0.8382,0.1985 -0.8382 0.1985c -0.3824,0.1985 -0.6544,0.5662 -0.6544 0.5662c -0.2721,0.3676 -0.4191,0.8750 -0.4191 0.8750c -0.1471,0.5074 -0.1471,1.1250 -0.1471 1.1250ZM 192.2647,585.2500 ZM 193.4706,574.7794 h 1.2059 v 9.1176 c 0.0000,0.2941 0.1029,0.4118 0.1029 0.4118c 0.1029,0.1176 0.2353,0.1176 0.2353 0.1176h 0.1103 c 0.0000,0.0000 0.1544,-0.0294 0.1544 -0.0294l 0.1618,0.9118 c -0.1176,0.0588 -0.2794,0.0882 -0.2794 0.0882c -0.1618,0.0294 -0.4118,0.0294 -0.4118 0.0294c -0.6912,-0.0000 -0.9853,-0.4118 -0.9853 -0.4118c -0.2941,-0.4118 -0.2941,-1.2059 -0.2941 -1.2059v -9.0294 ZM 196.0147,585.2500 ZM 196.7059,581.6912 c 0.0000,-0.8676 0.2574,-1.5662 0.2574 -1.5662c 0.2574,-0.6985 0.6838,-1.1838 0.6838 -1.1838c 0.4265,-0.4853 0.9853,-0.7500 0.9853 -0.7500c 0.5588,-0.2647 1.1765,-0.2647 1.1765 -0.2647c 0.6176,0.0000 1.0735,0.2206 1.0735 0.2206c 0.4559,0.2206 0.9265,0.6029 0.9265 0.6029l -0.0588,-1.2206 v -2.7500 h 1.2206 v 10.4706 h -1.0000 l -0.1029,-0.8382 h -0.0441 c -0.4265,0.4118 -0.9779,0.7132 -0.9779 0.7132c -0.5515,0.3015 -1.1838,0.3015 -1.1838 0.3015c -1.3529,-0.0000 -2.1544,-0.9706 -2.1544 -0.9706c -0.8015,-0.9706 -0.8015,-2.7647 -0.8015 -2.7647ZM 196.7059,581.6912 ZM 197.9559,581.6765 c 0.0000,1.2941 0.5147,2.0147 0.5147 2.0147c 0.5147,0.7206 1.4559,0.7206 1.4559 0.7206c 0.5000,0.0000 0.9412,-0.2426 0.9412 -0.2426c 0.4412,-0.2426 0.8824,-0.7426 0.8824 -0.7426v -3.7353 c -0.4559,-0.4118 -0.8750,-0.5809 -0.8750 -0.5809c -0.4191,-0.1691 -0.8603,-0.1691 -0.8603 -0.1691c -0.4265,-0.0000 -0.8015,0.1985 -0.8015 0.1985c -0.3750,0.1985 -0.6544,0.5588 -0.6544 0.5588c -0.2794,0.3603 -0.4412,0.8603 -0.4412 0.8603c -0.1618,0.5000 -0.1618,1.1176 -0.1618 1.1176Z"/></g></svg>
+ lib/BenchShow.hs view
@@ -0,0 +1,100 @@+-- |+-- Module      : BenchShow+-- Copyright   : (c) 2017-18 Composewell Technologies+--+-- License     : BSD3+-- Maintainer  : harendra.kumar@gmail.com+-- Stability   : experimental+-- Portability : GHC+--+-- BenchShow provides a DSL to quickly generate visual graphs or textual+-- reports from benchmarking results file (CSV) produced by @gauge@ or+-- @criterion@.  Reports or graphs can be formatted and presented in many+-- useful ways. For example, we can prepare a graphical bar chart or column+-- wise textual report comparing the performance of two packages or comparing+-- the performance regression in a package caused by a particular change.+-- Absolute or percentage difference between sets of benchmarks can be+-- presented and sorted based on the difference. This+-- allows us to easily identify the worst affected benchmarks and fix them. The+-- presentation is quite flexible and a lot more interesting things can be done+-- with it.+--+-- = Generating Graphs and Reports+--+-- The input is a CSV file generated by @gauge --csv=results.csv@ or a similar+-- output generated by @criterion@. The 'graph' or the 'report' function is+-- invoked on the file with an appropriate 'Config' to control various+-- parameters of graph or report generation.  In most cases 'defaultConfig'+-- should just do the job and a specific config may not be required.+--+-- = Fields, Groups and RunIds+--+-- In the documentation when we say @field@ it means a benchmarking field e.g.+-- @time@ or @maxrss@. When we say @group@ it means a group of benchmarks. An+-- input file may have benchmark results collected from multiple runs.  By+-- default each run is designated as a single benchmark group with the group+-- name @default@. Benchmark groups from different runs are distinguished+-- using a @runId@ which is the index of the run in the file, starting with 0.+--+-- Benchmarks can be classified into multiple groups using 'classifyBenchmark'.+-- Benchmarks from each run can be divided into multiple groups. In a multi-run+-- input benchmark groups can be fully specified using the groupname (either+-- @default@ or as classified by 'classifyBenchmark') and the+-- runId.+--+-- = Presentation+--+-- We can present the results in a textual format using 'report' or as a+-- graphical chart using 'graph'. Each report consists of a number of+-- benchmarks as rows and the columns can either be benchmarking fields or+-- groups of benchmarks depending on the 'Presentation' setting. In a graphical+-- chart, we present multiple clusters, each cluster representing one column+-- from the textual report, the rows (i.e.  the benchmarks) are represented as+-- bars in the cluster.+--+-- When the columns are groups, each report consists of results for a single+-- benchmarking field for different benchmark groups.  Using 'GroupStyle', we+-- can further specify how we want to present the results the groups. We can+-- either present absolute values of the field for each group or we can make+-- the first group as a baseline and present differences from the baseline for+-- the subsequent groups.+--+-- When the columns are fields, each report consists of results for a single+-- benchmarking group. Fields cannot be compared like groups because they are+-- of different types and have different measurement units.+--+-- The units in the report are automatically determined based on the minimum+-- value in the range of values present. The ranges for fields can be+-- overridden using 'fieldRanges'.+--+-- = Mean and Max+--+-- In a raw benchmark file (@--csvraw=results.csv@ with @gauge@) we may have+-- data for multiple iterations of each benchmark. BenchShow combines results+-- of all iterations depending on the field type. For example if the field is+-- @time@ it takes the mean of all iterations and if the field is @maxrss@ it+-- takes the maximum of all iterations.+--+-- = Tutorial and Examples+--+-- See the tutorial module "BenchShow.Tutorial" for sample charts and a+-- comprehensive guide to generating reports and graphs.  See the @test@+-- directory for many usage examples, run the tests to see the charts generated+-- by these tests.++module BenchShow+    ( GroupStyle(..)+    , Presentation(..)+    , Estimator (..)+    , DiffStrategy (..)+    , SortColumn (..)+    , FieldTick (..)+    , Config(..)+    , defaultConfig+    , report+    , graph+    ) where++import BenchShow.Common+import BenchShow.Graph+import BenchShow.Report
+ lib/BenchShow/Analysis.hs view
@@ -0,0 +1,397 @@+{-# LANGUAGE BangPatterns #-}+{-# LANGUAGE DeriveDataTypeable #-}+{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE Trustworthy #-}+{-# LANGUAGE TupleSections #-}+{-# LANGUAGE TypeFamilies #-}++-- |+-- Module      : BenchShow.Analysis+-- Copyright   : (c) 2009-2014 Bryan O'Sullivan+--               (c) 2018 Composewell Technologies+--+-- License     : BSD-style+-- Maintainer  : harendra.kumar@gmail.com+-- Stability   : experimental+-- Portability : GHC++module BenchShow.Analysis+    ( OutlierEffect(..)+    , OutlierVariance(..)+    , countOutliers+    , Estimator(..)+    , AnalyzedField(..)+    , getAnalyzedValue+    , BenchmarkMatrix(..)+    , BenchmarkIterMatrix(..)+    , foldBenchmark+    , filterSamples+    , isMaxField+    ) where++import Control.Applicative+import Data.Char (toLower)+import Data.Data (Data, Typeable)+import Data.Int (Int64)+import Data.List (elemIndex, transpose)+import Data.Maybe (fromMaybe)+import Data.Traversable+import GHC.Generics (Generic)+import Statistics.Function (sort)+import Statistics.Quantile (weightedAvg)+import Statistics.Regression (bootstrapRegress, olsRegress)+import Statistics.Resampling (resample)+import Statistics.Resampling.Bootstrap (bootstrapBCA)+import Statistics.Sample (mean, stdDev)+import Statistics.Sample.KernelDensity (kde)+import Statistics.Types (Sample, Estimate(..), ConfInt(..), cl95, CL)+import System.Random.MWC (GenIO, createSystemRandom)+import Prelude hiding (sequence, mapM)++import qualified Statistics.Resampling as St+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Unboxed as U++-------------------------------------------------------------------------------+-- Outliers+-------------------------------------------------------------------------------++-- | Outliers from sample data, calculated using the boxplot+-- technique.+data Outliers = Outliers {+      samplesSeen :: !Int64+    , lowSevere   :: !Int64+    -- ^ More than 3 times the interquartile range (IQR) below the+    -- first quartile.+    , lowMild     :: !Int64+    -- ^ Between 1.5 and 3 times the IQR below the first quartile.+    , highMild    :: !Int64+    -- ^ Between 1.5 and 3 times the IQR above the third quartile.+    , highSevere  :: !Int64+    -- ^ More than 3 times the IQR above the third quartile.+    } deriving (Eq, Show, Typeable, Data, Generic)++-- | A description of the extent to which outliers in the sample data+-- affect the sample mean and standard deviation.+data OutlierEffect = Unaffected -- ^ Less than 1% effect.+                   | Slight     -- ^ Between 1% and 10%.+                   | Moderate   -- ^ Between 10% and 50%.+                   | Severe     -- ^ Above 50% (i.e. measurements+                                -- are useless).+                     deriving (Eq, Ord, Show, Typeable, Data, Generic)++outliersEmpty :: Outliers+outliersEmpty = Outliers 0 0 0 0 0++addOutliers :: Outliers -> Outliers -> Outliers+addOutliers (Outliers s a b c d) (Outliers t w x y z) =+    Outliers (s+t) (a+w) (b+x) (c+y) (d+z)+{-# INLINE addOutliers #-}++-- | Analysis of the extent to which outliers in a sample affect its+-- standard deviation (and to some extent, its mean).+data OutlierVariance = OutlierVariance {+      ovEffect   :: !OutlierEffect+    -- ^ Qualitative description of effect.+    , ovDesc     :: !String+    -- ^ Brief textual description of effect.+    , ovFraction :: !Double+    -- ^ Quantitative description of effect (a fraction between 0 and 1).+    } deriving (Eq, Show, Typeable, Data, Generic)++-- | Classify outliers in a data set, using the boxplot technique.+classifyOutliers :: Sample -> Outliers+classifyOutliers sa = U.foldl' ((. outlier) . addOutliers) outliersEmpty ssa+    where outlier e = Outliers+                { samplesSeen = 1+                , lowSevere = if e <= loS && e < hiM then 1 else 0+                , lowMild = if e > loS && e <= loM then 1 else 0+                , highMild = if e >= hiM && e < hiS then 1 else 0+                , highSevere = if e >= hiS && e > loM then 1 else 0+                }+          !loS = q1 - (iqr * 3)+          !loM = q1 - (iqr * 1.5)+          !hiM = q3 + (iqr * 1.5)+          !hiS = q3 + (iqr * 3)+          q1   = weightedAvg 1 4 ssa+          q3   = weightedAvg 3 4 ssa+          ssa  = sort sa+          iqr  = q3 - q1++-- | Compute the extent to which outliers in the sample data affect+-- the sample mean and standard deviation.+outlierVariance+  :: Double -- ^ mean+  -> Double -- ^ standard deviation.+  -> Double -- ^ Number of original iterations.+  -> OutlierVariance+outlierVariance µ σ a = OutlierVariance effect desc varOutMin+    where+    µa    = µ / a+    µgMin = µa / 2+    σg2   = σg * σg where σg = min (µgMin / 4) (σ / sqrt a)+    σ2    = σ * σ+    varOut c  = (ac / a) * (σ2 - ac * σg2) where ac = a - c+    cMax x    = fromIntegral (floor (-2 * k0 / (k1 + sqrt det)) :: Int)+        where+        ad = a * d+            where+            d = k * k+            k = µa - x+        k0    = -a * ad+        k1    = σ2 - a * σg2 + ad+        det   = k1 * k1 - 4 * σg2 * k0++    minBy f q r = min (f q) (f r)+    varOutMin = if σ2 == 0+                then 0+                else (minBy varOut 1 (minBy cMax 0 µgMin)) / σ2++    (effect, desc) | varOutMin < 0.01 = (Unaffected, "no")+                   | varOutMin < 0.1  = (Slight,     "slight")+                   | varOutMin < 0.5  = (Moderate,   "moderate")+                   | otherwise        = (Severe,     "severe")++-- | Count the total number of outliers in a sample.+countOutliers :: Outliers -> Int64+countOutliers (Outliers _ a b c d) = a + b + c + d+{-# INLINE countOutliers #-}++-------------------------------------------------------------------------------+-- Linear regression+-------------------------------------------------------------------------------++useRegression :: Bool+useRegression = True++useBootstrap :: Bool+useBootstrap = True++resampleCount :: Int+resampleCount = 1000++confidence :: CL Double+confidence = cl95++regress+    :: GenIO+    -> Int  -- index of the iters field, we return the coefficient of only the+            -- iters field+    -> [String] -- responder column names+    -> [([Double], [Double])]+    -> IO [Maybe (Estimate ConfInt Double, Estimate ConfInt Double)]+regress randGen i rcols samples = do+    -- perform ordinary least squares regression for each field+    -- the main predictor is the number of iterations+    let predVectors = map U.fromList $ transpose $ map fst samples+        regressWithIters = mapM (bootstrapRegress randGen resampleCount+                                confidence olsRegress predVectors)++    let avoidMaxFields name vec =+            if isMaxField name+            then Nothing+            else Just vec+    let respVectors = map U.fromList $ transpose $ map snd samples+    res <- mapM regressWithIters (zipWith avoidMaxFields rcols respVectors)+    return $ map (fmap (\(v,r2) -> ((G.toList v) !! i, r2))) res++-------------------------------------------------------------------------------+-- Mean and std deviation by boostrap resampling+-------------------------------------------------------------------------------++estimateMeanAndStdDev+    :: GenIO+    -> [U.Vector Double]+    -> IO [(Estimate ConfInt Double, Estimate ConfInt Double)]+estimateMeanAndStdDev randGen vectors = do+    let resamp = resample randGen [St.Mean, St.StdDev] resampleCount+    res <- mapM resamp vectors+    return $ fmap (\[mn,dev] -> (mn, dev))+        $ getZipList+        $ bootstrapBCA confidence+            <$> ZipList vectors+            <*> ZipList res++-------------------------------------------------------------------------------+-- Statistical analysis of benchmark iterations+-------------------------------------------------------------------------------++-- By default the fields are considered "scaled" fields that is+-- they scale by iterations. However in case of maxrss field it is+-- a max value across the experiment and does not scale by+-- iterations, in this case we just need to take a mean or max+-- without scaling.+isMaxField :: String -> Bool+isMaxField fieldName = map toLower fieldName == "maxrss"++rescaleIteration :: Int -> [String] -> ([Double], [Double]) -> [Double]+rescaleIteration idx rcols (pvals, vals) =+    let iter = pvals !! idx+    in zipWith ($) (map ($ iter) foldFields) vals++    where++    getMeanOrMax fname i val =+        if isMaxField fname+        then val+        else val / i++    foldFields = map getMeanOrMax rcols++data AnalyzedField = AnalyzedField+    { analyzedMean       :: !Double+    , analyzedStdDev     :: !Double++    , analyzedMedian     :: !Double+    , analyzedOutliers   :: !Outliers+    , analyzedOutlierVar :: !OutlierVariance+    , analyzedKDE        :: !(U.Vector Double, U.Vector Double)++    , analyzedRegCoeff   :: Maybe (Estimate ConfInt Double)+    , analyzedRegRSq     :: Maybe (Estimate ConfInt Double)+    } deriving Show++-- | The statistical estimator used to arrive at a single value for a+-- benchmark when samples from multiple experiments are available.+--+-- @since 0.2.0+data Estimator =+      Median        -- ^ Report the median, outliers and outlier variance using+                    -- box-plot method. This is the most robust indicator+                    -- with respect to outliers when successive runs of+                    -- benchmarks are compared.+    | Mean          -- ^ Report the mean and the standard deviation from the+                    -- mean. This is less robust than median but more precise.+    | Regression    -- ^ Report the coefficient of regression, discarding the+                    -- constant factor, arrived at by linear regression using+                    -- ordinary least square method.  The R-square+                    -- goodness-of-fit estimate is also reported.  It works+                    -- better when larger number of samples are taken.  This+                    -- cannot be used when the number of samples is less than+                    -- 2, in that case a mean value is reported instead.+    deriving (Eq, Show)++getAnalyzedValue :: Estimator -> AnalyzedField -> Double+getAnalyzedValue estimator AnalyzedField{..} =+    case estimator of+        Median -> analyzedMedian+        Mean -> analyzedMean+        Regression ->+            case analyzedRegCoeff of+                Nothing -> analyzedMean+                Just x -> estPoint x++-- | Perform an analysis of a measurement.+analyzeBenchmark :: GenIO+                 -> [String]+                 -> [String]+                 -> [([Double], [Double])]+                 -> IO [AnalyzedField]+analyzeBenchmark randGen pcols rcols samples = do+    let sampleCnt = length samples+        i = fromMaybe (error "bug") $ elemIndex "iters" pcols+        vectors = map U.fromList+            $ transpose+            $ map (rescaleIteration i rcols) samples++    (coeffs, r2s) <-+        -- olsRegress fails if there are fewer samples than predictors+        if useRegression && length samples >= (length pcols + 1)+        then do+            let f (Just (x, y)) = (Just x, Just y)+                f Nothing = (Nothing, Nothing)+            fmap (unzip . map f) $ regress randGen i rcols samples+        else do+            let n = length rcols+            return (replicate n Nothing, replicate n Nothing)++    (means, devs) <-+        if useBootstrap+        then do+            (ms, ds) <- fmap unzip $ estimateMeanAndStdDev randGen vectors+            return (map estPoint ms, map estPoint ds)+        else do+            -- Even for max fields (e.g. maxrss) we take the mean+            let ms = map mean vectors+                ds = map stdDev vectors+            return (ms, ds)++    let len = U.length $ head vectors+        median v = (sort v) U.! (len `div` 2)+        medians = map median vectors+        outliers = getZipList $ classifyOutliers <$> ZipList vectors+        outlierVars = getZipList+                $ outlierVariance+                    <$> ZipList means+                    <*> ZipList devs+                    <*> pure (fromIntegral sampleCnt)+        kdes = map (kde 128) vectors++    return $ getZipList $ AnalyzedField+        <$> ZipList means+        <*> ZipList devs++        <*> ZipList medians+        <*> ZipList outliers+        <*> ZipList outlierVars+        <*> ZipList kdes++        <*> ZipList coeffs+        <*> ZipList r2s++-- predictor matrix+data BenchmarkIterMatrix = BenchmarkIterMatrix+    { iterPredColNames  :: ![String]  -- predictor column names+    , iterRespColNames  :: ![String]  -- responder column names+    -- (Benchmark, [(predictor columns, responder columns)])+    , iterRowValues :: ![(String, [([Double], [Double])])]+    } deriving Show++-- Stored in row major order+data BenchmarkMatrix = BenchmarkMatrix+    { colNames  :: ![String]+    , rowValues :: ![(String, [AnalyzedField])] -- (Benchmark, columns)+    } deriving Show++foldBenchmark :: BenchmarkIterMatrix -> IO BenchmarkMatrix+foldBenchmark BenchmarkIterMatrix{..} = do+    randGen <- createSystemRandom+    rows <- mapM (foldIters randGen) iterRowValues+    return $ BenchmarkMatrix+        { colNames = iterRespColNames+        , rowValues = rows+        }++    where++    foldIters randGen (name, vals) = do+            vals' <- analyzeBenchmark randGen iterPredColNames+                                      iterRespColNames vals+            return (name, vals')++-- take top samples+-- XXX take equivalent iterations across multiple groups+filterSamples :: BenchmarkIterMatrix -> BenchmarkIterMatrix+filterSamples matrix@BenchmarkIterMatrix{..} =+    matrix+        {-+        {+          iterRowValues = map filterIters iterRowValues+        }++    where++    iterIndex = fromMaybe undefined+        $ elemIndex "iters" (map (map toLower) iterPredColNames)+    nivcswIndex = fromMaybe undefined+        $ elemIndex "nivcsw" (map (map toLower) iterPredColNames)+    filterIters (name, vals) =+        let vals'' = take 50 $ reverse $ sortBy (comparing ((!! iterIndex) .  fst)) vals+        let vals' = filter (\(x,_) -> x !! nivcswIndex < 10) vals+            vals'' =+                if null vals'+                then trace "null after filter" vals+                else vals'+        in (name, vals'')+        -}
+ lib/BenchShow/Common.hs view
@@ -0,0 +1,1243 @@+-- |+-- Module      : BenchShow.Common+-- Copyright   : (c) 2018 Composewell Technologies+--+-- License     : BSD3+-- Maintainer  : harendra.kumar@gmail.com+-- Stability   : experimental+-- Portability : GHC+--++{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TupleSections #-}++module BenchShow.Common+    ( Presentation(..)+    , GroupStyle(..)+    , FieldTick (..)+    , SortColumn (..)+    , RelativeUnit (..)+    , Estimator (..)+    , DiffStrategy (..)+    , Config(..)+    , defaultConfig++    , getFieldRange+    , getFieldTick++    , GroupMatrix(..)+    , prepareGroupMatrices++    , ReportColumn(..)+    , RawReport(..)+    , ReportType(..)+    , diffString+    , makeTitle+    , prepareToReport+    , reportComparingGroups+    , reportPerGroup+    ) where++import Control.Applicative (ZipList(..))+import Control.Arrow (second)+import Control.Exception (assert)+import Control.Monad (when, unless)+import Data.Char (toLower)+import Data.Foldable (foldl')+import Data.Function ((&), on)+import Data.List+       (transpose, groupBy, (\\), find, sortBy, elemIndex, intersect,+        intersectBy)+import Data.List.Split (linesBy)+import Data.Maybe (fromMaybe, mapMaybe)+import Data.Ord (comparing)+import Debug.Trace (trace)+import Statistics.Types (Estimate(..), ConfInt(..))+import System.Directory (createDirectoryIfMissing)+import System.FilePath ((</>))+import Text.CSV (CSV, parseCSVFromFile)+import Text.Read (readMaybe)++import BenchShow.Analysis++-------------------------------------------------------------------------------+-- Utilities+-------------------------------------------------------------------------------++filterSanity :: (Eq a, Show a) => String -> [a] -> [a] -> IO ()+filterSanity label old new = do+    let added = new \\ old++    when (null new) $ error $+        label ++ " must select at least one item from the list: "+        ++ show old++    unless (null added) $ error $+        label +++        " must not add any new items to the original list. The \+        \following items were added: " ++ show added++-------------------------------------------------------------------------------++data ReportType = TextReport | GraphicalChart++-- | How to show the results for multiple benchmark groups presented in columns+-- or bar chart clusters.+--+-- @since 0.2.0+data GroupStyle =+      Absolute       -- ^ Show absolute field values for all groups+    | Diff        -- ^ Show baseline group values as usual and values for+                     -- the subsequent groups as differences from the baseline+    | Percent     -- ^ Show baseline group values as 100% and values for+                     -- subsequent groups as a percentage of the baseline+    | PercentDiff -- ^ Show baseline group values as usual and values for+                     -- subsequent groups as precentage difference from the+                     -- baseline+    deriving (Eq, Show)++-- | How to present the reports or graphs. Each report presents a number of+-- benchmarks as rows, it may have, (1) a single column presenting the values+-- for a single field, (2) multiple columns presenting values for different+-- fields, or (3) multiple columns presenting values of the same field for+-- different groups.+--+-- @since 0.2.0+data Presentation =+      Solo              -- ^ Reports are generated for each group and for+                        -- each field selected by the configuration. Each+                        -- report presents benchmarks in a single group with a+                        -- single column presenting a single field.  If there+                        -- are @m@ fields and @n@ groups selected by the+                        -- configuration then a total of @m x n@ reports are+                        -- generated.  Output files are named using+                        -- @-estimator-groupname-fieldname@ as suffix.+    | Groups GroupStyle -- ^ One report is generated for each field selected by+                        -- the configuration. Each report presents a field+                        -- with all the groups selected by the configuration as+                        -- columns or clusters. Output files are named using+                        -- @-estimator-fieldname@ as suffix.+    | Fields            -- ^ One report is generated for each group selected by+                        -- the configuration. Each report presents a group+                        -- with all the fields selected by the configuration as+                        -- columns or clusters. Output files are named using+                        -- @-estimator-groupname@ as suffix.+    deriving (Eq, Show)++-- | FieldTick is used only in visual charts to generate the major ticks on+-- the y-axis. You can specify either the size of a tick ('TickSize') or the+-- total number of ticks ('TickCount').+--+-- @since 0.2.0+data FieldTick =+      TickSize Int  -- ^ Size of a tick, the unit is microseconds for time+                     -- fields, and bytes for space fields.+    | TickCount Int -- ^ Total number of ticks in the range spread.++-- | When sorting and filtering the benchmarks using 'selectBenchmarks' we can+-- choose a column as a sort criterion.  'selectBenchmarks' is provided with+-- the data for the corresponding column which can be used for sorting the+-- benchmarks. The column could be a group or a field depending on the+-- 'Presentation'.+--+-- @since 0.2.0+data SortColumn =+      ColumnIndex Int -- ^ Specify the index of the sort column. Index 0+        -- corresponds to the first @value@ column. In a textual report, the+        -- very first column consists of benchmark names, therefore index 0+        -- addresses the second column of the report.+    | ColumnName (Either String (String, Int)) -- ^ Specify the column using+        -- the name of the group or the field it represents, and the @runId@.+        -- When just the name is enough to uniquely identify the sort column+        -- the 'Left' constructor can be used, otherwise the 'Right'+        -- constructor is used which can use the @runId@ to disambiguate.  In a+        -- 'Fields' presentation, just the field name is enough.  In a 'Groups'+        -- presentation, when there is a single benchmark run in the input+        -- file, just the group name is enough to identify the group, the+        -- @runId@ defaults to 0.  However, when there are multiple runs, a+        -- group needs to specify a @runId@ as well.++-- | Strategy to compute the difference between two groups of benchmarks being+-- compared.+--+-- @since 0.2.0+data DiffStrategy =+      SingleEstimator -- ^ Use a single estimator to compute the difference+                      -- between the baseline and the candidate. The estimator+                      -- that is provided in the 'Config' is used.+    | MinEstimator    -- ^ Use 'Mean', 'Median' and 'Regression' estimators for+                      -- both baseline and candidate, and report the estimator+                      -- that shows the minimum difference. This is more robust+                      -- against random variations.+    {-+    | WorstBest+    | BestBest+    -}++-- | Configuration governing generation of chart. See 'defaultConfig' for the+-- default values of these fields.+--+-- @since 0.2.0+data Config = Config+    {+    -- | Provide more details in the report, especially the standard deviation,+    -- outlier variance, R-square estimate and an annotation to indicate the+    -- actual method used when using 'MinEstimator' are reported.+      verbose :: Bool++    -- | The directory where the output graph or report file should be placed.+    , outputDir   :: Maybe FilePath++    -- | Report title, more information like the plotted field name or+    -- the presentation style may be added to it.+    , title  :: Maybe String++    -- | How to determine the layout of the report or the chart.+    , presentation :: Presentation++    -- | The estimator used for the report.+    , estimator    :: Estimator++    -- | The minimum percentage difference between two runs of a benchmark+    -- beyond which the benchmark is flagged to have regressed or improved.+    , threshold :: Word++    -- | Strategy to compare two runs or groups of benchmarks.+    , diffStrategy  :: DiffStrategy++    ---------------------------------------------------------------------------+    -- Fields (Columns)+    ---------------------------------------------------------------------------++    -- | Filter and reorder the benchmarking fields. It is invoked with a list+    -- of all available benchmarking fields. Only those fields present in the+    -- output of this function are plotted and in that order.+    , selectFields :: [String] -> [String]++    -- | The values in the tuple are @(fieldName, RangeMin, RangeMax)@.+    -- Specify the min and max range of benchmarking fields. If the field+    -- value is outside the range it is clipped to the range limit.+    -- For time fields, the range values are in microseconds, and for space+    -- fields they are in bytes. The minimum of the range is used to determine+    -- the unit for the field.+    , fieldRanges :: [(String, Double, Double)]++    -- | The values in the tuple are @(fieldName, tick)@.  Specify the+    -- tick size of the fields to be used for the graphical reports.+    , fieldTicks :: [(String, FieldTick)]++    ---------------------------------------------------------------------------+    -- Groups (Row Grouping)+    ---------------------------------------------------------------------------++    -- | Filter, group and translate benchmark names. This function is invoked+    -- once for all benchmark names found in the results. It produces a tuple+    -- @(groupname, benchname)@, where @groupname@ is the name of the group the+    -- benchmark should be placed in, and @benchname@ is the translated+    -- benchmark name to be used in the report.  If it returns 'Nothing' for a+    -- benchmark, that benchmark is omitted from the results.+    , classifyBenchmark :: String -> Maybe (String, String)++    -- | Filter and reorder the benchmark group names. A benchmark group may be+    -- assigned using 'classifyBenchmark'; when not assigned, all benchmarks+    -- are placed in the @default@ group. The input to this function is a list+    -- of tuples with benchmark group names and the @runId@s.  The output+    -- produced by this function is a filtered and reordered subset of the+    -- input.  Only those benchmark groups present in the output are rendered+    -- and are presented in that order.+    , selectGroups :: [(String, Int)] -> [(String, Int)]++    ---------------------------------------------------------------------------+    -- Benchmarks (Rows)+    ---------------------------------------------------------------------------++    -- | Filter and reorder benchmarks. 'selectBenchmarks' is provided with a+    -- function which is invoked with a sorting column name or index, the+    -- function produces the benchmark names and corresponding values for that+    -- column which can be used as a sorting criterion. The output of+    -- 'selectBenchmarks' is a list of benchmarks in the order in which they+    -- are to be rendered.+    , selectBenchmarks+        :: (SortColumn -> Either String [(String, Double)])+        -> [String]+    }++-- | Default configuration. Use this as the base configuration and modify the+-- required fields. The defaults are:+--+-- @+--  verbose           = False+--  title             = Nothing+--  outputDir         = Nothing+--  presentation      = Groups Absolute+--  estimator         = Median+--  threshold         = 3+--  diffStrategy      = MinEstimator+--  selectFields      = filter (flip elem ["time", "mean", "maxrss"] . map toLower)+--  fieldRanges       = []+--  fieldTicks        = []+--  classifyBenchmark = Just . ("default",)+--  selectGroups      = id+--  selectBenchmarks  = \f -> either error (map fst) $ f (ColumnIndex 0)+-- @+--+-- @since 0.2.0+defaultConfig :: Config+defaultConfig = Config+    { verbose           = False+    , title             = Nothing+    , outputDir         = Nothing+    , presentation      = Groups Absolute+    , estimator         = Median+    , threshold         = 3+    , diffStrategy      = MinEstimator+    , selectFields      = filter (flip elem ["time", "mean", "maxrss"] . map toLower)+    , fieldRanges       = []+    , fieldTicks        = []+    , classifyBenchmark = Just . ("default",)+    , selectGroups      = id+    , selectBenchmarks  = \f -> either error (map fst) $ f (ColumnIndex 0)+    }++-------------------------------------------------------------------------------+-- Benchmarking field types+-------------------------------------------------------------------------------++timeFields :: [String]+timeFields = map (map toLower)+    [ "time"+    , "mean"+    , "cpuTime"+    , "utime"+    , "stime"+    , "mutatorWallSeconds"+    , "mutatorCpuSeconds"+    , "gcWallSeconds"+    , "gcCpuSeconds"+    ]++isTimeField :: String -> Bool+isTimeField fieldName = map toLower fieldName `elem` timeFields++allocFields :: [String]+allocFields = map (map toLower) ["allocated", "bytesCopied", "maxrss"]++isAllocationField :: String -> Bool+isAllocationField fieldName = map toLower fieldName `elem` allocFields++predictorFields :: [String]+predictorFields = map (map toLower)+    [ "iters"+    -- , "minflt"+    -- , "majflt"+    -- , "nvcsw"+    -- , "nivcsw"+    ]++isPredictorField :: String -> Bool+isPredictorField fieldName = map toLower fieldName `elem` predictorFields++-------------------------------------------------------------------------------+-- Units+-------------------------------------------------------------------------------++-- | Describe a relative unit i.e. a unit in terms of another unit. A relative+-- unit has a label and a ratio which when multiplied with the unit gives us+-- the other unit. For example, if the known time unit is seconds, we can+-- describe a millisecond as @Unit "ms" (1/1000)@.+data RelativeUnit = RelativeUnit String Double deriving Show++getTimeUnit :: Double -> RelativeUnit+getTimeUnit k+    | k < 0      = getTimeUnit (-k)+    | k >= 1     = RelativeUnit "s" 1+    | k >= 1e-3  = RelativeUnit "ms" 1e-3+    | k >= 1e-6  = RelativeUnit "μs" 1e-6+    | otherwise  = RelativeUnit "ns" 1e-9++getSpaceUnit :: Double -> RelativeUnit+getSpaceUnit k+    | k < 0             = getSpaceUnit (-k)+    | k >= 2^(30 ::Int) = RelativeUnit "GiB" (2^(30 :: Int))+    | k >= 2^(20 ::Int) = RelativeUnit "MiB" (2^(20 :: Int))+    | k >= 2^(10 ::Int) = RelativeUnit "KiB" (2^(10 :: Int))+    | otherwise         = RelativeUnit "Bytes" 1++getUnitByFieldName :: String -> Double -> RelativeUnit+getUnitByFieldName fieldName fieldMin =+    case isTimeField fieldName of+        True -> getTimeUnit fieldMin+        False -> case isAllocationField fieldName of+            True -> getSpaceUnit fieldMin+            False -> RelativeUnit "" 1++-- returns (multiplier, units)+fieldUnits :: String -> Double -> GroupStyle -> RelativeUnit+fieldUnits fieldName fieldMin style =+    case style of+        Percent      -> RelativeUnit "%" 1+        PercentDiff  -> RelativeUnit "%" 1+        _ -> getUnitByFieldName fieldName fieldMin++-------------------------------------------------------------------------------+-- Comparison+-------------------------------------------------------------------------------++absoluteDiff :: Num a => a -> a -> a+absoluteDiff v1 v2 = v2 - v1++percentDiff :: (Fractional a, Num a) => a -> a -> a+percentDiff v1 v2 = ((v2 - v1) * 100) / v1++percent :: (Fractional a, Num a) => a -> a -> a+percent v1 v2 = (v2 * 100) / v1++cmpTransformColumns :: ReportType+                    -> GroupStyle+                    -> Estimator+                    -> DiffStrategy+                    -- XXX we do not really need the benchmark name here+                    -> [[(String, AnalyzedField)]]+                    -> (Maybe [[Estimator]], [[(String, Double)]])+cmpTransformColumns rtype style estimator diffStrategy cols =+    let cmpWith diff =+            let firstCol = head columns+                colTransform col =+                    let mkDiff (n1, v1) (n2,v2) =+                            verify (n1 == n2) (n2, diff v1 v2)+                    in zipWith mkDiff firstCol col+            in map colTransform (tail columns)++        cmpMinWith diff =+            let firstCol = head cols+                colTransform col = zipWith (mkMinDiff diff) firstCol col+            in map colTransform (tail cols)+    in case style of+            Absolute    -> (Nothing, columns)+            Percent     -> (Nothing, cmpWith percent)+            Diff        ->+                case diffStrategy of+                    MinEstimator ->+                        let (ests, vals) = unzip $ map unzip (cmpMinWith absoluteDiff)+                        in ( Just $ map (const estimator) (head cols) : ests+                           , head columns : vals+                           )+                    SingleEstimator ->+                        (Nothing, head columns : cmpWith absoluteDiff)+            PercentDiff ->+                -- In a comparative graphical chart we cannot show the absolute+                -- values in the baseline column as the units won't match for+                -- the baseline and the diff clusters.+                let baseCol =+                        case rtype of+                            TextReport -> head columns+                            GraphicalChart | length columns == 1 ->+                                head columns+                            GraphicalChart ->+                                map (\(n,_) -> (n,100)) (head columns)+                in case diffStrategy of+                    MinEstimator ->+                        let (ests, vals) = unzip $ map unzip (cmpMinWith percentDiff)+                        in ( Just $ map (const estimator) (head cols) : ests+                           , baseCol : vals+                           )+                    SingleEstimator ->+                       (Nothing, baseCol : cmpWith percentDiff)+    where+        verify a b = if a then b else error "bug: benchmark names mismatch"+        transformVals = map (map (second (getAnalyzedValue estimator)))+        columns = transformVals cols++        -- Find which estimator gives us the minimum diff+        mkMinDiff diff (n1, v1) (n2,v2) = verify (n1 == n2) $+            let meanDiff = diff (getAnalyzedValue Mean v1)+                                (getAnalyzedValue Mean v2)+                medDiff = diff (getAnalyzedValue Median v1)+                               (getAnalyzedValue Median v2)+                regDiff = diff (getAnalyzedValue Regression v1)+                               (getAnalyzedValue Regression v2)+            in if abs medDiff <= abs meanDiff+               then if abs medDiff <= abs regDiff+                    then (Median, (n2, medDiff))+                    else (Regression, (n2, regDiff))+                else if abs meanDiff <= abs regDiff+                     then (Mean, (n2, meanDiff))+                     else (Regression, (n2, regDiff))++transformColumnNames :: GroupStyle -> [ReportColumn] -> [ReportColumn]+transformColumnNames _ [] = []+transformColumnNames style columns@(h:t) =+    let withDiff = colSuffix baseName h : map (colSuffix diffName) t+    in case style of+            Diff        | length columns > 1 -> withDiff+            PercentDiff | length columns > 1 -> withDiff+            _           -> columns++    where+    colSuffix xl col = col { colName = xl (colName col) }+    baseName        = (++ "(base)")+    diffName        = (++ "(-base)")++-- Represents the data for a single benchmark run+data GroupMatrix = GroupMatrix+    { groupIndex :: Int+    , groupName   :: String+    , groupBenches :: [(String, String)] -- (newname, origname)+    , groupMatrix :: BenchmarkMatrix+    } deriving Show++-- Each run may be split into multiple groups of benchmarks.  Benchmarks can be+-- renamed by the classifier. Sanity checks:+-- Two original benchmarks cannot map to the same target benchmark+--+-- When using a comparative style report, after filtering and sorting:+-- Same original benchmark cannot belong to multiple groups+-- All groups must have exactly the same benchmark names+splitGroup :: (String -> Maybe (String, String))+           -> (Int, BenchmarkMatrix)+           -> [GroupMatrix]+splitGroup classify (serial, matrix@BenchmarkMatrix{..}) =+      mapMaybe (\x -> fmap (,x) $ classify x) (map fst rowValues)+    & sortBy (comparing (fst . fst))+    & groupBy ((==) `on` (fst . fst))+    & map (foldr foldGroup ("",[]))+    & map sanityCheckGroup+    & map (\(name, benches) ->+        GroupMatrix+        { groupIndex  = serial+        , groupName    = name+        , groupBenches = benches+        , groupMatrix  = matrix+        })++    where++    foldGroup ((grp, bench), srcBench) (_, tuples) =+        (grp, (bench, srcBench) : tuples)++    sanityCheckGroup orig@(grp, tuples) =+        let duplicated =+                  sortBy (comparing fst) tuples+                & groupBy ((==) `on` fst)+                & filter ((>1) . length)+        in if not $ null duplicated+           then+            let msg = unlines (map show duplicated)+            in error $ "Two benchmarks must not map to the same target \+               \benchmark. Please check your 'classifyBenchmark' operation. \+               \In group " ++ show grp ++ ", the following target benchmarks \+               \are mapped to more than one source benchmarks:\n" ++ msg+            else orig++-------------------------------------------------------------------------------+-- sort the benchmark groups+-------------------------------------------------------------------------------++findGroup :: [GroupMatrix] -> (String, Int) -> Maybe GroupMatrix+findGroup matrices (name, i) =+    find (\x -> groupName x == name && groupIndex x == i) matrices++sortGroups :: Config -> [GroupMatrix] -> IO [GroupMatrix]+sortGroups Config{..} matrices = do+    let origGroups = map (\x -> (groupName x, groupIndex x)) matrices+        newGroups = selectGroups origGroups++    filterSanity "selectGroups" origGroups newGroups+    return $ mapMaybe (findGroup matrices) newGroups++-------------------------------------------------------------------------------+-- sort the benchmarks+-------------------------------------------------------------------------------++extractColumn :: String -> GroupMatrix -> [(String, AnalyzedField)]+extractColumn field GroupMatrix{..} =+    let idx = elemIndex field (colNames groupMatrix)+        vals = case idx of+            Just i -> map (!! i) (map snd (rowValues groupMatrix))+            Nothing -> error $ "Field [" ++ field+                ++ "] does not exist in group ["+                ++ groupName ++ "] and run id [" ++ show groupIndex ++ "]"+    in zip (map fst groupBenches) vals++extractColumnValue :: String -> GroupMatrix -> Estimator -> [(String, Double)]+extractColumnValue field matrix estimator =+    map (second (getAnalyzedValue estimator)) $ extractColumn field matrix++benchmarkCompareSanity :: [String] -> GroupMatrix -> [String]+benchmarkCompareSanity benchmarks GroupMatrix{..} = do+    let benches = map fst groupBenches+    let absent = benchmarks \\ benches+    let msg =+            "selectBenchmarks: Group [" ++ groupName ++ "] run id ["+            ++ show groupIndex+            ++ "] does not contain the following selected benchmarks; \+            \ignoring them: " ++ show absent+            ++ "\nAvailable benchmarks in this group are: "+            ++ show benches++    if (null absent)+    then benchmarks+    else trace msg (benchmarks \\ absent)++selectBenchmarksByField :: Config+                        -> [GroupMatrix]+                        -> [[(String, Double)]]+                        -> [String]+selectBenchmarksByField Config{..} matrices columns =+    let bmnames = selectBenchmarks extractGroup+    in if (null bmnames)+       then error $ "selectBenchmarks must select at least one benchmark"+       else+           -- XXX instead of matrices we can just use columns here+           let xs = foldl benchmarkCompareSanity bmnames matrices+           in if (null xs)+              then error $ "selectBenchmarks: none of the selected benchmarks "+                    ++ show bmnames+                    ++ " is common to all the benchmark groups "+                    ++ show grpNames+              else xs++    where++    grpNames =+        let getName x = (groupName x, groupIndex x)+        in map getName matrices++    -- columns are benchmark groups in this case+    extractGroup (ColumnName (Left name)) =+            let len = length columns+            in if len <= 1+               then extractGroup $ ColumnName (Right (name, 0))+               else Left $ "selectBenchmarks: there are " ++ show len+                    ++ " runs in the input data, please specify the run \+                    \index [0-" ++ show (len - 1)+                    ++ "] along with the group name."+    extractGroup (ColumnName (Right (name, runId))) =+            extractColumnByGroupName name runId+    extractGroup (ColumnIndex n) = extractColumnByGroupIndex n++    -- The benchmark field is constant.  Extract all benchmark values for the+    -- given field and for the given group.+    findColumnIndex mxs (name, runId) =+        let foldFunc res@(idx, found) grp =+                case found of+                    False ->+                        if groupName grp == name && groupIndex grp == runId+                        then (idx, True)+                        else (idx + 1, found)+                    True -> res+        in foldl foldFunc (0, False) mxs++    extractColumnByGroupName name runId =+            case findColumnIndex matrices (name, runId) of+                (_, False) -> Left $ "Benchmark group name [" ++ name+                            ++ "] and index [" ++ show runId+                            ++ "] not found. Available groups are: "+                            ++ show grpNames+                (i, True) -> extractGroup (ColumnIndex i)++    extractColumnByGroupIndex idx =+        let len = length columns+        in if idx >= len+           then Left $ "Column index must be in the range [0-"+                ++ show (len - 1) ++ "]"+           else Right $ columns !! idx++selectBenchmarksByGroup :: Config -> GroupMatrix -> [String]+selectBenchmarksByGroup Config{..} grp@GroupMatrix{..} =+    -- XXX this is common to ByField and ByGroup+    let bmnames = selectBenchmarks extractField+    in if (null bmnames)+       then error $ "selectBenchmarks must select at least one benchmark"+       else bmnames++    where++    -- columns are benchmark fields in this case+    extractField (ColumnName (Left name)) = extractColumnByFieldName name+    extractField (ColumnName (Right (name, _))) =+        -- XXX runId does not make sense for fields+        extractColumnByFieldName name+    extractField (ColumnIndex n) = extractColumnByFieldIndex n++    -- The benchmark field is constant.  Extract all benchmark values for the+    -- given field and for the given group.+    extractColumnByFieldName name =+        let fields = colNames groupMatrix+        in case elem name fields of+            False -> Left $ "Benchmark field name [" ++ name+                        ++ "] not found in group ["+                        ++ groupName ++ "]. Available fields are: "+                        ++ show fields+            True -> Right $ extractColumnValue name grp estimator++    extractColumnByFieldIndex idx =+        let fields = colNames groupMatrix+            len = length fields+        in if idx >= len+           then Left $ "Column index must be in the range [0-"+                ++ show (len - 1) ++ "]"+           else Right $ extractColumnValue (fields !! idx) grp estimator++type NumberedLines = [(Int, [String])]++sanityCheckCSV :: CSV -> NumberedLines+sanityCheckCSV csvlines | null csvlines = error $ "The input file is empty"+sanityCheckCSV csvlines =+    let headRow = head csvlines+        rowLen = length headRow+    in  if not $ "name" `elem` map (map toLower) headRow+        then error "No 'Name' column found in the CSV header line"+        else+          -- Add line numbers for error reporting+          zip [1..] csvlines+          -- cleanup blank rows+        & filter (\(_,xs) -> xs /= [""])++          -- make sure all lines are of the same size, So that we can transpose+          -- back and forth without losing information.+        & map (\x@(i,xs) ->+               if length xs == rowLen+               then x+               else error $ "Line number " ++ show i+                        ++ " in the input file is not of the same length as\+                            \ the header line"+              )++-- An iteration field indicates that consecutive rows with the same benchmark+-- name have results from different iterations of the same benchmark and the+-- measurement fields have to be scaled per iteration based on the number of+-- iterations in the iteration count field.+--+-- Make sure that "iters" and "name" are the first and second columns+ensureIterField :: ([String], [NumberedLines])  -> ([String], [NumberedLines])+ensureIterField (header, groups) =+    ( "iters" : "name" : filter isNotNameIter header+    , map reorderNameIter groups+    )++    where++    isNotNameIter x =+           map toLower x /= "name"+        && map toLower x /= "iters"++    notNameIters [] = True+    notNameIters (x:_) = isNotNameIter x++    nameNotFound = error "Name field is required in the csv file"++    reorderNameIter csvlines =+          unzip csvlines+        & second (header :)+        & second transpose+        & second reorder+        & second transpose+        & uncurry zip++        where++        reorder xs =+            let findField x = find (\(y:_) -> map toLower y == x)+                iterCol = replicate (length (head xs) - 1) "1"+            in   fromMaybe iterCol (fmap tail $ findField "iters" xs)+               : fromMaybe nameNotFound (fmap tail $ findField "name" xs)+               : map tail (filter notNameIters xs)++-- Only keep those fields that are passed to this function+-- Also, preserve any predictor fields for regression analysis+filterFields :: [String] -> BenchmarkIterMatrix -> BenchmarkIterMatrix+filterFields fieldNames BenchmarkIterMatrix{..} =+    BenchmarkIterMatrix+        { iterPredColNames = ["iters"] ++ filter isPredictorField iterRespColNames+        , iterRespColNames = filter isRequestedField iterRespColNames+        , iterRowValues = transform iterRowValues+        }++    where++    transform :: [(String, [([Double], [Double])])] -> [(String, [([Double], [Double])])]+    transform = map (\(name, tuples) ->+        let (ys, zs) = unzip tuples+            pcols = transpose (map Left iterPredColNames : map (map Right) ys)+            rcols = transpose (map Left iterRespColNames : map (map Right) zs)+            pcols' = pcols ++ filter isPredictor rcols+            rcols' = filter requested rcols+            pcols'' = map (map fromRt) $ tail $ transpose pcols'+            rcols'' = map (map fromRt) $ tail $ transpose rcols'+        in (name, zip pcols'' rcols''))++    fromRt (Right x) = x+    fromRt _ = error "bug"++    isRequestedField = (`elem` fieldNames)++    requested [] = True+    requested (Left x:_) = isRequestedField x+    requested _ = error "bug"++    isPredictor [] = True+    isPredictor (Left x:_) = isPredictorField x+    isPredictor _ = error "bug"++-- Split the file into different runs+-- return the header fields and list of runs without the header+splitRuns :: NumberedLines -> ([String], [NumberedLines])+splitRuns csvlines =+    let header = snd $ head csvlines+        ls = linesBy (\x -> snd x == header) (tail csvlines)+    in (header, ls)++readWithError :: Read a => Int -> String -> (String, String) -> a+readWithError lno typ (fname, fval) =+    case readMaybe fval of+        Nothing -> error $ "Cannot read " ++ show fname+            ++ " field [" ++ show fval ++ "] as "+            ++ typ ++ " type at line number "+            ++ show lno+        Just n -> n++-- An iteration field indicates that consecutive rows with the same benchmark+-- name have results from different iterations of the same benchmark and the+-- measurement fields have to be scaled per iteration based on the number of+-- iterations in the iteration count field.+--+-- If the first column is iteration then fold all iterations and remove the+-- iteration column.+readIterations :: [String] -> NumberedLines -> BenchmarkIterMatrix+readIterations header csvlines =+    let tuples =+            map (parseNumericFields header) csvlines+            -- we now have a list of triples [(iter, name, (fieldName, [Double])]+          & groupBy successiveIters+          & map (foldl' addIters ("",[]))+    in BenchmarkIterMatrix+        { iterPredColNames = ["iters"]+        , iterRespColNames = drop 2 header+        , iterRowValues = tuples+        }++    where++    -- The first column is iters and the second is the name+    -- We zip the header for error reporting+    parseNumericFields hdr (lno, vals) = parseNumericTuples lno $ zip hdr vals++    parseNumericTuples lno (iter:(_,name):xs) =+          (readWithError lno "Int" iter :: Int+          , name+          , map (\x@(n,_) -> (n, readWithError lno "Double" x)) xs+                :: [(String, Double)]+          )+    parseNumericTuples _ _ = error "iters and name fields are needed"++    successiveIters (i1,name1,_) (i2,name2,_) = name2 == name1 && i2 > i1++    addIters (_,siters) (iter,name,vals) =+        (name, ([fromIntegral iter], map snd vals) : siters)++getFieldRange :: String -> Config -> Maybe (Double, Double)+getFieldRange fieldName Config{..} =+    let res = find (\(x, _, _) -> x == fieldName) fieldRanges+    in case res of+        Nothing -> Nothing+        Just (_, x, y) -> Just (x, y)++getFieldTick :: String -> Config -> Maybe FieldTick+getFieldTick fieldName Config{..} =+    fmap snd $ find (\x -> fst x == fieldName) fieldTicks++getReportExtension :: ReportType -> String+getReportExtension rtype =+    case rtype of+        TextReport -> ".txt"+        GraphicalChart -> ".svg"++prepareOutputFile :: FilePath -> ReportType -> FilePath -> Estimator -> String -> IO FilePath+prepareOutputFile dir rtype file est field = do+    let estStr = case est of+            Mean -> "mean"+            Median -> "median"+            Regression -> "coeff"+    let path = dir </> (file ++ "-" ++ estStr ++ "-" ++ field+                             ++ getReportExtension rtype)+    return path++prepareToReport :: FilePath -> Config -> IO (CSV, [String])+prepareToReport inputFile Config{..} = do+    case outputDir of+        Nothing -> return ()+        Just dir -> createDirectoryIfMissing True dir+    -- We assume the dataset is not big and therefore take liberties to process+    -- in a non-streaming fashion.+    csvData <- parseCSVFromFile inputFile+    case csvData of+        Left e -> error $ show e+        Right csvlines -> do+            when (null csvlines) $ error $ "The input file ["+                ++ show inputFile ++ "] is empty"+            let allFields = head csvlines+                fields = selectFields allFields+            filterSanity "selectFields" allFields fields+            let filt x = notElem (map toLower x) ["name", "iters"]+            return (csvlines, filter filt fields)++-- Keep only those benchmarks that belong to the group.+filterGroupBenchmarks :: [GroupMatrix] -> IO [GroupMatrix]+filterGroupBenchmarks matrices = return $ map filterMatrix matrices+    where+    filterMatrix matrix =+        -- XXX make sure there are no duplicates+        let m = groupMatrix matrix+            vals = map (\(new,old) ->+                (new, fromMaybe (error "bug") $ lookup old (rowValues m)))+                (groupBenches matrix)+        in matrix {groupMatrix = m {rowValues = vals}}++_filterCommonSubsets :: [BenchmarkIterMatrix] -> [BenchmarkIterMatrix]+_filterCommonSubsets matrices =+    let commonPreds =+            let initPreds = matrixPreds $ head matrices+            in foldl' intersectPreds initPreds (tail matrices)+    in map (isectCommonPreds commonPreds) matrices++    where++    pcols = iterPredColNames $ head matrices++    cmpPred name v1 v2 =+            case map toLower name of+                "iters" -> v1 == v2+                "nivcsw" -> v1 == v2+                _ -> v1 == v2++    isectBench (name1, preds1) (name2, preds2) =+        let isect row1 row2 = all id $ zipWith3 cmpPred pcols row1 row2+        in assert (name1 == name2) $ (name1, intersectBy isect preds1 preds2)++    matrixPreds = map (second (map fst)) . iterRowValues++    intersectPreds preds matrix = zipWith isectBench preds (matrixPreds matrix)++    isectRows (name1, preds1) (name2, xs) =+        let isect row1 = find (\(x,_) -> all id+                                $ zipWith3 cmpPred pcols row1 x) xs+        in assert (name1 == name2) $ (name1, mapMaybe isect preds1)++    isectCommonPreds preds matrix@BenchmarkIterMatrix{..} =+        matrix+            { iterRowValues = zipWith isectRows preds iterRowValues+            }++-- when comparing make sure all groups have same benchmarks and sort the other+-- ones based on the first column so that they are all in the same order.+selectCommon :: [GroupMatrix] -> IO [GroupMatrix]+selectCommon matrices =+    let commonBenches =+            let initBenches = map fst $ groupBenches $ head matrices+            in foldl' intersectBenches initBenches (tail matrices)+    in mapM (isectCommonBenches commonBenches) matrices++    where++    intersectBenches benches matrix =+        intersect benches (map fst $ groupBenches matrix)++    isectCommonBenches benches matrix@GroupMatrix{..} = do+        let absent = map fst groupBenches \\ benches+            msg =+                "Removing exclusive benchmarks " ++ show absent+                ++ " from column [" ++ groupName+                ++ "] run id [" ++ show groupIndex+            lookupBench x = lookup x groupBenches+            findBench x = (x, fromMaybe undefined (lookupBench x))+            newBenches = map findBench benches++        unless (null absent) $ putStrLn msg+        return matrix { groupBenches = newBenches }++prepareGroupMatrices :: Config -> CSV -> [String] -> IO (Int, [GroupMatrix])+prepareGroupMatrices cfg@Config{..} csvlines fields = do+    let (hdr, runs) =+              sanityCheckCSV csvlines+            & splitRuns+            & ensureIterField+    xs <- sequence $ map (readIterations hdr) runs+            & map (filterFields fields)+            -- & _filterCommonSubsets+            -- & map filterSamples+            & map foldBenchmark++    zip [0..] xs+        & map (splitGroup classifyBenchmark)+        & concat+        & sortGroups cfg+        >>= selectCommon+        >>= filterGroupBenchmarks+        >>= return . (length runs,)++-- XXX display GHC version as well+-- XXX display the OS/arch+-- XXX display compiler/RTS options as well e.g. -threaded and -N+-- This data should be in the measurement data++data ReportColumn = ReportColumn+    { colName   :: String+    , colUnit   :: RelativeUnit+    , colValues :: [Double]+    } deriving Show++-- XXX put reportAnalyzed in reportColumns+data RawReport = RawReport+    { reportOutputFile :: Maybe FilePath+    , reportIdentifier :: String+    , reportRowIds     :: [String]+    , reportColumns    :: [ReportColumn]+    , reportAnalyzed   :: [[AnalyzedField]]+    , reportEstimators :: Maybe [[Estimator]]+    } deriving Show++getFieldMin :: Config -> Double -> String -> Double+getFieldMin cfg minval fieldName =+    case getFieldRange fieldName cfg of+        Nothing -> minval+        Just (minr, _) -> minr++scaleAnalyzedField :: RelativeUnit -> AnalyzedField -> AnalyzedField+scaleAnalyzedField (RelativeUnit _ mult) AnalyzedField{..} =+    AnalyzedField+    { analyzedMean = analyzedMean / mult+    , analyzedStdDev = analyzedStdDev / mult++    , analyzedMedian = analyzedMedian / mult+    , analyzedOutliers = analyzedOutliers+    , analyzedOutlierVar = analyzedOutlierVar+    , analyzedKDE = analyzedKDE+    , analyzedRegCoeff = case+        analyzedRegCoeff of+            Nothing -> Nothing+            Just Estimate{..} ->+                let ConfInt{..} = estError+                in Just $ Estimate+                    { estPoint = estPoint / mult+                    , estError = ConfInt+                        { confIntLDX = confIntLDX / mult+                        , confIntUDX = confIntUDX / mult+                        , confIntCL = confIntCL+                        }+                    }+    , analyzedRegRSq = analyzedRegRSq+    }++prepareGroupsReport :: Config+                    -> GroupStyle+                    -> Maybe FilePath+                    -> ReportType+                    -> Int+                    -> String+                    -> [GroupMatrix]+                    -> RawReport+prepareGroupsReport cfg@Config{..} style outfile rtype runs field matrices =+    -- XXX Determine the unit based the whole range of values across all columns+    let sortValues :: [String] -> [(String, a)] -> [a]+        sortValues bmarks vals =+            map (\name -> fromMaybe (error "bug") (lookup name vals)) bmarks++        unsortedCols = map (extractColumn field) matrices++        (estimators, transformedCols) =+            cmpTransformColumns rtype style estimator diffStrategy unsortedCols+        benchmarks = selectBenchmarksByField cfg matrices transformedCols+        sortedCols = map (sortValues benchmarks) transformedCols+        origSortedCols = map (sortValues benchmarks) unsortedCols++        mkColUnits :: [RelativeUnit]+        mkColUnits =+            let cols =+                    if style == Diff || style == PercentDiff+                    -- if we consider diff values as well here then the+                    -- units will change to potentially very small.+                    then [head sortedCols]+                    else sortedCols+                minVal = getFieldMin cfg (minimum $ concat cols) field+            in case (rtype, style) of+                -- In case of percentDiff in TextReport we use absolute+                -- values in the baseline column, so the unit is different.+                (TextReport, PercentDiff) ->+                    let unit = fieldUnits field minVal Absolute+                        punit = fieldUnits field 1 style -- % unit+                    in unit : replicate (length matrices - 1) punit+                (GraphicalChart, PercentDiff) | length matrices == 1 ->+                    [fieldUnits field minVal Absolute]+                _ -> let unit = fieldUnits field minVal style+                     in replicate (length matrices) unit++        mkColValues :: [[Double]]+        mkColValues =+            let applyUnit col (RelativeUnit _ multiplier) =+                    map (/multiplier) col+            in zipWith applyUnit sortedCols mkColUnits++        mkColNames :: [String]+        mkColNames =+                let withSuffix x =+                        groupName x +++                            if runs > 1+                            then "(" ++ show (groupIndex x) ++ ")"+                            else ""+                    applyUnit name (RelativeUnit label _) =+                        name ++ inParens label+                in zipWith applyUnit (map withSuffix matrices) mkColUnits++        columns = getZipList $ ReportColumn+                    <$> ZipList mkColNames+                    <*> ZipList mkColUnits+                    <*> ZipList mkColValues++    in RawReport+            { reportOutputFile = outfile+            , reportIdentifier = field+            , reportRowIds     = benchmarks+            , reportColumns    = transformColumnNames style columns+            , reportAnalyzed   = zipWith (\x y -> map (scaleAnalyzedField x) y)+                                         mkColUnits origSortedCols+            , reportEstimators = estimators+            }++showStatusMessage :: Show a => Config -> String -> Maybe a -> IO ()+showStatusMessage cfg field outfile =+    let atitle = makeTitle field (diffString (presentation cfg)+                                 (diffStrategy cfg)) cfg+    in case outfile of+        Just path ->+            putStrLn $ "Creating chart "+                ++ "[" ++ atitle ++ "]"+                ++ " at "+                ++ show path+        Nothing -> return ()++reportComparingGroups+    :: GroupStyle+    -> FilePath+    -> Maybe FilePath+    -> ReportType+    -> Int+    -> Config+    -> (RawReport -> Config -> IO ())+    -> [GroupMatrix]+    -> String+    -> IO ()+reportComparingGroups style dir outputFile rtype runs cfg@Config{..} mkReport matrices field = do+    outfile <- case outputFile of+        Just file -> fmap Just $ prepareOutputFile dir rtype file+                                        estimator field+        Nothing -> return Nothing++    let rawReport = prepareGroupsReport cfg style outfile rtype runs field matrices+    showStatusMessage cfg field outfile+    mkReport rawReport cfg++-- Prepare report for a given group, the report would consist of multiple+-- field columns.+prepareFieldsReport :: Config+                 -> Maybe FilePath+                 -> GroupMatrix+                 -> RawReport+prepareFieldsReport cfg@Config{..} outfile group =+    let mkColNames :: [String]+        mkColNames = colNames $ groupMatrix group++        benchmarks = selectBenchmarksByGroup cfg group++        getBenchValues name =+              fromMaybe (error "bug") $+                lookup name (rowValues $ groupMatrix group)++        sortedCols = transpose $ map getBenchValues benchmarks+        minColValues = map (minimum . map (getAnalyzedValue estimator))+                           sortedCols++        mkColUnits :: [RelativeUnit]+        mkColUnits = map (\(x, v) -> getUnitByFieldName x (getFieldMin cfg v x))+                         (zip mkColNames minColValues)++        mkColValues :: [[Double]]+        mkColValues =+            let scaleCol (RelativeUnit _ multiplier) = map (/ multiplier)+            in  zipWith scaleCol mkColUnits+                    (map (map (getAnalyzedValue estimator)) sortedCols)++        addUnitLabel name (RelativeUnit label _) =+            if label /= []+            then name ++ inParens label+            else name+        withUnits xs = zipWith addUnitLabel xs mkColUnits++        columns = getZipList $ ReportColumn+                <$> ZipList (withUnits mkColNames)+                <*> ZipList mkColUnits+                <*> ZipList mkColValues++    in RawReport+            { reportOutputFile = outfile+            , reportIdentifier = groupName group+            , reportRowIds     = benchmarks+            , reportColumns    = columns+            , reportAnalyzed   = sortedCols+            , reportEstimators = Nothing+            }++reportPerGroup+    :: FilePath+    -> Maybe FilePath+    -> ReportType+    -> Config+    -> (RawReport -> Config -> IO ())+    -> GroupMatrix+    -> IO ()+reportPerGroup dir outputFile rtype cfg@Config{..} mkReport group = do+    outfile <- case outputFile of+        Just file -> fmap Just $ prepareOutputFile dir rtype file+                                        estimator (groupName group)+        Nothing -> return Nothing++    let rawReport = prepareFieldsReport cfg outfile group+    showStatusMessage cfg (groupName group) outfile+    mkReport rawReport cfg++-------------------------------------------------------------------------------+-- Utility functions+-------------------------------------------------------------------------------++showDiffStrategy :: DiffStrategy -> String+showDiffStrategy s =+    case s of+        SingleEstimator -> ""+        MinEstimator -> "using min estimator"++diffString :: Presentation -> DiffStrategy -> Maybe String+diffString style s =+    case style of+        Groups Diff        -> Just $ "Diff " ++ showDiffStrategy s+        Groups PercentDiff -> Just $ "Diff " ++ showDiffStrategy s+        _ -> Nothing++inParens :: String -> String+inParens str = "(" ++ str ++ ")"++showEstimator :: Estimator -> String+showEstimator est =+    case est of+        Mean       -> "Mean"+        Median     -> "Median"+        Regression -> "Regression Coeff."++makeTitle :: String -> Maybe String -> Config -> String+makeTitle field diff Config{..} =+       fromMaybe "" title+    ++ inParens field+    ++ inParens (showEstimator estimator)+    ++ case diff of+            Nothing -> ""+            Just str -> inParens str
+ lib/BenchShow/Graph.hs view
@@ -0,0 +1,161 @@+-- |+-- Module      : BenchShow.Graph+-- Copyright   : (c) 2018 Composewell Technologies+--+-- License     : BSD3+-- Maintainer  : harendra.kumar@gmail.com+-- Stability   : experimental+-- Portability : GHC+--++{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TupleSections #-}++module BenchShow.Graph+    (+      graph+    ) where++import Control.Arrow (second)+import Control.Monad (forM_, when)+import Control.Monad.Trans.State.Lazy (get, put)+import Data.Maybe (fromMaybe)++import Graphics.Rendering.Chart.Easy+import Graphics.Rendering.Chart.Backend.Diagrams++import BenchShow.Common++-------------------------------------------------------------------------------+-- Benchmarking field specific handling+-------------------------------------------------------------------------------++-- XXX need the ability to specify Units in the scale+yindexes :: Maybe (Double, Double)+         -> Maybe FieldTick+         -> Double+         -> Maybe [Double]+yindexes fieldRange granularity multiplier =+    case (fieldRange, granularity) of+        (Just (rangeMin, rangeMax), Just g) ->+            let range = rangeMax - rangeMin+                (size, count) =+                    case g of+                        TickSize n ->+                            (fromIntegral n, round $ range / fromIntegral n)+                        TickCount n -> (range / fromIntegral n, n)+            in let size' = size / multiplier+                   rmin  = rangeMin / multiplier+               in Just $ take (count + 1) [rmin, rmin + size'..]+        _ -> Nothing++-------------------------------------------------------------------------------++transformColumns :: [ReportColumn] -> [ReportColumn]+transformColumns columns =+    if length columns == 1+    -- workaround for a bug that renders the plot badly when using+    -- a single cluster in the bar chart.+    then columns ++ [ReportColumn+            { colName = ""+            , colUnit = RelativeUnit "" 1+            , colValues = []+            }]+     else columns++genGroupGraph :: RawReport -> Config -> IO ()+genGroupGraph RawReport{..} cfg@Config{..} = do+    let outputFile  = fromMaybe undefined reportOutputFile+        fieldRange  = getFieldRange reportIdentifier cfg+        granularity = getFieldTick reportIdentifier cfg+        -- XXX assert that the unit for all columns is the same+        RelativeUnit ulabel multiplier = colUnit (head reportColumns)+        replaceMu 'μ' = 'u'+        replaceMu x = x+        unitLabel = map replaceMu ulabel+        columns = transformColumns reportColumns+        diffStr =+            if length reportColumns > 1+            then diffString presentation diffStrategy+            else Nothing+        atitle = makeTitle reportIdentifier diffStr cfg++    toFile def outputFile $ do+        layout_title .= atitle+        layout_title_style . font_size .= 25++        layout_x_axis . laxis_generate .=+            autoIndexAxis (map (map replaceMu . colName) columns)+        layout_x_axis . laxis_style . axis_label_style . font_size .= 16+        layout_y_axis . laxis_style . axis_label_style . font_size .= 14++        layout <- get+        case _layout_legend layout of+            Nothing -> return ()+            Just style@LegendStyle{..} -> do+                let s = style { _legend_plot_size = 22+                              -- , _legend_margin = 40+                              -- This is not available in versions <= 1.8.2+                              -- , _legend_position = LegendBelow+                              , _legend_label_style = _legend_label_style+                                    { _font_size = 14 }+                              }+                put $ layout { _layout_legend = Just s }++        -- layout_y_axis . laxis_override .= axisGridAtTicks+        let modifyLabels ad = ad {+                _axis_labels = map (map (second (++ " " ++ unitLabel)))+                                   (_axis_labels ad)+            }+        when (presentation /= Fields) $+            layout_y_axis . laxis_override .= modifyLabels++        case yindexes fieldRange granularity multiplier of+            Nothing -> return ()+            Just indexes ->+                layout_y_axis . laxis_override .= \_ ->+                    makeAxis (let f = floor :: Double -> Int+                              in map ((++ " " ++ unitLabel) . show . f))+                             (indexes, [], [])++        plot $ fmap plotBars $ bars reportRowIds+            $ (addIndexes $ map colValues columns)++-- | Presents the benchmark results in a CSV input file as graphical bar charts+-- according to the provided configuration.  The first parameter is the input+-- file name, the second parameter is the name prefix for the output SVG image+-- file(s). One or more output files may be generated depending on the+-- 'Presentation' setting.  The last parameter is the configuration to+-- customize the graph, you can start with 'defaultConfig' as the base and+-- override any of the fields that you may want to change.+--+-- For example:+--+-- @+-- graph "bench-results.csv" "output-graph" 'defaultConfig'+-- @+--+-- @since 0.2.0+graph :: FilePath -> FilePath -> Config -> IO ()+graph inputFile outputFile cfg@Config{..} = do+    let dir = fromMaybe "." outputDir+    (csvlines, fields) <- prepareToReport inputFile cfg+    (runs, matrices) <- prepareGroupMatrices cfg csvlines fields+    case presentation of+        Groups style ->+            forM_ fields $+                reportComparingGroups style dir (Just outputFile)+                                      GraphicalChart runs cfg+                                      genGroupGraph matrices+        Fields -> do+            forM_ matrices $+                reportPerGroup dir (Just outputFile) GraphicalChart+                               cfg genGroupGraph+        Solo ->+            let funcs = map+                    (\mx -> reportComparingGroups Absolute dir+                        (Just $ outputFile ++ "-" ++ groupName mx)+                        GraphicalChart runs cfg genGroupGraph [mx])+                    matrices+             in sequence_ $ funcs <*> fields
+ lib/BenchShow/Report.hs view
@@ -0,0 +1,204 @@+-- |+-- Module      : BenchShow.Report+-- Copyright   : (c) 2018 Composewell Technologies+--+-- License     : BSD3+-- Maintainer  : harendra.kumar@gmail.com+-- Stability   : experimental+-- Portability : GHC+--++{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TupleSections #-}++module BenchShow.Report+    (+      report+    ) where++import Control.Applicative (ZipList(..))+import Control.Monad (forM_)+import Data.Maybe (fromMaybe)+import Statistics.Types (Estimate(..))+import Text.PrettyPrint.ANSI.Leijen hiding ((<$>))+import Text.Printf (printf)++import BenchShow.Common+import BenchShow.Analysis++-- XXX in comparative reports render lower than baseline in green and higher+-- than baseline in red+genGroupReport :: RawReport -> Config -> IO ()+genGroupReport RawReport{..} cfg@Config{..} = do+    let diffStr =+            if length reportColumns > 1+            then diffString presentation diffStrategy+            else Nothing+    putStrLn $ makeTitle reportIdentifier diffStr cfg+    let benchcol  = "Benchmark" : reportRowIds+        groupcols =+            let firstCol : tailCols = reportColumns+                colorCol ReportColumn{..} =+                    let f x = case presentation of+                                Groups Diff ->+                                    if x > 0 then dullred else dullgreen+                                Groups PercentDiff ->+                                    if x > fromIntegral threshold+                                    then dullred+                                    else if x < (-1) * fromIntegral threshold+                                         then dullgreen+                                         else id+                                _ -> id+                    in map f colValues+                renderTailCols estimators col analyzed =+                    let regular = renderGroupCol $ showCol col Nothing analyzed+                        colored = zipWith ($) (id : id : colorCol col)+                                    $ renderGroupCol+                                    $ showCol col estimators analyzed+                    in case presentation of+                        Groups Diff        -> colored+                        Groups PercentDiff -> colored+                        _ -> regular+            in renderGroupCol (showFirstCol firstCol)+             : case reportEstimators of+                Just ests -> getZipList $+                            renderTailCols+                        <$> ZipList (map Just $ tail ests)+                        <*> ZipList tailCols+                        <*> ZipList (tail reportAnalyzed)+                Nothing ->  getZipList $+                            renderTailCols+                        <$> pure Nothing+                        <*> ZipList tailCols+                        <*> ZipList (tail reportAnalyzed)+        rows = foldl (zipWith (<+>)) (renderCol benchcol) groupcols+    putDoc $ vcat rows+    putStrLn "\n"++    where++    renderCol [] = error "Bug: header row missing"+    renderCol col@(h : rows) =+        let maxlen = maximum (map length col)+        in map (fill maxlen . text) (h : replicate maxlen '-' : rows)++    renderGroupCol [] = error+        "Bug: There has to be at least one column in raw report"+    renderGroupCol col@(h : rows) =+        let maxlen = maximum (map length col)+        in map (\x -> indent (maxlen - length x) $ text x)+               (h : replicate maxlen '-' : rows)++    showEstimator est =+        case est of+            Mean       -> "(mean)"+            Median     -> "(medi)"+            Regression -> "(regr)"++    showEstVal estvals est =+        case est of+            Mean ->+                let sd = analyzedStdDev estvals+                    val = analyzedMean estvals+                in+                   if val /= 0+                   then printf "(%.2f)" $ sd / abs val+                   else ""+            Median ->+                let x = ovFraction $ analyzedOutlierVar estvals+                in printf "(%.2f)" x+            Regression ->+                case analyzedRegRSq estvals of+                    Just rsq -> printf "(%.2f)" (estPoint rsq)+                    Nothing -> ""++    showFirstCol ReportColumn{..} =+        let showVal = printf "%.2f"+            withEstimator val estvals =+                showVal val +++                    if verbose+                    then showEstVal estvals estimator+                    else ""+            withEstVal =+                zipWith withEstimator colValues (head reportAnalyzed)+        in colName : withEstVal++    showCol ReportColumn{..} estimators analyzed = colName :+        let showVal val =+                let showDiff =+                        if val > 0+                        then printf "+%.2f" val+                        else printf "%.2f" val+                in case presentation of+                        Groups Diff        -> showDiff+                        Groups PercentDiff -> showDiff+                        _ -> printf "%.2f" val++            showEstAnnot est =+                case presentation of+                    Groups Diff        -> showEstimator est+                    Groups PercentDiff -> showEstimator est+                    _ -> ""++        in case estimators of+            Just ests ->+                let withAnnot val estvals est =+                           showVal val+                        ++ if verbose+                           then showEstVal estvals est+                                ++ showEstAnnot est+                           else ""+                in getZipList $+                        withAnnot+                    <$> ZipList colValues+                    <*> ZipList analyzed+                    <*> ZipList ests++            Nothing ->+                let withEstVal val estvals est =+                           showVal val+                        ++ if verbose then showEstVal estvals est else ""+                in getZipList $+                        withEstVal+                    <$> ZipList colValues+                    <*> ZipList analyzed+                    <*> pure estimator++-- | Presents the benchmark results in a CSV input file as text reports+-- according to the provided configuration.  The first parameter is the input+-- file name. The second parameter, when specified using 'Just', is the name+-- prefix for the output SVG image file(s). One or more output files may be+-- generated with the given prefix depending on the 'Presentation' setting.+-- When the second parameter is 'Nothing' the reports are printed on the+-- console. The last parameter is the configuration to customize the report,+-- you can start with 'defaultConfig' as the base and override any of the+-- fields that you may want to change.+--+-- For example:+--+-- @+-- report "bench-results.csv" Nothing 'defaultConfig'+-- @+--+-- @since 0.2.0+report :: FilePath -> Maybe FilePath -> Config -> IO ()+report inputFile outputFile cfg@Config{..} = do+    let dir = fromMaybe "." outputDir+    (csvlines, fields) <- prepareToReport inputFile cfg+    (runs, matrices) <- prepareGroupMatrices cfg csvlines fields+    case presentation of+        Groups style ->+            forM_ fields $+                reportComparingGroups style dir outputFile TextReport runs+                               cfg genGroupReport matrices+        Fields -> do+            forM_ matrices $+                reportPerGroup dir outputFile TextReport cfg genGroupReport+        Solo ->+            let funcs = map+                    (\mx -> reportComparingGroups Absolute dir+                        (fmap (++ "-" ++ groupName mx) outputFile)+                        TextReport runs cfg genGroupReport [mx])+                    matrices+             in sequence_ $ funcs <*> fields
+ lib/BenchShow/Tutorial.hs view
@@ -0,0 +1,343 @@+{-# OPTIONS_GHC -fno-warn-unused-imports #-}+-- |+-- Module      : BenchShow.Tutorial+-- Copyright   : (c) 2018 Composewell Technologies+--+-- License     : BSD3+-- Maintainer  : harendra.kumar@gmail.com+--+-- BenchShow generates text reports and graphs from benchmarking results. It+-- allows you to manipulate the format of the report and the benchmarking data+-- to present it in many useful ways.++module BenchShow.Tutorial+    (+    -- * Generating benchmark results+    -- $generating++    -- * Reports and Charts+    -- $plotting++    -- * Grouping+    -- $grouping++    -- * Difference+    -- $difference++    -- * Percentage Difference+    -- $percent++    -- * Statistical Estimators+    -- $estimators++    -- * Difference Strategy+    -- $diffStrategy++    -- * Sorting+    -- $sorting++    -- * Regression+    -- $regression+    )+where++import BenchShow++-- $generating+--+-- To generate benchmark results use @gauge@ or @criterion@ benchmarking+-- libraries, define some benchmarks and run it with @--csv=results.csv@.+--+-- The resulting @results.csv@ may look like the following, for simplicity we+-- have removed some of the fields::+--+-- @+-- Name,time,maxrss+-- vector/fold,6.41620933137583e-4,2879488+-- streamly/fold,6.399582632376517e-4,2879488+-- vector/map,6.388913781259641e-4,2854912+-- streamly/map,6.533649051066093e-4,2793472+-- vector/zip,6.514202653014291e-4,2707456+-- streamly/zip,6.443344209329669e-4,2711552+-- @+--+-- If you run the benchmarks again (maybe after a change) the new results are+-- appended to the file. BenchShow can compare two or more result sets and+-- compare the results in different ways. We will use the above data for the+-- examples below, you can copy it and paste it in a file and use that as input+-- to a BenchShow application.+--+-- @gauge@ supports generating a raw csv file using @--csvraw@ option. The raw+-- csv file has results for many more benchmarking fields other than time e.g.+-- @maxrss@ or @allocated@ and many more.++-- $plotting+--+-- The most common usecase is to see the time and peak memory usage of a+-- program for each benchmark.  The 'report' API with 'Fields' presentation+-- style generates a multi-column report for a quick overview of all+-- benchmarks.  Units of the fields are automatically determined based on the+-- range of values:+--+-- @+-- 'report' "results.csv" Nothing 'defaultConfig' { 'presentation' = 'Fields' }+-- @+--+-- @+-- (default)(Median)+-- Benchmark     time(μs) maxrss(MiB)+-- ------------- -------- -----------+-- vector/fold     641.62        2.75+-- streamly/fold   639.96        2.75+-- vector/map      638.89        2.72+-- streamly/map    653.36        2.66+-- vector/zip      651.42        2.58+-- streamly/zip    644.33        2.59+-- @+--+-- We can generate equivalent visual report using 'graph', it generates one bar+-- chart for each column:+--+-- @+-- 'graph' "results.csv" "output" 'defaultConfig'+-- @+--+-- By default all the benchmarks are placed in a single benchmark group named+-- @default@.+--+-- <<docs/full-median-time.svg Median Time Full>>+--++-- $grouping+--+-- Let's write a benchmark classifier to put the @streamly@ and @vector@+-- benchmarks in their own groups:+--+-- @+--    classifier name =+--        case splitOn "/" name of+--            grp : bench -> Just (grp, concat bench)+--            _          -> Nothing+-- @+--+-- Now we can show the two benchmark groups as columns each showing the time+-- field for that group. We can generate separate reports comparing different+-- benchmark fields (e.g. @time@ and @maxrss@) for all the groups::+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig' { 'classifyBenchmark' = classifier }+-- @+--+-- @+-- (time)(Median)+-- Benchmark streamly(μs) vector(μs)+-- --------- ------------ ----------+-- fold            639.96     641.62+-- map             653.36     638.89+-- zip             644.33     651.42+-- @+--+-- We can do the same graphically as well, just replace 'report' with 'graph'+-- in the code above.  Each group is placed as a cluster on the graph. Multiple+-- clusters are placed side by side on the same scale for easy+-- comparison. For example:+--+-- <<docs/grouped-median-time.svg Median Time Grouped>>++-- $difference+--+-- We can make the first group as baseline and report the subsequent groups as+-- a difference from the baseline:+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig'+--          { 'classifyBenchmark' = classifier+--          , 'presentation' = 'Groups' 'Diff'+--          }+-- @+--+-- @+-- (time)(Median)(Diff using min estimator)+-- Benchmark streamly(μs)(base) vector(μs)(-base)+-- --------- ------------------ -----------------+-- fold                  639.96             +1.66+-- map                   653.36            -14.47+-- zip                   644.33             +7.09+-- @+--+-- In a chart, the second cluster plots the difference @streamly - vector@.+--+-- <<docs/grouped-delta-median-time.svg Median Time Grouped Delta>>++-- $percent+--+-- Absolute difference does not give us a good idea about how good or bad+-- the comparison is. We can report precentage difference instead:+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig'+--          { 'classifyBenchmark' = classifier+--          , 'presentation' = 'Groups' 'PercentDiff'+--          }+-- @+--+-- @+-- (time)(Median)(Diff using min estimator)+-- Benchmark streamly(μs)(base) vector(%)(-base)+-- --------- ------------------ ----------------+-- fold                  639.96            +0.26+-- map                   653.36            -2.22+-- zip                   644.33            +1.10+-- @+--+-- Graphically:+--+-- <<docs/grouped-percent-delta-median-time.svg Median Time Percent Delta>>++-- $estimators+--+-- When multiple samples are available for each benchmark we report the+-- 'Median' by default. However, other estimators like 'Mean' and 'Regression'+-- (a value arrived at by linear regression) can be used:+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig'+--          { 'classifyBenchmark' = classifier+--          , 'presentation' = 'Groups' 'PercentDiff'+--          , 'estimator' = 'Regression'+--          }+-- @+--+-- @+-- (time)(Regression Coeff.)(Diff using min estimator)+-- Benchmark streamly(μs)(base) vector(%)(-base)+-- --------- ------------------ ----------------+-- fold                  639.96            +0.26+-- map                   653.36            -2.22+-- zip                   644.33            +1.10+-- @+--+-- Graphically:+--+-- <<docs/grouped-percent-delta-coeff-time.svg Regression Coeff. Time Percent Delta>>++-- $diffStrategy+--+-- A 'DiffStrategy' controls how the difference between two groups being+-- compared is arrived at. By default we use the 'MinEstimators' strategy which+-- computes the difference using all the available estimators and takes the+-- minimum of all. We can use a 'SingleEstimator' strategy instead if we so+-- desire, it uses the estimatorr configured for the report using the+-- @estimator@ field of the configuration..+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig'+--          { 'classifyBenchmark' = classifier+--          , 'presentation' = 'Groups' 'PercentDiff'+--          , 'estimator' = 'Regression'+--          , 'diffStrategy' = 'SingleEstimator'+--          }+-- @+--+-- @+-- (time)(Regression Coeff.)(Diff )+-- Benchmark streamly(μs)(base) vector(%)(-base)+-- --------- ------------------ ----------------+-- fold                  639.96            +0.26+-- map                   653.36            -2.22+-- zip                   644.33            +1.10+-- @+--+-- Graphically:+--+-- <<docs/grouped-single-estimator-coeff-time.svg Single Estimator Time Percent Delta>>++-- $sorting+--+-- Percentage difference does not immediately tell us the worst affected+-- benchmarks. We can sort the results by the difference:+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig'+--          { 'classifyBenchmark' = classifier+--          , 'presentation' = 'Groups' 'PercentDiff'+--          , 'selectBenchmarks' = \f ->+--                     reverse+--                   $ map fst+--                   $ sortBy (comparing snd)+--                   $ either error id $ f $ 'ColumnIndex' 1+--          }+-- @+--+-- @+-- (time)(Median)(Diff using min estimator)+-- Benchmark streamly(μs)(base) vector(%)(-base)+-- --------- ------------------ ----------------+-- zip                   644.33            +1.10+-- fold                  639.96            +0.26+-- map                   653.36            -2.22+-- @+--+-- This tells us that zip is the relatively worst benchmark for vector compared+-- to streamly, as it takes 1.10% more time, whereas map is the best taking+-- 2.22% less time..+--+-- Graphically:+--+-- <<docs/grouped-percent-delta-sorted-median-time.svg Median Time Percent Delta>>++-- $regression+--+-- We can append benchmarks results from multiple runs to the same file. These+-- runs can then be compared. We can run benchmarks before and after a change+-- and then report the regressions by percentage change in a sorted order:+--+-- Given the following results file with two runs appended:+--+-- @+-- Name,time+-- streamly/fold,1.755309435106302e-2+-- streamly/zip,2.960114434592148e-2+-- streamly/map,2.4673020708256527e-2+-- Name,time+-- streamly/fold,8.970816964261911e-3+-- streamly/zip,8.439519884529081e-3+-- streamly/map,6.972814233286865e-3+-- @+--+-- This code generates the report that follows:+--+-- @+--    'report' "results.csv" Nothing+--      'defaultConfig'+--          { 'classifyBenchmark' = classifier+--          , 'presentation' = 'Groups' 'PercentDiff'+--          , 'selectBenchmarks' = \f ->+--                     reverse+--                   $ map fst+--                   $ sortBy (comparing snd)+--                   $ either error id $ f $ 'ColumnIndex' 1+--          }+-- @+--+-- @+-- (time)(Median)(Diff using min estimator)+-- Benchmark streamly(0)(μs)(base) streamly(1)(%)(-base)+-- --------- --------------------- ---------------------+-- zip                      644.33                +23.28+-- map                      653.36                 +7.65+-- fold                     639.96                -15.63+-- @+--+-- It tells us that in the second run the worst affected benchmark is zip+-- taking 23.28 percent more time comapred to the baseline.+--+-- Graphically:+--+-- <<docs/regression-percent-descending-median-time.svg Median Time Regression>>
+ stack-8.2.yaml view
@@ -0,0 +1,14 @@+resolver: lts-11.10+packages:+- '.'+extra-deps:+  - Chart-diagrams-1.8.3+  - SVGFonts-1.6.0.3+  - diagrams-core-1.4.0.1+  - diagrams-lib-1.4.2+  - diagrams-postscript-1.4+  - diagrams-svg-1.4.1.1+  - diagrams-solve-0.1.1+  - dual-tree-0.2.1+  - lens-4.15.4+  - free-4.12.4
+ stack.yaml view
@@ -0,0 +1,7 @@+resolver: lts-12.11+packages:+- '.'+extra-deps:+  - Chart-1.9+  - Chart-diagrams-1.9+  - SVGFonts-1.6.0.3
+ test/Doc.hs view
@@ -0,0 +1,139 @@+{-# LANGUAGE FlexibleContexts #-}++module Main where++import Data.Ord (comparing)+import Data.List (sortBy)+import Data.List.Split (splitOn)++import BenchShow++main :: IO ()+main = do+    let classifier name =+            case splitOn "/" name of+                grp : rest -> Just (grp, concat rest)+                _      -> Nothing++    graph "test/results-doc.csv" "docs/full" defaultConfig+    report "test/results-doc.csv" Nothing+        defaultConfig { presentation = Fields }++    graph "test/results-doc.csv" "docs/grouped"+        defaultConfig+        { classifyBenchmark = classifier }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier }++    graph "test/results-doc.csv" "docs/grouped-percent"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups Percent+        }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups Percent+        }++    graph "test/results-doc.csv" "docs/grouped-delta"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups Diff+        }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups Diff+        }++    graph "test/results-doc.csv" "docs/grouped-percent-delta"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        }++    graph "test/results-doc.csv" "docs/grouped-percent-delta"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , estimator = Regression+        }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , estimator = Regression+        }++    graph "test/results-doc.csv" "docs/grouped-single-estimator"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , estimator = Regression+        , diffStrategy = SingleEstimator+        }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , estimator = Regression+        , diffStrategy = SingleEstimator+        , verbose = True+        }++    graph "test/results-doc.csv" "docs/grouped-percent-delta-sorted"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , selectBenchmarks =+              \f ->+                    reverse+                  $ map fst+                  $ sortBy (comparing snd)+                  $ either error id $ f $ ColumnIndex 1+        }+    report "test/results-doc.csv" Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , selectBenchmarks =+              \f ->+                    reverse+                  $ map fst+                  $ sortBy (comparing snd)+                  $ either error id $ f $ ColumnIndex 1+        }++    graph+        "test/results-doc-multi.csv"+        "docs/regression-percent-descending"+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , selectBenchmarks =+              \f ->+                    reverse+                  $ map fst+                  $ sortBy (comparing snd)+                  $ either error id $ f $ ColumnIndex 1+        }+    report+        "test/results-doc-multi.csv"+        Nothing+        defaultConfig+        { classifyBenchmark = classifier+        , presentation = Groups PercentDiff+        , selectBenchmarks =+              \f ->+                    reverse+                  $ map fst+                  $ sortBy (comparing snd)+                  $ either error id $ f $ ColumnIndex 1+        }
+ test/Main.hs view
@@ -0,0 +1,162 @@+{-# LANGUAGE FlexibleContexts #-}++module Main where++import Data.Function (on)+import Data.List+import Data.List.Split (splitOn)+-- import Data.Maybe (catMaybes)+-- import System.Process.Typed (readProcess_)+import BenchShow++-- import qualified Data.Text.Lazy as T+-- import qualified Data.Text.Lazy.Encoding as T++-- XXX use package name and a tag+packages :: [String]+packages =+    [ "list"+    , "pure-vector"+    , "vector"+    , "streamly"+    , "streaming"+    , "conduit"+    , "pipes"+    , "machines"+    , "drinkery"+    ]++-------------------------------------------------------------------------------+main :: IO ()+main = do+    {-+    (out, _) <- readProcess_ "stack --system-ghc list-dependencies --bench"++    -- Get our streaming packages and their versions+    let match [] = Nothing+        match (_ : []) = Nothing+        match (x : y : _) =+            case elem x packages of+                False -> Nothing+                True -> Just (x, y)++        -- pkginfo is [(packagename, version)]+        pkginfo =+              catMaybes+            $ map match+            $ map words (lines (T.unpack $ T.decodeUtf8 out))+    -}+    let pkginfo = []++    -- suffix versions to packages+    let suffixVersion p =+            case lookup p pkginfo of+                Nothing -> p+                Just v -> p ++ "-" ++ v++    let chartTitle = "Cheaper Operations (Lower is Better)"+        prefixes =+            [ "elimination/toNull"+            , "filtering/drop-all"+            , "filtering/dropWhile-true"+            , "filtering/filter-all-out"+            , "elimination/last"+            , "elimination/fold"+            , "transformation/map"+            , "filtering/take-all"+            , "filtering/takeWhile-true"+            , "filtering/filter-all-in"+            , "filtering/filter-even"+            , "transformation/scan"+            ]+        bsort bs =+                let i = intersect (map (last . splitOn "/") prefixes) bs+                in i ++ (bs \\ i)+        cfg = defaultConfig+            { title = Just chartTitle+            , outputDir = Just "charts"+            , classifyBenchmark = \bm ->+                case any (`isPrefixOf` bm) prefixes of+                    True ->+                        let xs = reverse (splitOn "/" bm)+                        in Just (suffixVersion (xs !! 0), xs !! 1)+                    False -> Nothing+            , selectBenchmarks = \g -> bsort $+                either error (map fst) $ g (ColumnIndex 0)+            , selectGroups = \gs ->+                let gs' = map fst gs+                    i = intersect (map suffixVersion packages) gs'+                    new = i ++ (gs' \\ i)+                in concat $ map (\x -> filter (\(y,_) -> y == x) gs) new+            }++    -- csv format+    graph "test/results.csv" "csv-full" cfg++    -- raw csv format++    graph "test/results.csvraw" "csvraw-solo"+            cfg { presentation = Solo }++    -- multi-field graph+    graph "test/results.csvraw" "csvraw-full-fields"+            cfg { presentation = Fields }++    -- multi-groupd graphs+    graph "test/results.csvraw" "csvraw-full"+            cfg { presentation = Groups Absolute }++    graph "test/results.csvraw" "csvraw-delta"+            cfg { fieldRanges = [("mean", -20000, 50000)]+                , fieldTicks = [("mean", TickCount 7)]+                , presentation = Groups Diff+                , selectFields = (`intersect` ["time"])+                }+    graph "test/results.csvraw" "csvraw-percent"+            cfg { presentation = Groups Percent+                , selectFields = (`intersect` ["time"])+                }+    graph "test/results.csvraw" "csvraw-percent-delta"+            cfg { presentation = Groups PercentDiff+                , selectFields = (`intersect` ["time"])+                }++    -- Multi-field text reports+    report "test/results.csv" Nothing+            cfg { presentation = Fields }++    report "test/results.csvraw" Nothing+            cfg { presentation = Solo }++    report "test/results.csvraw" Nothing+            cfg { presentation = Fields }++    -- XXX disabled until a fixed version of statistics is released+            {-+    report "test/results.csvraw" Nothing+            cfg { presentation = Fields+                , selectFields = drop 7+                }+                -}++    -- Multi-group text reports+    report "test/results.csv" Nothing+            cfg { presentation = Groups Absolute+                , selectBenchmarks = \g ->+                    either error (map fst . sortBy (compare `on` snd))+                           (g (ColumnIndex 1))+                }++    report "test/results.csv" Nothing+            cfg { presentation = Groups Percent+                }++    report "test/results.csv" Nothing+            cfg { presentation = Groups PercentDiff+                , selectBenchmarks = \g ->+                    either error (map fst . sortBy (compare `on` snd))+                           (g (ColumnIndex 1))+                }+    report "test/results.csv" Nothing+            cfg { presentation = Groups Diff+                }
+ test/results-doc-multi.csv view
@@ -0,0 +1,8 @@+Name,time
+streamly/fold,6.399582632376517e-4
+streamly/map,6.533649051066093e-4
+streamly/zip,6.443344209329669e-4
+Name,time
+streamly/fold,5.399582632376517e-4
+streamly/map,7.033649051066093e-4
+streamly/zip,7.943344209329669e-4
+ test/results-doc.csv view
@@ -0,0 +1,7 @@+Name,time,maxrss
+vector/fold,6.41620933137583e-4,2879488
+streamly/fold,6.399582632376517e-4,2879488
+vector/map,6.388913781259641e-4,2854912
+streamly/map,6.533649051066093e-4,2793472
+vector/zip,6.514202653014291e-4,2707456
+streamly/zip,6.443344209329669e-4,2711552
+ test/results.csv view
@@ -0,0 +1,61 @@+Name,Mean,MeanLB,MeanUB,Stddev,StddevLB,StddevUB
+elimination/toNull/vector,7.094245488933795e-3,6.985926141446071e-3,7.2348648735278825e-3,3.833171418050209e-4,3.013819048857454e-4,5.639266962383408e-4
+elimination/toNull/streamly,1.5535858853843156e-2,1.5303019558636742e-2,1.5838961771453233e-2,7.035941289132703e-4,5.36604770584022e-4,8.924252225050569e-4
+elimination/toNull/streaming,1.4555433566011359e-2,1.439555761799639e-2,1.4879887615128724e-2,6.001982142413209e-4,3.9759609086605503e-4,9.857093883043303e-4
+elimination/toList/vector,0.10181891926170634,0.10062884958849205,0.10428734162361111,2.830367265863095e-3,1.2923172961228665e-3,4.738107776913244e-3
+elimination/toList/streamly,0.1286904671070106,0.1261671276195767,0.1320037209212963,4.851626761993156e-3,3.277373376080638e-3,6.358806192957255e-3
+elimination/toList/streaming,0.1593036601202381,0.15727833134940478,0.162464661525,3.6568801494773584e-3,1.9340717354754215e-3,5.808813683426664e-3
+elimination/fold/vector,8.970816964261911e-3,8.862875920178561e-3,9.159107224733846e-3,4.3287357257695955e-4,2.5534154958464816e-4,7.238306298385503e-4
+elimination/fold/streamly,1.755309435106302e-2,1.7310624800648617e-2,1.786907805026368e-2,7.049759968657329e-4,4.896602420577079e-4,1.0970893394124349e-3
+elimination/fold/streaming,1.60574848729037e-2,1.5848508478648212e-2,1.6332859572630976e-2,6.257166768216161e-4,4.736681885518075e-4,7.989422274002368e-4
+elimination/last/vector,7.381571798721483e-3,7.272364065198598e-3,7.474503854183091e-3,3.1228024104956807e-4,2.482118658597265e-4,3.7891260676064343e-4
+elimination/last/streamly,1.7978414259540897e-2,1.7760325234796356e-2,1.8260108639995946e-2,6.395490084736643e-4,4.5428287249861293e-4,8.831163594593495e-4
+elimination/last/streaming,1.4386330732464639e-2,1.4222859386672766e-2,1.4589814588885763e-2,4.788504683504701e-4,3.560746592257156e-4,6.271882976135548e-4
+transformation/scan/vector,8.439519884529081e-3,8.322484519043615e-3,8.553844851414171e-3,3.3336620855519626e-4,2.615245833250649e-4,4.433041414291662e-4
+transformation/scan/streamly,2.960114434592148e-2,2.909611153048501e-2,3.0209059319444443e-2,1.2463149958692676e-3,9.648307161949952e-4,1.5900987042219415e-3
+transformation/scan/streaming,3.3713425311247665e-2,3.335999164918374e-2,3.427457881504827e-2,9.220560158917161e-4,6.317172899678499e-4,1.3506594193989341e-3
+transformation/map/vector,6.972814233286865e-3,6.885884902697828e-3,7.0855299307407e-3,3.147049577997673e-4,2.2830378407806494e-4,3.9990241048623186e-4
+transformation/map/streamly,2.4673020708256527e-2,2.4255486660085725e-2,2.5206941798400755e-2,1.0755879349327528e-3,8.416234913425323e-4,1.4385335356088132e-3
+transformation/map/streaming,2.367734329475773e-2,2.3250757952402796e-2,2.414545791379097e-2,1.0363481780965918e-3,8.172297323318017e-4,1.3931795101996152e-3
+transformation/mapM/vector,6.956734171276351e-3,6.868621617767402e-3,7.061314244214243e-3,2.923299349084265e-4,2.4215392195589414e-4,3.5328329558668834e-4
+transformation/mapM/streamly,3.7157534991041116e-2,3.660648837474095e-2,3.806823481076097e-2,1.5360283131669716e-3,9.190548861569087e-4,2.4545179173925406e-3
+transformation/mapM/streaming,3.866694053240761e-2,3.799927545924145e-2,3.925817714525726e-2,1.3785580575016278e-3,1.112891630834128e-3,1.8392053235581861e-3
+transformation/concat/vector,2.9765130883150963e-2,2.9362275086016926e-2,3.0227826660326425e-2,1.0228795225942365e-3,7.186879185513682e-4,1.4846382983289548e-3
+transformation/concat/streamly,3.040004314283659e-7,2.776835609681344e-7,3.9935496608656846e-7,3.3619205304347294e-7,1.383504401077815e-7,6.9871426549012e-7
+transformation/concat/streaming,3.094311532700608e-7,2.842190247877785e-7,3.924364003949045e-7,3.1892481040123943e-7,1.4429170840149362e-7,6.795040880719174e-7
+filtering/filter-even/vector,8.30423085582406e-3,8.193038748823184e-3,8.428798149242325e-3,3.449209283290763e-4,2.6887047659821304e-4,5.154392071208214e-4
+filtering/filter-even/streamly,2.9964333919230115e-2,2.9568200763532265e-2,3.0405853378493268e-2,9.215833415579061e-4,6.95044102248307e-4,1.2045014036185494e-3
+filtering/filter-even/streaming,2.692613552315337e-2,2.6559254772940726e-2,2.7279634114779593e-2,8.408327316924952e-4,6.402273965577543e-4,1.1537830309785852e-3
+filtering/filter-all-out/vector,8.32074983267404e-3,8.193723844743175e-3,8.464161605964245e-3,4.0433197885516523e-4,3.1512377307398037e-4,5.361540416638644e-4
+filtering/filter-all-out/streamly,1.6435935609503457e-2,1.6281254768610323e-2,1.6660080089232362e-2,5.179338568643696e-4,3.657595029852904e-4,8.011074083391534e-4
+filtering/filter-all-out/streaming,1.511672582938921e-2,1.499602432710964e-2,1.5255510776781275e-2,3.512441302032823e-4,2.744273567285252e-4,4.5535928253625005e-4
+filtering/filter-all-in/vector,8.300080216247663e-3,8.20273900734057e-3,8.396008846953806e-3,2.9493829124889145e-4,2.3463228033073773e-4,3.6616195182937237e-4
+filtering/filter-all-in/streamly,2.580161894251872e-2,2.544925120635578e-2,2.6307642769105338e-2,9.902126325329625e-4,7.355927711574959e-4,1.4542665714806322e-3
+filtering/filter-all-in/streaming,2.5460989552346748e-2,2.3944454790596863e-2,3.1313673363906884e-2,6.420907574271975e-3,5.389170980872196e-4,1.2802983731693291e-2
+filtering/take-all/vector,7.554712094053887e-3,7.447748698208888e-3,7.6964069859496095e-3,3.812295630971772e-4,3.0657721713257623e-4,5.188356793898427e-4
+filtering/take-all/streamly,2.2605431593960786e-2,2.232512896502684e-2,2.2893539044402528e-2,6.963695234269069e-4,5.560458739362316e-4,9.422837547603868e-4
+filtering/take-all/streaming,2.240656206791497e-2,2.2115253914179605e-2,2.3007029252298118e-2,9.392218354759729e-4,5.692792891638718e-4,1.6960668955727366e-3
+filtering/takeWhile-true/vector,7.902057324778923e-3,7.802513203184861e-3,8.028260150437378e-3,3.3092433296561734e-4,2.3830200993850553e-4,4.686920337925874e-4
+filtering/takeWhile-true/streamly,2.3684560818956795e-2,2.3346452214895647e-2,2.427361567470202e-2,1.0967606701040003e-3,6.750172680371209e-4,1.6142784618872925e-3
+filtering/takeWhile-true/streaming,2.2994956360238374e-2,2.2773562952187028e-2,2.3250993924362844e-2,5.602039975121314e-4,4.319631457083682e-4,7.799028287180862e-4
+filtering/drop-all/vector,7.590638393550431e-3,7.4861445175908965e-3,7.77068545687903e-3,4.057635662976568e-4,2.8455901566306176e-4,5.896549876755785e-4
+filtering/drop-all/streamly,1.6543127167242364e-2,1.636054860928866e-2,1.6882173668146396e-2,6.351949068573652e-4,3.616572784753374e-4,1.083969910927824e-3
+filtering/drop-all/streaming,1.482513855803714e-2,1.4644690394185712e-2,1.502670476996737e-2,4.936733064771999e-4,4.030960587803336e-4,6.505256338678598e-4
+filtering/dropWhile-true/vector,7.985640359864448e-3,7.87086488026683e-3,8.186802541176028e-3,4.6667688050450645e-4,2.6684231455176624e-4,7.863916148565587e-4
+filtering/dropWhile-true/streamly,1.7391174070375954e-2,1.714282472374124e-2,1.7801799374999563e-2,7.56285327685396e-4,5.345426527858918e-4,1.169806953667058e-3
+filtering/dropWhile-true/streaming,1.5854750991093305e-2,1.5722591913888584e-2,1.6008656075404634e-2,3.725710055988594e-4,2.997623164466669e-4,4.938065105457378e-4
+zip/vector,7.009336809774375e-3,6.918703618030024e-3,7.0928492393608e-3,2.626583209641968e-4,2.2504934198859018e-4,3.2368419197669276e-4
+zip/streamly,4.3001961046646504e-2,4.2304082061778776e-2,4.3768913541184735e-2,1.4748966350939512e-3,1.1643230316162368e-3,2.1337563589838974e-3
+zip/streaming,3.183891538385486e-2,3.1305665841360034e-2,3.269987082572672e-2,1.4699878733804934e-3,8.122237709343391e-4,2.2474798370910303e-3
+compose/mapM/vector,7.058952711967692e-3,6.94788088954212e-3,7.1875500517399465e-3,3.620441811124657e-4,2.803341036154593e-4,4.806080392910757e-4
+compose/mapM/streamly,6.0535911749361536e-2,5.934949574476869e-2,6.189077518424908e-2,2.314241593025451e-3,1.7536527753028274e-3,3.3080717927129774e-3
+compose/mapM/streaming,0.16695647992559523,0.1645903573125,0.17036400319642858,4.6794317727961825e-3,2.758088092129939e-3,6.801288358208042e-3
+compose/map-with-all-in-filter/vector,8.372629178404188e-3,8.23239966339582e-3,8.532415896967235e-3,4.5295731341307125e-4,3.4386979002403194e-4,5.93627883906338e-4
+compose/map-with-all-in-filter/streamly,0.1335277624175926,0.13183044036666666,0.13550619638425926,3.0875724678161567e-3,2.0227280113052984e-3,4.376001246056009e-3
+compose/map-with-all-in-filter/streaming,9.572398953408731e-2,9.400119201444444e-2,9.743897824226191e-2,2.971406943346079e-3,2.218091435863518e-3,4.08689675909988e-3
+compose/all-in-filters/vector,8.347156601212165e-3,8.243694355626385e-3,8.466610406188152e-3,3.4335342225640954e-4,2.630682388336908e-4,4.616621605681032e-4
+compose/all-in-filters/streamly,5.7421390634228804e-2,5.6078092408445405e-2,5.999332159860139e-2,3.2109796738521274e-3,1.192209413054052e-3,4.410418898298739e-3
+compose/all-in-filters/streaming,4.8658251369222645e-2,4.7970557005676664e-2,4.98548077533524e-2,1.7508906076776347e-3,9.825165700676152e-4,2.800199685625015e-3
+compose/all-out-filters/vector,8.281670328372731e-3,8.167489800469652e-3,8.443050815961325e-3,4.0084778472088925e-4,3.0392603317756984e-4,5.650898560666654e-4
+compose/all-out-filters/streamly,1.6500459123802512e-2,1.6271885226822193e-2,1.6764239383638458e-2,6.150915134948359e-4,4.389226314328499e-4,9.023092323339965e-4
+compose/all-out-filters/streaming,1.5058465694240424e-2,1.4862890172989624e-2,1.526155000574456e-2,5.282010673746976e-4,4.4472626658270605e-4,6.672976310251728e-4
+ test/results.csvraw view
@@ -0,0 +1,1876 @@+Name,iters,time,cycles,cpuTime,utime,stime,maxrss,minflt,majflt,nvcsw,nivcsw,allocated,numGcs,bytesCopied,mutatorWallSeconds,mutatorCpuSeconds,gcWallSeconds,gcCpuSeconds
+elimination/toNull/vector,1,7.825065e-3,17175388,7.788e-3,6.947e-3,0.0,3448832,0,1,0,13,79376432,76,4248,6.708e-3,6.708e-3,2.43e-4,3.33019e-4
+elimination/toNull/vector,2,1.440742e-2,31623118,1.3287e-2,0.0,0.0,3457024,0,0,0,10,159805392,153,6800,1.2666e-2,1.2666e-2,3.38e-4,4.49083e-4
+elimination/toNull/vector,3,2.434244e-2,53429692,2.4255e-2,0.0,0.0,3457024,0,0,0,21,239185840,229,9304,2.2941e-2,2.2941e-2,5.51e-4,6.92439e-4
+elimination/toNull/vector,4,3.2211937e-2,70702620,3.2155e-2,0.0,0.0,3457024,0,0,0,11,319610688,306,11856,3.0806e-2,3.0806e-2,6.96e-4,8.63142e-4
+elimination/toNull/vector,5,3.8226742e-2,83904591,3.8223e-2,0.0,0.0,3457024,0,0,0,6,398991216,382,14376,3.6638e-2,3.6638e-2,8.33e-4,1.030927e-3
+elimination/toNull/vector,6,4.1556768e-2,91213778,4.1535e-2,0.0,0.0,3457024,0,0,0,10,479416144,459,16928,3.9828e-2,3.9828e-2,8.51e-4,1.072636e-3
+elimination/toNull/vector,7,4.8037882e-2,105439258,4.8023e-2,0.0,0.0,3457024,0,0,0,15,559841072,536,19480,4.6019e-2,4.6019e-2,1.029e-3,1.287274e-3
+elimination/toNull/vector,8,5.3723801e-2,117919407,5.3671e-2,0.0,0.0,3457024,0,0,0,19,639221416,612,22000,5.1419e-2,5.1419e-2,1.12e-3,1.469504e-3
+elimination/toNull/vector,9,6.2269921e-2,136677420,6.2265e-2,0.0,0.0,3457024,0,0,0,18,719646448,689,24552,5.972e-2,5.972e-2,1.297e-3,1.663541e-3
+elimination/toNull/vector,10,6.8738506e-2,150875468,6.8586e-2,0.0,0.0,3457024,0,0,0,35,799026896,765,27072,6.5624e-2,6.5624e-2,1.457e-3,1.902675e-3
+elimination/toNull/vector,11,8.2045507e-2,180083243,8.203e-2,0.0,0.0,3457024,0,0,0,16,879451824,842,29624,7.8767e-2,7.8767e-2,1.594e-3,2.05525e-3
+elimination/toNull/vector,12,8.9018118e-2,195387606,8.8893e-2,0.0,0.0,3457024,0,0,0,28,959876704,919,32176,8.5312e-2,8.5312e-2,1.716e-3,2.253361e-3
+elimination/toNull/vector,13,8.570296e-2,188111038,8.5728e-2,0.0,0.0,3518464,9,0,0,14,1039257200,995,34696,8.2517e-2,8.2517e-2,1.626e-3,2.109908e-3
+elimination/toNull/vector,14,9.6247133e-2,211254662,9.609e-2,0.0,0.0,3518464,0,0,0,26,1119682128,1072,37248,9.2307e-2,9.2307e-2,1.841e-3,2.39916e-3
+elimination/toNull/vector,15,0.100291135,220130932,0.100251,0.0,0.0,3518464,0,0,0,27,1199062576,1148,39768,9.6434e-2,9.6434e-2,1.879e-3,2.430687e-3
+elimination/toNull/vector,16,0.114491082,251298674,0.114466,0.0,0.0,3518464,0,0,0,16,1279487504,1225,42320,0.110171,0.110171,2.064e-3,2.707307e-3
+elimination/toNull/vector,17,0.11040604,242332336,0.110346,0.0,0.0,3518464,0,0,0,22,1359912408,1302,44872,0.106189,0.106189,1.97e-3,2.623494e-3
+elimination/toNull/vector,18,0.128936809,283005860,0.128316,0.0,0.0,3518464,0,0,0,51,1439292880,1378,47392,0.123294,0.123294,2.358e-3,3.134574e-3
+elimination/toNull/vector,19,0.133659982,293372858,0.133627,0.0,0.0,3518464,0,0,0,37,1519717808,1455,49944,0.128368,0.128368,2.524e-3,3.233078e-3
+elimination/toNull/vector,20,0.143401805,314755384,0.143271,0.0,0.0,3518464,0,0,0,29,1599098256,1531,52464,0.137899,0.137899,2.597e-3,3.436789e-3
+elimination/toNull/vector,21,0.144618968,317426968,0.144586,0.0,0.0,3518464,0,0,0,35,1679523080,1608,55016,0.139022,0.139022,2.636e-3,3.454347e-3
+elimination/toNull/vector,22,0.145217784,318741221,0.145239,0.0,0.0,3518464,0,0,0,24,1759948112,1685,57568,0.139769,0.139769,2.681e-3,3.466969e-3
+elimination/toNull/vector,23,0.15101545,331466718,0.150877,0.0,0.0,3518464,0,0,0,32,1839328560,1761,60088,0.145067,0.145067,2.702e-3,3.559935e-3
+elimination/toNull/vector,25,0.172605286,378854640,0.172547,0.0,0.0,3518464,0,0,0,42,1999133936,1914,65160,0.165878,0.165878,3.231e-3,4.134177e-3
+elimination/toNull/vector,26,0.185237546,406581440,0.185227,0.0,0.0,3518464,0,0,0,46,2079558816,1991,67712,0.178091,0.178091,3.38e-3,4.429265e-3
+elimination/toNull/vector,27,0.191525759,420383558,0.191471,0.0,0.0,3518464,0,0,0,50,2159983792,2068,70264,0.183936,0.183936,3.555e-3,4.595701e-3
+elimination/toNull/vector,28,0.195692629,429529504,0.195665,0.0,0.0,3518464,0,0,0,43,2239364240,2144,72784,0.188331,0.188331,3.602e-3,4.680565e-3
+elimination/toNull/vector,30,0.199810027,438566874,0.199884,0.0,0.0,3518464,0,0,0,32,2399169616,2297,77856,0.192611,0.192611,3.523e-3,4.648647e-3
+elimination/toNull/vector,31,0.217002205,476302279,0.217031,0.0,0.0,3518464,0,0,0,35,2479594544,2374,80408,0.209083,0.209083,3.912e-3,5.071297e-3
+elimination/toNull/vector,33,0.216830396,475925196,0.216788,0.0,0.0,3518464,0,0,0,46,2639399896,2527,85480,0.208642,0.208642,3.866e-3,5.164632e-3
+elimination/toNull/vector,35,0.241013477,529005112,0.240868,0.0,0.0,3518464,0,0,0,54,2799205296,2680,90552,0.231482,0.231482,4.431e-3,5.904341e-3
+elimination/toNull/vector,36,0.240194334,527207150,0.240021,0.0,0.0,3518464,0,0,0,61,2879630208,2757,93104,0.230278,0.230278,4.658e-3,6.117454e-3
+elimination/toNull/vector,38,0.269523863,591583107,0.268625,0.0,0.0,3518464,0,0,0,124,3039435600,2910,98176,0.25805,0.25805,4.849e-3,6.344303e-3
+elimination/toNull/vector,40,0.290208717,636984670,0.289479,0.0,0.0,3518464,0,0,0,209,3199240872,3063,103248,0.276794,0.276794,5.575e-3,7.303614e-3
+elimination/toNull/vector,42,0.300574274,659736236,0.299634,0.0,0.0,3518464,0,0,0,167,3359046352,3216,108320,0.287532,0.287532,5.589e-3,7.365564e-3
+elimination/toNull/vector,44,0.307957187,675941132,0.307067,0.0,0.0,3518464,0,0,0,83,3519896208,3370,113424,0.294968,0.294968,5.64e-3,7.774475e-3
+elimination/toNull/vector,47,0.310733224,682034324,0.31057,0.0,0.0,3518464,0,0,0,73,3759082032,3599,121016,0.299158,0.299158,5.59e-3,7.395927e-3
+elimination/toNull/streamly,1,1.5942984e-2,34993556,1.5934e-2,1.5729e-2,0.0,3440640,2,0,0,5,95989912,93,3448,1.5489e-2,1.5489e-2,2.43e-4,2.99025e-4
+elimination/toNull/streamly,2,3.4117083e-2,74884234,3.2683e-2,0.0,0.0,3452928,0,0,0,17,191987848,186,5200,3.002e-2,3.002e-2,4.23e-4,1.958356e-3
+elimination/toNull/streamly,3,5.1173652e-2,112322030,5.1154e-2,0.0,0.0,3452928,0,0,0,11,287981720,279,6936,4.9967e-2,4.9967e-2,5.78e-4,7.21039e-4
+elimination/toNull/streamly,4,6.1945349e-2,135965012,6.1952e-2,0.0,0.0,3452928,0,0,0,10,383975568,372,8688,6.0641e-2,6.0641e-2,6.25e-4,8.1956e-4
+elimination/toNull/streamly,5,8.3011743e-2,182204086,8.3035e-2,0.0,0.0,3452928,0,0,0,22,479969464,465,10440,8.1003e-2,8.1003e-2,9.04e-4,1.236e-3
+elimination/toNull/streamly,6,9.5492214e-2,209597704,9.5429e-2,0.0,0.0,3452928,0,0,0,32,575963432,558,12192,9.3231e-2,9.3231e-2,1.049e-3,1.345958e-3
+elimination/toNull/streamly,7,0.102417803,224798802,0.102449,0.0,0.0,3452928,0,0,0,13,671957304,651,13944,0.100344,0.100344,1.049e-3,1.365611e-3
+elimination/toNull/streamly,8,0.125903126,276347182,0.125883,0.0,0.0,3452928,0,0,0,27,767951120,744,15696,0.12317,0.12317,1.274e-3,1.70311e-3
+elimination/toNull/streamly,9,0.139114306,305344672,0.139055,0.0,0.0,3452928,0,0,0,29,863945048,837,17448,0.136109,0.136109,1.34e-3,1.767834e-3
+elimination/toNull/streamly,10,0.15259083,334924522,0.15249,0.0,0.0,3452928,0,0,0,31,959939016,930,19200,0.149342,0.149342,1.526e-3,2.035978e-3
+elimination/toNull/streamly,11,0.170256953,373700258,0.170107,0.0,0.0,3452928,0,0,0,45,1055932888,1023,20952,0.166447,0.166447,1.657e-3,2.153462e-3
+elimination/toNull/streamly,12,0.176978525,388453558,0.17696,0.0,0.0,3452928,0,0,0,32,1151926760,1116,22704,0.173162,0.173162,1.711e-3,2.299724e-3
+elimination/toNull/streamly,13,0.204181483,448161911,0.203718,0.0,0.0,3452928,0,0,0,56,1247920632,1209,24456,0.199309,0.199309,1.941e-3,2.584829e-3
+elimination/toNull/streamly,14,0.217482012,477355371,0.217201,0.0,0.0,3452928,0,0,0,54,1343914504,1302,26208,0.212524,0.212524,2.142e-3,2.836611e-3
+elimination/toNull/streamly,15,0.233257371,511981076,0.233179,0.0,0.0,3452928,0,0,0,39,1439908376,1395,27960,0.228393,0.228393,2.153e-3,2.848002e-3
+elimination/toNull/streamly,16,0.254076226,557676780,0.253771,0.0,0.0,3452928,0,0,0,67,1535902248,1488,29712,0.248302,0.248302,2.48e-3,3.260582e-3
+elimination/toNull/streamly,17,0.267498855,587138368,0.26742,0.0,0.0,3452928,0,0,0,61,1631896240,1581,31464,0.261594,0.261594,2.564e-3,3.422215e-3
+elimination/toNull/streamly,18,0.271384895,595667914,0.270923,0.0,0.0,3452928,0,0,0,98,1727890088,1674,33216,0.263637,0.263637,2.551e-3,3.372397e-3
+elimination/toNull/streamly,19,0.285632328,626939866,0.285735,0.0,0.0,3452928,0,0,0,46,1823883960,1767,34968,0.279994,0.279994,2.657e-3,3.544856e-3
+elimination/toNull/streamly,20,0.312803485,686578366,0.312718,0.0,0.0,3452928,0,0,0,62,1919877832,1860,36720,0.305785,0.305785,3.006e-3,3.99292e-3
+elimination/toNull/streamly,21,0.328971008,722064772,0.328815,0.0,0.0,3452928,0,0,0,66,2015871744,1953,38472,0.322164,0.322164,3.064e-3,4.099536e-3
+elimination/toNull/streamly,22,0.335086533,735487858,0.334981,0.0,0.0,3452928,0,0,0,56,2111865672,2046,40224,0.328164,0.328164,3.156e-3,4.228477e-3
+elimination/toNull/streamly,23,0.356072247,781549798,0.355872,0.0,0.0,3452928,0,0,0,80,2207859544,2139,41976,0.348269,0.348269,3.376e-3,4.457373e-3
+elimination/toNull/streamly,25,0.385882946,846981870,0.385699,0.0,0.0,3452928,0,0,0,76,2399847384,2325,45480,0.377874,0.377874,3.583e-3,4.789564e-3
+elimination/toNull/streamly,26,0.404542077,887937160,0.404453,0.0,0.0,3452928,0,0,0,76,2495841256,2418,47232,0.395933,0.395933,3.693e-3,4.98807e-3
+elimination/toNull/streaming,1,1.471584e-2,32300082,1.4712e-2,1.4447e-2,0.0,3448832,1,0,0,5,143470752,139,8488,1.4119e-2,1.4119e-2,3.31e-4,4.1047e-4
+elimination/toNull/streaming,2,3.0284989e-2,66473096,2.9004e-2,0.0,0.0,3461120,0,0,0,25,287981760,279,15296,2.7819e-2,2.7819e-2,5.8e-4,7.17729e-4
+elimination/toNull/streaming,3,4.7023371e-2,103212478,4.7015e-2,0.0,0.0,3461120,0,0,0,17,431456560,418,22040,4.5214e-2,4.5214e-2,8.34e-4,1.054704e-3
+elimination/toNull/streaming,4,6.2171165e-2,136460672,6.2174e-2,0.0,0.0,3461120,0,0,0,12,575963528,558,28848,5.9993e-2,5.9993e-2,1.084e-3,1.396562e-3
+elimination/toNull/streaming,5,7.9475743e-2,174442836,7.9446e-2,0.0,0.0,3461120,0,0,0,20,719438352,697,35608,7.6619e-2,7.6619e-2,1.381e-3,1.806315e-3
+elimination/toNull/streaming,6,8.4620432e-2,185735010,8.4543e-2,0.0,0.0,3461120,0,0,0,22,863945344,837,42416,8.1583e-2,8.1583e-2,1.447e-3,1.89056e-3
+elimination/toNull/streaming,7,9.4413161e-2,207229260,9.4389e-2,0.0,0.0,3461120,0,0,0,16,1007420144,976,49176,9.1117e-2,9.1117e-2,1.547e-3,2.053994e-3
+elimination/toNull/streaming,8,0.109892448,241205032,0.10992,0.0,0.0,3461120,0,0,0,19,1151927080,1116,55984,0.106167,0.106167,1.789e-3,2.363296e-3
+elimination/toNull/streaming,9,0.131687544,289043516,0.131689,0.0,0.0,3461120,0,0,0,27,1295401936,1255,62744,0.127236,0.127236,2.152e-3,2.821469e-3
+elimination/toNull/streaming,10,0.144891517,318025146,0.144668,0.0,0.0,3461120,0,0,0,55,1439908928,1395,69552,0.1396,0.1396,2.449e-3,3.163695e-3
+elimination/toNull/streaming,11,0.16020648,351640300,0.160081,0.0,0.0,3461120,0,0,0,31,1583383728,1534,76312,0.154654,0.154654,2.59e-3,3.417986e-3
+elimination/toNull/streaming,12,0.164858569,361851236,0.164895,0.0,0.0,3461120,0,0,0,23,1727890720,1674,83120,0.159495,0.159495,2.639e-3,3.454852e-3
+elimination/toNull/streaming,13,0.190701544,418574484,0.190447,0.0,0.0,3461120,0,0,0,89,1871365520,1813,89880,0.18354,0.18354,3.18e-3,4.210363e-3
+elimination/toNull/streaming,14,0.212687647,466832166,0.21233,0.0,0.0,3461120,0,0,0,115,2015872512,1953,96688,0.204224,0.204224,3.696e-3,4.777964e-3
+elimination/toNull/streaming,15,0.223017934,489506338,0.222245,0.0,0.0,3461120,0,0,0,117,2159347312,2092,103448,0.214367,0.214367,3.674e-3,4.783824e-3
+elimination/toNull/streaming,16,0.225387424,494707164,0.225281,0.0,0.0,3461120,0,0,0,65,2303854304,2232,110256,0.217508,0.217508,3.717e-3,4.846229e-3
+elimination/toNull/streaming,17,0.250376674,549556578,0.250344,0.0,0.0,3461120,0,0,0,61,2447329128,2371,117016,0.242169,0.242169,3.997e-3,5.223928e-3
+elimination/toNull/streaming,18,0.263789739,578997156,0.263535,0.0,0.0,3461120,0,0,0,69,2591836096,2511,123824,0.254457,0.254457,4.304e-3,5.657335e-3
+elimination/toNull/streaming,19,0.278216039,610661718,0.278049,0.0,0.0,3461120,0,0,0,60,2735310896,2650,130584,0.268629,0.268629,4.58e-3,6.032122e-3
+elimination/toNull/streaming,20,0.290974083,638664592,0.290848,0.0,0.0,3461120,0,0,0,54,2879817888,2790,137392,0.281187,0.281187,4.602e-3,6.080392e-3
+elimination/toNull/streaming,21,0.301851434,662539652,0.301828,0.0,0.0,3461120,0,0,0,52,3023292632,2929,144152,0.291993,0.291993,4.785e-3,6.331432e-3
+elimination/toNull/streaming,22,0.326003764,715551908,0.325357,0.0,0.0,3461120,0,0,0,154,3167799680,3069,150960,0.313838,0.313838,5.363e-3,7.000196e-3
+elimination/toNull/streaming,23,0.323045252,709058216,0.322849,0.0,0.0,3461120,0,0,0,85,3311274480,3208,157720,0.31207,0.31207,5.171e-3,6.772116e-3
+elimination/toNull/streaming,25,0.374728082,822497866,0.374121,0.0,0.0,3461120,0,0,0,81,3599256272,3487,171288,0.361956,0.361956,5.882e-3,7.881592e-3
+elimination/toNull/streaming,26,0.368156689,808074170,0.367921,0.0,0.0,3461120,0,0,0,64,3743763264,3627,178096,0.355844,0.355844,5.807e-3,7.64186e-3
+elimination/toNull/streaming,27,0.400422366,878894728,0.397864,0.0,0.0,3461120,0,0,0,147,3887238064,3766,184856,0.383235,0.383235,6.858e-3,8.853801e-3
+elimination/toList/vector,1,0.10970834,240800984,0.109658,0.109009,0.0,74596352,1,0,0,21,120009976,99,117815984,2.2985e-2,2.2985e-2,8.6028e-2,8.6517577e-2
+elimination/toList/vector,2,0.212663156,466778497,0.212715,0.0,0.0,85090304,2560,0,0,40,241075400,199,227677048,4.7426e-2,4.7426e-2,0.160741,0.164766401
+elimination/toList/vector,3,0.297794893,653636370,0.297792,0.0,0.0,85090304,0,0,0,67,361092304,298,331632392,6.5105e-2,6.5105e-2,0.23029,0.232255162
+elimination/toList/vector,4,0.419234686,920186320,0.419171,0.0,0.0,106622976,5254,0,0,73,482144104,398,478888832,0.108767,0.108767,0.300971,0.304102858
+elimination/toList/vector,5,0.51154126,1122791716,0.510486,0.0,0.0,107122688,113,0,0,248,602163896,497,571327728,0.105401,0.105401,0.398778,0.404845208
+elimination/toList/vector,6,0.625358527,1372611464,0.621408,0.0,0.0,107147264,6,0,0,351,723221608,597,669930984,0.131237,0.131237,0.47688,0.491957589
+elimination/toList/vector,7,0.683182599,1499530582,0.68185,0.0,0.0,107147264,0,0,0,348,844279080,697,763810568,0.14318,0.14318,0.523257,0.538103516
+elimination/toList/vector,8,0.821071849,1802186382,0.817764,0.0,0.0,107147264,0,0,0,397,964285488,796,892442872,0.176323,0.176323,0.625501,0.642349979
+elimination/toList/vector,9,0.945830748,2076022034,0.939661,0.0,0.0,107147264,0,0,0,1007,1085349784,896,993913080,0.199517,0.199517,0.71088,0.742250362
+elimination/toList/vector,10,0.96557233,2119353292,0.964529,0.0,0.0,107147264,0,0,0,449,1205363016,995,1118675472,0.203447,0.203447,0.735835,0.759617137
+elimination/toList/streamly,1,0.117921455,258828062,0.117688,0.116535,0.0,63053824,237,0,0,55,176411688,153,103426456,4.3444e-2,4.3444e-2,7.3095e-2,7.3998084e-2
+elimination/toList/streamly,2,0.262444055,576043556,0.259974,0.0,0.0,63062016,0,0,0,154,352830720,306,209199552,9.0962e-2,9.0962e-2,0.160835,0.169337845
+elimination/toList/streamly,3,0.417061077,915415400,0.412707,0.0,0.0,91398144,6915,0,0,328,529245856,459,337824672,0.134777,0.134777,0.252462,0.278305943
+elimination/toList/streamly,4,0.52703348,1156795904,0.526469,0.0,0.0,103276544,2900,0,0,166,705665000,612,464097160,0.177205,0.177205,0.332335,0.348312106
+elimination/toList/streamly,5,0.645995996,1417909050,0.643832,0.0,0.0,103981056,172,0,0,324,882078312,765,556502848,0.226707,0.226707,0.400922,0.416164321
+elimination/toList/streamly,6,0.775082213,1701242882,0.767764,0.0,0.0,103981056,0,0,0,677,1059539008,919,668132760,0.266974,0.266974,0.474258,0.50245429
+elimination/toList/streamly,7,0.85577123,1878348672,0.852696,0.0,0.0,103981056,0,0,0,333,1235955224,1072,767781400,0.297663,0.297663,0.532391,0.553792199
+elimination/toList/streamly,8,1.036032079,2274007294,1.024727,0.0,0.0,103981056,0,0,0,547,1412376520,1225,875318000,0.3511,0.3511,0.637345,0.674771239
+elimination/toList/streamly,9,1.172552842,2573658774,1.171066,0.0,0.0,103981056,0,0,0,467,1588788760,1378,1005456480,0.405986,0.405986,0.730309,0.76274857
+elimination/toList/streaming,1,0.169010034,370963278,0.168777,0.167407,0.0,105025536,1,0,0,80,191224808,185,218576400,2.8654e-2,2.8654e-2,0.138757,0.139971965
+elimination/toList/streaming,2,0.316993858,695775950,0.316618,0.0,0.0,105033728,0,0,0,95,383502208,371,421644024,5.7353e-2,5.7353e-2,0.254134,0.258820518
+elimination/toList/streaming,3,0.495194094,1086911014,0.488892,0.0,0.0,105033728,0,0,0,311,575775472,557,622751280,8.1319e-2,8.1319e-2,0.394451,0.412488036
+elimination/toList/streaming,4,0.643294196,1411978772,0.634187,0.0,0.0,105033728,0,0,0,406,767004352,742,813248328,0.110869,0.110869,0.5065,0.530544381
+elimination/toList/streaming,5,0.844105872,1852744208,0.822752,0.0,0.0,121823232,4099,0,0,930,959277856,928,1039621664,0.139565,0.139565,0.649948,0.69835526
+elimination/toList/streaming,6,0.993005847,2179567576,0.976265,0.0,0.0,121823232,0,0,0,1144,1151551240,1114,1252644120,0.167788,0.167788,0.775997,0.818100035
+elimination/toList/streaming,7,1.132338217,2485390862,1.117683,0.0,0.0,121823232,0,0,0,879,1343824504,1300,1443807944,0.197584,0.197584,0.889744,0.928544457
+elimination/toList/streaming,8,1.317392934,2891571016,1.297719,0.0,0.0,121823232,0,0,0,1098,1535053184,1485,1645241680,0.223168,0.223168,1.029666,1.085171158
+elimination/fold/vector,1,8.957839e-3,19661734,8.944e-3,8.781e-3,0.0,3457024,1,0,0,5,79376432,76,4248,8.56e-3,8.56e-3,2.24e-4,2.65852e-4
+elimination/fold/vector,2,1.8150927e-2,39839820,1.8109e-2,0.0,0.0,3465216,0,0,0,11,159805392,153,6800,1.7348e-2,1.7348e-2,3.61e-4,4.52514e-4
+elimination/fold/vector,3,3.0334796e-2,66582424,2.9205e-2,0.0,0.0,3465216,0,0,0,21,239185840,229,9304,2.5706e-2,2.5706e-2,4.75e-4,6.3476e-4
+elimination/fold/vector,4,3.3116077e-2,72687100,3.308e-2,0.0,0.0,3465216,0,0,0,7,319610680,306,11856,3.1856e-2,3.1856e-2,5.89e-4,7.46459e-4
+elimination/fold/vector,5,4.6190273e-2,101383928,4.6201e-2,0.0,0.0,3465216,0,0,0,10,398991216,382,14376,4.4612e-2,4.4612e-2,7.45e-4,9.91089e-4
+elimination/fold/vector,6,5.2316801e-2,114831186,5.2333e-2,0.0,0.0,3465216,0,0,0,8,479416144,459,16928,5.0617e-2,5.0617e-2,8.89e-4,1.105096e-3
+elimination/fold/vector,7,6.4428954e-2,141416328,6.4403e-2,0.0,0.0,3465216,0,0,0,18,559841072,536,19480,6.2261e-2,6.2261e-2,1.059e-3,1.329228e-3
+elimination/fold/vector,8,6.7537096e-2,148238462,6.7517e-2,0.0,0.0,3465216,0,0,0,15,639221416,612,22000,6.5469e-2,6.5469e-2,1.029e-3,1.347597e-3
+elimination/fold/vector,9,8.8112072e-2,193398884,8.6576e-2,0.0,0.0,3465216,0,0,0,84,719646448,689,24552,8.3268e-2,8.3268e-2,1.501e-3,1.899657e-3
+elimination/fold/vector,10,8.843304e-2,194103378,8.7337e-2,0.0,0.0,3465216,0,0,0,38,799026896,765,27072,8.3907e-2,8.3907e-2,1.42e-3,1.858634e-3
+elimination/fold/vector,11,0.105353133,231241606,0.102694,0.0,0.0,3465216,0,0,0,62,879451824,842,29624,9.6191e-2,9.6191e-2,1.623e-3,2.099133e-3
+elimination/fold/vector,12,0.106650179,234088552,0.106638,0.0,0.0,3465216,0,0,0,25,959876704,919,32176,0.103381,0.103381,1.575e-3,2.067018e-3
+elimination/fold/vector,13,0.119757869,262858864,0.119525,0.0,0.0,3526656,9,0,0,49,1039257200,995,34696,0.115557,0.115557,1.891e-3,2.424333e-3
+elimination/fold/vector,14,0.137214724,301175240,0.136827,0.0,0.0,3526656,0,0,0,96,1119682128,1072,37248,0.132321,0.132321,2.075e-3,2.691747e-3
+elimination/fold/vector,15,0.152687199,335136055,0.149291,0.0,0.0,3526656,0,0,0,228,1199062576,1148,39768,0.142869,0.142869,2.615e-3,3.303343e-3
+elimination/fold/vector,16,0.167840295,368395882,0.162235,0.0,0.0,3526656,0,0,0,263,1279487504,1225,42320,0.154784,0.154784,2.941e-3,5.633774e-3
+elimination/fold/vector,17,0.196078361,430376148,0.188407,0.0,0.0,3526656,0,0,0,339,1359912408,1302,44872,0.179711,0.179711,3.555e-3,6.544241e-3
+elimination/fold/vector,18,0.178456295,391697152,0.173244,0.0,0.0,3526656,0,0,0,312,1439292880,1378,47392,0.165105,0.165105,2.791e-3,3.68792e-3
+elimination/fold/vector,19,0.18819192,413066052,0.181237,0.0,0.0,3526656,0,0,0,475,1519717808,1455,49944,0.173339,0.173339,2.925e-3,5.477003e-3
+elimination/fold/vector,20,0.19946642,437812656,0.191635,0.0,0.0,3526656,0,0,0,441,1599098256,1531,52464,0.183513,0.183513,3.102e-3,3.994412e-3
+elimination/fold/vector,21,0.200364842,439784592,0.195773,0.0,0.0,3526656,0,0,0,218,1679523080,1608,55016,0.187581,0.187581,2.999e-3,3.894133e-3
+elimination/fold/vector,22,0.203181551,445967118,0.201541,0.0,0.0,3526656,0,0,0,115,1759948112,1685,57568,0.193268,0.193268,2.923e-3,3.803333e-3
+elimination/fold/vector,23,0.220496822,483972648,0.219859,0.0,0.0,3526656,0,0,0,113,1839328560,1761,60088,0.212861,0.212861,3.168e-3,4.212618e-3
+elimination/fold/vector,25,0.241506839,530088000,0.23441,0.0,0.0,3526656,0,0,0,311,1999133936,1914,65160,0.222168,0.222168,3.523e-3,4.83219e-3
+elimination/fold/vector,26,0.245729303,539355938,0.236513,0.0,0.0,3526656,0,0,0,382,2079558816,1991,67712,0.226506,0.226506,3.712e-3,4.879756e-3
+elimination/fold/vector,27,0.257299137,564750808,0.249017,0.0,0.0,3526656,0,0,0,402,2159983792,2068,70264,0.237682,0.237682,3.9e-3,6.242531e-3
+elimination/fold/vector,28,0.26189947,574848176,0.257492,0.0,0.0,3526656,0,0,0,138,2239364240,2144,72784,0.245781,0.245781,3.909e-3,5.190648e-3
+elimination/fold/vector,30,0.270461139,593640350,0.269132,0.0,0.0,3526656,0,0,0,75,2399169616,2297,77856,0.261279,0.261279,3.72e-3,4.896027e-3
+elimination/fold/vector,31,0.285514864,626682078,0.283079,0.0,0.0,3526656,0,0,0,131,2479594544,2374,80408,0.274176,0.274176,4.014e-3,5.339908e-3
+elimination/fold/vector,33,0.317866968,697692300,0.308347,0.0,0.0,3526656,0,0,0,490,2639399896,2527,85480,0.29397,0.29397,4.64e-3,6.202125e-3
+elimination/fold/vector,35,0.303075167,665225532,0.300671,0.0,0.0,3526656,0,0,0,88,2799205296,2680,90552,0.288954,0.288954,4.521e-3,5.926744e-3
+elimination/fold/vector,36,0.374968403,823025360,0.351034,0.0,0.0,3526656,0,0,0,400,2879630224,2757,93104,0.337892,0.337892,5.729e-3,7.242926e-3
+elimination/fold/streamly,1,2.1394132e-2,46958365,2.1286e-2,2.0866e-2,0.0,3440640,1,0,0,28,151493392,146,12000,2.041e-2,2.041e-2,4.61e-4,5.63547e-4
+elimination/fold/streamly,2,3.8274951e-2,84010418,3.8163e-2,0.0,0.0,3448832,0,0,0,40,302994824,292,22240,3.6708e-2,3.6708e-2,6.83e-4,8.71437e-4
+elimination/fold/streamly,3,5.3868552e-2,118237148,5.3846e-2,0.0,0.0,3448832,0,0,0,9,455529816,439,32536,5.2221e-2,5.2221e-2,8.22e-4,1.059861e-3
+elimination/fold/streamly,4,7.4374181e-2,163245262,7.427e-2,0.0,0.0,3448832,0,0,0,23,607027200,585,42696,7.1815e-2,7.1815e-2,1.249e-3,1.575051e-3
+elimination/fold/streamly,5,9.0363842e-2,198341332,9.0297e-2,0.0,0.0,3448832,0,0,0,17,759562328,732,53048,8.7552e-2,8.7552e-2,1.382e-3,1.81026e-3
+elimination/fold/streamly,6,0.101277352,222295612,0.101241,0.0,0.0,3448832,0,0,0,28,911059744,878,63304,9.8093e-2,9.8093e-2,1.525e-3,1.970582e-3
+elimination/fold/streamly,7,0.119129342,261479280,0.119144,0.0,0.0,3448832,0,0,0,25,1063594736,1025,73616,0.115623,0.115623,1.709e-3,2.207148e-3
+elimination/fold/streamly,8,0.133635416,293318960,0.133607,0.0,0.0,3448832,0,0,0,20,1215092096,1171,83792,0.129779,0.129779,1.902e-3,2.486805e-3
+elimination/fold/streamly,9,0.157490995,345679994,0.15713,0.0,0.0,3448832,0,0,0,45,1367627248,1318,94128,0.152328,0.152328,2.295e-3,2.989574e-3
+elimination/fold/streamly,10,0.177008983,388520414,0.176891,0.0,0.0,3448832,0,0,0,53,1519124664,1464,104384,0.171372,0.171372,2.68e-3,3.448664e-3
+elimination/fold/streamly,11,0.19036452,417834740,0.189045,0.0,0.0,3448832,0,0,0,60,1671659656,1611,114696,0.183361,0.183361,2.836e-3,3.631786e-3
+elimination/fold/streamly,12,0.218033124,478565088,0.215163,0.0,0.0,3448832,0,0,0,107,1823157128,1757,124872,0.207049,0.207049,3.282e-3,5.641148e-3
+elimination/fold/streamly,13,0.227906899,500237208,0.223819,0.0,0.0,3510272,9,0,0,97,1975692168,1904,135280,0.215904,0.215904,3.453e-3,6.4558e-3
+elimination/fold/streamly,14,0.247392438,543006412,0.244897,0.0,0.0,3510272,0,0,0,123,2127189584,2050,145536,0.237204,0.237204,3.679e-3,4.767843e-3
+elimination/fold/streamly,15,0.274628775,602787954,0.270965,0.0,0.0,3510272,0,0,0,136,2279724576,2197,155848,0.260115,0.260115,4.077e-3,6.90913e-3
+elimination/fold/streamly,16,0.293634419,644503834,0.286765,0.0,0.0,3510272,0,0,0,273,2431222064,2343,166120,0.275847,0.275847,4.557e-3,5.874598e-3
+elimination/fold/streamly,17,0.288349624,632904120,0.288208,0.0,0.0,3510272,0,0,0,74,2583757064,2490,176264,0.279546,0.279546,4.135e-3,5.44763e-3
+elimination/fold/streamly,18,0.316971714,695727302,0.31532,0.0,0.0,3510272,0,0,0,117,2735254504,2636,186688,0.304597,0.304597,4.858e-3,6.225258e-3
+elimination/fold/streamly,19,0.36636576,804143234,0.358323,0.0,0.0,3510272,0,0,0,303,2887789496,2783,197000,0.341941,0.341941,5.858e-3,9.542518e-3
+elimination/fold/streamly,20,0.363050834,796867254,0.362507,0.0,0.0,3510272,0,0,0,168,3039286984,2929,207272,0.350242,0.350242,5.664e-3,7.21834e-3
+elimination/fold/streamly,21,0.377725768,829077512,0.377553,0.0,0.0,3510272,0,0,0,105,3191821904,3076,217344,0.365992,0.365992,5.583e-3,7.188157e-3
+elimination/fold/streamly,22,0.382045383,838558724,0.38203,0.0,0.0,3510272,0,0,0,84,3343319424,3222,227840,0.370848,0.370848,5.437e-3,7.12205e-3
+elimination/fold/streamly,23,0.417686572,916788296,0.414831,0.0,0.0,3510272,0,0,0,172,3495854416,3369,238152,0.400895,0.400895,6.33e-3,8.182529e-3
+elimination/fold/streamly,25,0.449417564,986435227,0.446362,0.0,0.0,3510272,0,0,0,211,3799886928,3662,258664,0.429774,0.429774,6.584e-3,8.658789e-3
+elimination/fold/streaming,1,1.6172312e-2,35496920,1.6172e-2,1.5912e-2,0.0,3436544,1,0,0,4,143470752,139,8488,1.5601e-2,1.5601e-2,3.13e-4,3.97829e-4
+elimination/fold/streaming,2,3.2483138e-2,71297862,3.2527e-2,0.0,0.0,3444736,0,0,0,4,287981760,279,15296,3.1492e-2,3.1492e-2,5.34e-4,6.8674e-4
+elimination/fold/streaming,3,4.8079795e-2,105531284,4.8044e-2,0.0,0.0,3444736,0,0,0,15,431456560,418,22040,4.6484e-2,4.6484e-2,7.9e-4,1.011702e-3
+elimination/fold/streaming,4,5.8889442e-2,129257566,5.8861e-2,0.0,0.0,3444736,0,0,0,17,575963520,558,28848,5.7016e-2,5.7016e-2,9.22e-4,1.201247e-3
+elimination/fold/streaming,5,8.2146441e-2,180304824,8.201e-2,0.0,0.0,3444736,0,0,0,24,719438352,697,35608,7.9307e-2,7.9307e-2,1.331e-3,1.696824e-3
+elimination/fold/streaming,6,9.1513455e-2,200864614,9.1474e-2,0.0,0.0,3444736,0,0,0,23,863945344,837,42416,8.8603e-2,8.8603e-2,1.445e-3,1.843598e-3
+elimination/fold/streaming,7,0.113725953,249619276,0.113634,0.0,0.0,3444736,0,0,0,28,1007420144,976,49176,0.110077,0.110077,1.755e-3,2.303909e-3
+elimination/fold/streaming,8,0.126493911,277643888,0.12636,0.0,0.0,3444736,0,0,0,35,1151927080,1116,55984,0.122362,0.122362,1.93e-3,2.566184e-3
+elimination/fold/streaming,9,0.147434913,323607769,0.147391,0.0,0.0,3444736,0,0,0,39,1295401936,1255,62744,0.142626,0.142626,2.286e-3,2.958368e-3
+elimination/fold/streaming,10,0.160307219,351861383,0.160152,0.0,0.0,3444736,0,0,0,33,1439908928,1395,69552,0.155279,0.155279,2.392e-3,3.156961e-3
+elimination/fold/streaming,11,0.17724194,389031750,0.177117,0.0,0.0,3444736,0,0,0,43,1583383728,1534,76312,0.171443,0.171443,2.715e-3,3.52748e-3
+elimination/fold/streaming,12,0.195631307,429394888,0.193312,0.0,0.0,3444736,0,0,0,67,1727890720,1674,83120,0.186903,0.186903,3.001e-3,3.948569e-3
+elimination/fold/streaming,13,0.206121922,452420938,0.206122,0.0,0.0,3506176,9,0,0,45,1871365520,1813,89880,0.199766,0.199766,3.051e-3,4.036231e-3
+elimination/fold/streaming,14,0.220830575,484705258,0.220016,0.0,0.0,3506176,0,0,0,82,2015872512,1953,96688,0.212703,0.212703,3.346e-3,4.425065e-3
+elimination/fold/streaming,15,0.229073927,502798746,0.229077,0.0,0.0,3506176,0,0,0,36,2159347312,2092,103448,0.222267,0.222267,3.328e-3,4.384421e-3
+elimination/fold/streaming,16,0.260475547,571722770,0.2577,0.0,0.0,3506176,0,0,0,135,2303854304,2232,110256,0.24739,0.24739,3.929e-3,5.120656e-3
+elimination/fold/streaming,17,0.262512285,576193244,0.262499,0.0,0.0,3506176,0,0,0,56,2447329128,2371,117016,0.254343,0.254343,3.828e-3,5.076711e-3
+elimination/fold/streaming,18,0.284943008,625426874,0.284827,0.0,0.0,3506176,0,0,0,71,2591836096,2511,123824,0.275902,0.275902,4.14e-3,5.495264e-3
+elimination/fold/streaming,19,0.300142914,658789436,0.300016,0.0,0.0,3506176,0,0,0,54,2735310896,2650,130584,0.290811,0.290811,4.418e-3,5.869878e-3
+elimination/fold/streaming,20,0.310517599,681561030,0.310492,0.0,0.0,3506176,0,0,0,69,2879817888,2790,137392,0.300957,0.300957,4.537e-3,5.975277e-3
+elimination/fold/streaming,21,0.347873006,763553118,0.347848,0.0,0.0,3506176,0,0,0,66,3023292632,2929,144152,0.33725,0.33725,5.136e-3,6.732402e-3
+elimination/fold/streaming,22,0.357822363,785391172,0.354512,0.0,0.0,3506176,0,0,0,254,3167799680,3069,150960,0.340163,0.340163,5.493e-3,7.170968e-3
+elimination/fold/streaming,23,0.356521921,782536782,0.355284,0.0,0.0,3506176,0,0,0,85,3311274480,3208,157720,0.344058,0.344058,5.329e-3,6.974558e-3
+elimination/fold/streaming,25,0.414031612,908765922,0.406853,0.0,0.0,3506176,0,0,0,329,3599256272,3487,171288,0.392271,0.392271,6.327e-3,8.455237e-3
+elimination/fold/streaming,26,0.422168155,926625012,0.417962,0.0,0.0,3506176,0,0,0,244,3743763264,3627,178096,0.402953,0.402953,6.239e-3,8.283357e-3
+elimination/last/vector,1,6.722299e-3,14754878,6.724e-3,6.608e-3,0.0,3436544,1,0,0,3,79376432,76,5464,6.41e-3,6.41e-3,1.99e-4,2.35938e-4
+elimination/last/vector,2,1.563489e-2,34317330,1.5462e-2,0.0,0.0,3444736,0,0,0,33,159805416,153,9248,1.4637e-2,1.4637e-2,4.13e-4,5.34986e-4
+elimination/last/vector,3,2.3195664e-2,50912612,2.2062e-2,0.0,0.0,3444736,0,0,0,69,239185888,229,12968,2.0833e-2,2.0833e-2,5.34e-4,6.97615e-4
+elimination/last/vector,4,3.2570836e-2,71490352,3.1852e-2,0.0,0.0,3444736,0,0,0,31,319610752,306,16752,3.0358e-2,3.0358e-2,6.96e-4,8.6041e-4
+elimination/last/vector,5,3.7881158e-2,83146100,3.7781e-2,0.0,0.0,3444736,0,0,0,26,398991312,382,20488,3.6203e-2,3.6203e-2,8.17e-4,9.87326e-4
+elimination/last/vector,6,4.6680349e-2,102459585,4.6503e-2,0.0,0.0,3444736,0,0,0,28,479416264,459,24272,4.4602e-2,4.4602e-2,9.7e-4,1.235023e-3
+elimination/last/vector,7,4.9557004e-2,108773640,4.9407e-2,0.0,0.0,3444736,0,0,0,19,559841216,536,28056,4.7521e-2,4.7521e-2,9.67e-4,1.231064e-3
+elimination/last/vector,8,6.3302405e-2,138943665,6.3205e-2,0.0,0.0,3444736,0,0,0,29,639221584,612,31792,6.0524e-2,6.0524e-2,1.305e-3,1.651722e-3
+elimination/last/vector,9,6.7596849e-2,148369588,6.7312e-2,0.0,0.0,3444736,0,0,0,63,719646640,689,35576,6.4046e-2,6.4046e-2,1.426e-3,1.818841e-3
+elimination/last/vector,10,7.5223028e-2,165108468,7.4764e-2,0.0,0.0,3444736,0,0,0,88,799027112,765,39312,7.1275e-2,7.1275e-2,1.624e-3,2.045893e-3
+elimination/last/vector,11,8.5948424e-2,188649840,8.5758e-2,0.0,0.0,3444736,0,0,0,60,879452064,842,43096,8.2282e-2,8.2282e-2,1.652e-3,2.133861e-3
+elimination/last/vector,12,9.0126592e-2,197820570,8.9722e-2,0.0,0.0,3444736,0,0,0,108,959876968,919,46880,8.5538e-2,8.5538e-2,1.805e-3,2.325464e-3
+elimination/last/vector,13,0.10506791,230615540,0.103927,0.0,0.0,3506176,9,0,0,120,1039257488,995,50616,9.8969e-2,9.8969e-2,2.045e-3,2.595928e-3
+elimination/last/vector,14,0.109219101,239727124,0.106558,0.0,0.0,3506176,0,0,0,189,1119682440,1072,54400,0.10095,0.10095,2.167e-3,2.839018e-3
+elimination/last/vector,15,0.10873537,238665376,0.108601,0.0,0.0,3506176,0,0,0,26,1199062912,1148,58136,0.104749,0.104749,1.888e-3,2.479041e-3
+elimination/last/vector,16,0.114050801,250332273,0.113737,0.0,0.0,3506176,0,0,0,40,1279487864,1225,61920,0.109595,0.109595,2.011e-3,2.64981e-3
+elimination/last/vector,17,0.124092828,272373749,0.124029,0.0,0.0,3506176,0,0,0,28,1359912792,1302,65704,0.11941,0.11941,2.182e-3,2.881308e-3
+elimination/last/vector,18,0.13772158,302287722,0.135439,0.0,0.0,3506176,0,0,0,84,1439293208,1378,69440,0.129957,0.129957,2.597e-3,3.358209e-3
+elimination/last/vector,19,0.152980511,335779856,0.150276,0.0,0.0,3506176,0,0,0,149,1519718160,1455,73224,0.140942,0.140942,2.865e-3,3.88372e-3
+elimination/last/vector,20,0.152480729,334682876,0.149223,0.0,0.0,3506176,0,0,0,177,1599098632,1531,76960,0.142258,0.142258,2.943e-3,3.802319e-3
+elimination/last/vector,21,0.148299103,325504540,0.147453,0.0,0.0,3506176,0,0,0,42,1679523480,1608,80744,0.141449,0.141449,2.658e-3,3.466382e-3
+elimination/last/vector,22,0.156940768,344472298,0.156882,0.0,0.0,3506176,0,0,0,32,1759948536,1685,84528,0.151337,0.151337,2.665e-3,3.53329e-3
+elimination/last/vector,23,0.171424811,376263608,0.171271,0.0,0.0,3506176,0,0,0,47,1839329008,1761,88264,0.164863,0.164863,2.998e-3,3.975336e-3
+elimination/last/vector,25,0.17342048,380643960,0.173207,0.0,0.0,3506176,0,0,0,70,1999134432,1914,95784,0.166908,0.166908,2.967e-3,3.926476e-3
+elimination/last/vector,26,0.183043718,401766186,0.182638,0.0,0.0,3506176,0,0,0,105,2079559336,1991,99568,0.175557,0.175557,3.309e-3,4.306167e-3
+elimination/last/vector,27,0.185410185,406960392,0.185286,0.0,0.0,3506176,0,0,0,69,2159984336,2068,103352,0.178234,0.178234,3.303e-3,4.330118e-3
+elimination/last/vector,28,0.196539898,431389212,0.196144,0.0,0.0,3506176,0,0,0,107,2239364808,2144,107088,0.188694,0.188694,3.482e-3,4.595937e-3
+elimination/last/vector,30,0.209263607,459316702,0.20902,0.0,0.0,3506176,0,0,0,77,2399170232,2297,114608,0.201171,0.201171,3.725e-3,4.870414e-3
+elimination/last/vector,31,0.216432447,475051728,0.21603,0.0,0.0,3506176,0,0,0,108,2479595184,2374,118392,0.207694,0.207694,3.945e-3,5.141143e-3
+elimination/last/vector,33,0.228204253,500889890,0.227836,0.0,0.0,3506176,0,0,0,84,2639400584,2527,125912,0.21942,0.21942,4.015e-3,5.245535e-3
+elimination/last/vector,35,0.26355007,578471083,0.260419,0.0,0.0,3506176,0,0,0,547,2799206032,2680,133432,0.247911,0.247911,5.221e-3,6.716643e-3
+elimination/last/vector,36,0.268805189,590005662,0.266934,0.0,0.0,3506176,0,0,0,114,2879630984,2757,137216,0.256538,0.256538,4.9e-3,6.336876e-3
+elimination/last/vector,38,0.273666657,600676192,0.273615,0.0,0.0,3506176,0,0,0,58,3039436408,2910,144736,0.263896,0.263896,4.742e-3,6.201431e-3
+elimination/last/vector,40,0.286126489,628024516,0.285911,0.0,0.0,3510272,0,0,0,89,3199241728,3063,152256,0.275728,0.275728,4.87e-3,6.479381e-3
+elimination/last/vector,42,0.298567627,655331796,0.298423,0.0,0.0,3510272,0,0,0,57,3359047240,3216,159776,0.28813,0.28813,4.944e-3,6.583595e-3
+elimination/last/vector,44,0.327948815,719821146,0.327666,0.0,0.0,3510272,0,0,0,83,3519897080,3370,167344,0.315849,0.315849,5.611e-3,7.416639e-3
+elimination/last/streamly,1,2.0337617e-2,44639450,1.9647e-2,1.9218e-2,0.0,3436544,1,0,0,12,159801408,153,6744,1.8816e-2,1.8816e-2,4.05e-4,4.9159e-4
+elimination/last/streamly,2,3.8829527e-2,85227675,3.8763e-2,0.0,0.0,3444736,0,0,0,28,319610896,306,11760,3.6842e-2,3.6842e-2,7.49e-4,8.9507e-4
+elimination/last/streamly,3,5.8469072e-2,128334898,5.6852e-2,0.0,0.0,3444736,0,0,0,23,479416352,459,16760,5.4513e-2,5.4513e-2,9.51e-4,1.199903e-3
+elimination/last/streamly,4,6.633978e-2,145610444,6.6362e-2,0.0,0.0,3444736,0,0,0,8,639221744,612,56048,6.4316e-2,6.4316e-2,9.72e-4,1.314948e-3
+elimination/last/streamly,5,9.5441236e-2,209485804,9.5414e-2,0.0,0.0,3444736,0,0,0,21,799027264,765,26792,9.2559e-2,9.2559e-2,1.343e-3,1.777399e-3
+elimination/last/streamly,6,0.107291163,235495449,0.106977,0.0,0.0,3444736,0,0,0,53,959877200,919,31840,0.103516,0.103516,1.65e-3,2.13101e-3
+elimination/last/streamly,7,0.132008353,289747637,0.131673,0.0,0.0,3444736,0,0,0,57,1119682656,1072,36856,0.127508,0.127508,1.929e-3,2.477451e-3
+elimination/last/streamly,8,0.139757591,306756606,0.139596,0.0,0.0,3444736,0,0,0,22,1279488016,1225,110472,0.135394,0.135394,2.026e-3,2.696084e-3
+elimination/last/streamly,9,0.151965601,333552224,0.151963,0.0,0.0,3444736,0,0,0,31,1439293568,1378,46888,0.147411,0.147411,2.17e-3,2.883988e-3
+elimination/last/streamly,10,0.184385559,404711412,0.184359,0.0,0.0,3444736,0,0,0,40,1599099024,1531,51904,0.178863,0.178863,2.612e-3,3.450353e-3
+elimination/last/streamly,11,0.190598582,418348478,0.190385,0.0,0.0,3444736,0,0,0,44,1759948960,1685,56952,0.184569,0.184569,2.794e-3,3.686941e-3
+elimination/last/streamly,12,0.22267404,488751520,0.220878,0.0,0.0,3444736,0,0,0,131,1919754376,1838,164896,0.213761,0.213761,3.41e-3,4.422852e-3
+elimination/last/streamly,13,0.228626973,501817730,0.228651,0.0,0.0,3506176,9,0,0,46,2079559872,1991,66984,0.221181,0.221181,3.288e-3,5.077039e-3
+elimination/last/streamly,14,0.266270226,584441640,0.2652,0.0,0.0,3506176,0,0,0,127,2239365328,2144,72000,0.256561,0.256561,3.93e-3,5.10404e-3
+elimination/last/streamly,15,0.27535056,604372194,0.271903,0.0,0.0,3506176,0,0,0,323,2399170784,2297,77016,0.260568,0.260568,4.428e-3,6.144411e-3
+elimination/last/streamly,16,0.299053668,656398634,0.290685,0.0,0.0,3506176,0,0,0,490,2560017024,2451,82384,0.279132,0.279132,4.578e-3,6.078274e-3
+elimination/last/streamly,17,0.42324633,928991400,0.412708,0.0,0.0,3506176,0,0,0,607,2719826160,2604,232872,0.393654,0.393654,7.966e-3,1.1187519e-2
+elimination/last/streamly,18,0.332830329,730535664,0.331704,0.0,0.0,3506176,0,0,0,198,2879631560,2757,100768,0.319682,0.319682,5.186e-3,6.736729e-3
+elimination/last/streamly,19,0.333657806,732351938,0.333014,0.0,0.0,3506176,0,0,0,98,3039437016,2910,114352,0.322855,0.322855,4.791e-3,6.324146e-3
+elimination/last/streamly,20,0.387004155,849442846,0.380648,0.0,0.0,3506176,0,0,0,414,3199242472,3063,127936,0.363283,0.363283,6.319e-3,9.571635e-3
+elimination/last/streamly,21,0.384809984,844626816,0.380396,0.0,0.0,3506176,0,0,0,409,3359047816,3216,252936,0.365042,0.365042,6.177e-3,8.096584e-3
+elimination/last/streamly,22,0.411493617,903195232,0.406452,0.0,0.0,3506176,0,0,0,386,3519897864,3370,155192,0.391803,0.391803,6.444e-3,8.336097e-3
+elimination/last/streamly,23,0.423405264,929340354,0.416725,0.0,0.0,3506176,0,0,0,422,3679703320,3523,168776,0.397691,0.397691,6.478e-3,8.517179e-3
+elimination/last/streaming,1,1.408447e-2,30914268,1.4043e-2,1.3555e-2,0.0,3444736,1,0,0,14,143470752,139,10712,1.3235e-2,1.3235e-2,3.22e-4,3.95739e-4
+elimination/last/streaming,2,2.9153909e-2,63990456,2.8956e-2,0.0,0.0,3452928,0,0,0,49,287981680,279,19760,2.7613e-2,2.7613e-2,6.56e-4,7.89519e-4
+elimination/last/streaming,3,4.4336378e-2,97314766,4.2803e-2,0.0,0.0,3452928,0,0,0,74,431456400,418,28728,4.0762e-2,4.0762e-2,8.29e-4,1.144981e-3
+elimination/last/streaming,4,5.7726723e-2,126705498,5.7289e-2,0.0,0.0,3452928,0,0,0,31,575963288,558,37776,5.4881e-2,5.4881e-2,1.115e-3,1.346305e-3
+elimination/last/streaming,5,7.622935e-2,167317266,7.3994e-2,0.0,0.0,3452928,0,0,0,116,719438032,697,46760,7.0818e-2,7.0818e-2,1.374e-3,1.760382e-3
+elimination/last/streaming,6,9.5247147e-2,209059812,9.2542e-2,0.0,0.0,3452928,0,0,0,87,863944944,837,55808,8.8852e-2,8.8852e-2,1.723e-3,2.171048e-3
+elimination/last/streaming,7,0.110296991,242092988,0.107448,0.0,0.0,3452928,0,0,0,206,1007419664,976,64792,0.100913,0.100913,2.097e-3,2.718686e-3
+elimination/last/streaming,8,0.12379556,271721242,0.118799,0.0,0.0,3452928,0,0,0,183,1151926520,1116,73840,0.113684,0.113684,2.242e-3,2.919915e-3
+elimination/last/streaming,9,0.131987399,289701658,0.13175,0.0,0.0,3452928,0,0,0,31,1295401296,1255,82824,0.126932,0.126932,2.25e-3,2.866203e-3
+elimination/last/streaming,10,0.152015191,333661046,0.149331,0.0,0.0,3452928,0,0,0,81,1439908208,1395,91872,0.14246,0.14246,2.713e-3,4.627774e-3
+elimination/last/streaming,11,0.16039102,352045328,0.160267,0.0,0.0,3452928,0,0,0,42,1583382928,1534,100856,0.154712,0.154712,2.709e-3,3.566753e-3
+elimination/last/streaming,12,0.173442809,380692956,0.173291,0.0,0.0,3452928,0,0,0,40,1727889840,1674,109904,0.167406,0.167406,2.951e-3,3.812052e-3
+elimination/last/streaming,13,0.187392588,411311598,0.183526,0.0,0.0,3514368,9,0,0,167,1871364560,1813,118888,0.175632,0.175632,3.382e-3,4.407239e-3
+elimination/last/streaming,14,0.216808797,475877776,0.212554,0.0,0.0,3514368,0,0,0,167,2015871472,1953,127936,0.200444,0.200444,3.79e-3,6.283322e-3
+elimination/last/streaming,15,0.22774903,499890694,0.223742,0.0,0.0,3514368,0,0,0,239,2159346192,2092,136920,0.212626,0.212626,4.294e-3,5.708163e-3
+elimination/last/streaming,16,0.243714123,534932810,0.240655,0.0,0.0,3514368,0,0,0,352,2303853104,2232,145968,0.228597,0.228597,4.567e-3,5.889295e-3
+elimination/last/streaming,17,0.24879531,546085608,0.245539,0.0,0.0,3514368,0,0,0,241,2447327848,2371,154952,0.233957,0.233957,4.557e-3,5.851356e-3
+elimination/last/streaming,18,0.2622169,575544946,0.259233,0.0,0.0,3514368,0,0,0,223,2591834736,2511,164000,0.247967,0.247967,4.815e-3,6.244649e-3
+elimination/last/streaming,19,0.282118655,619227634,0.279143,0.0,0.0,3514368,0,0,0,249,2735309456,2650,172984,0.266446,0.266446,5.098e-3,6.625625e-3
+elimination/last/streaming,20,0.298331647,654813854,0.293296,0.0,0.0,3514368,0,0,0,336,2879816368,2790,182032,0.280341,0.280341,5.339e-3,6.9132e-3
+elimination/last/streaming,21,0.32096277,704487338,0.310554,0.0,0.0,3514368,0,0,0,399,3023291032,2929,191016,0.295076,0.295076,5.654e-3,7.403413e-3
+elimination/last/streaming,22,0.393179473,862997166,0.379223,0.0,0.0,3514368,0,0,0,813,3167798000,3069,200064,0.358615,0.358615,7.33e-3,9.466707e-3
+elimination/last/streaming,23,0.397969257,873510336,0.384946,0.0,0.0,3514368,0,0,0,785,3311272720,3208,209048,0.365609,0.365609,7.178e-3,9.249415e-3
+elimination/last/streaming,25,0.387602746,850756696,0.374286,0.0,0.0,3514368,0,0,0,670,3599254352,3487,227080,0.356471,0.356471,6.519e-3,8.670722e-3
+elimination/last/streaming,26,0.46388937,1018199674,0.452686,0.0,0.0,3514368,0,0,0,613,3743761264,3627,236128,0.428985,0.428985,8.363e-3,1.1147013e-2
+transformation/scan/vector,1,8.511414e-3,18681867,8.511e-3,8.316e-3,0.0,3432448,1,0,0,4,79376432,76,4248,8.068e-3,8.068e-3,2.53e-4,2.96052e-4
+transformation/scan/vector,2,1.8016576e-2,39544938,1.7979e-2,0.0,0.0,3440640,0,0,0,10,159805392,153,6800,1.716e-2,1.716e-2,4.09e-4,4.88009e-4
+transformation/scan/vector,3,2.7136522e-2,59562436,2.708e-2,0.0,0.0,3440640,0,0,0,18,239185840,229,9304,2.5964e-2,2.5964e-2,5.57e-4,6.83803e-4
+transformation/scan/vector,4,3.4003873e-2,74635758,3.3946e-2,0.0,0.0,3440640,0,0,0,19,319610696,306,11856,3.2581e-2,3.2581e-2,6.25e-4,7.87655e-4
+transformation/scan/vector,5,4.3011392e-2,94406554,4.2891e-2,0.0,0.0,3440640,0,0,0,12,398991216,382,14376,4.1395e-2,4.1395e-2,7.27e-4,9.36364e-4
+transformation/scan/vector,6,5.6532312e-2,124083878,5.6423e-2,0.0,0.0,3440640,0,0,0,33,479416144,459,16928,5.4447e-2,5.4447e-2,9.46e-4,1.245381e-3
+transformation/scan/vector,7,5.9690297e-2,131015378,5.9641e-2,0.0,0.0,3440640,0,0,0,24,559841072,536,19480,5.76e-2,5.76e-2,9.7e-4,1.245707e-3
+transformation/scan/vector,8,7.1046742e-2,155941854,6.9798e-2,0.0,0.0,3440640,0,0,0,56,639221416,612,22000,6.7034e-2,6.7034e-2,1.212e-3,1.626426e-3
+transformation/scan/vector,9,0.204418543,448682172,0.192555,0.0,0.0,3440640,0,0,0,282,719646448,689,24552,0.180163,0.180163,4.682e-3,1.3492366e-2
+transformation/scan/vector,10,0.102463778,224899695,9.8737e-2,0.0,0.0,3440640,0,0,0,174,799026896,765,27072,9.4305e-2,9.4305e-2,1.863e-3,2.323564e-3
+transformation/scan/vector,11,0.10287797,225808834,0.100261,0.0,0.0,3440640,0,0,0,140,879451824,842,29624,9.4223e-2,9.4223e-2,1.845e-3,2.507133e-3
+transformation/scan/vector,12,0.110846923,243300024,0.10649,0.0,0.0,3440640,0,0,0,218,959876704,919,32176,0.101561,0.101561,1.967e-3,2.565983e-3
+transformation/scan/vector,13,0.138957718,305000935,0.134366,0.0,0.0,3502080,9,0,0,174,1039257200,995,34696,0.128731,0.128731,2.341e-3,3.258078e-3
+transformation/scan/vector,14,0.127663645,280211374,0.123251,0.0,0.0,3502080,0,0,0,203,1119682128,1072,37248,0.116975,0.116975,2.176e-3,2.80079e-3
+transformation/scan/vector,15,0.197317972,433097034,0.189448,0.0,0.0,3502080,0,0,0,265,1199062576,1148,39768,0.179594,0.179594,3.256e-3,4.281419e-3
+transformation/scan/vector,16,0.158566213,348039994,0.153584,0.0,0.0,3502080,0,0,0,298,1279487504,1225,42320,0.145585,0.145585,2.648e-3,3.471765e-3
+transformation/scan/vector,17,0.152132523,333918594,0.149474,0.0,0.0,3502080,0,0,0,290,1359912408,1302,44872,0.142443,0.142443,2.572e-3,3.377692e-3
+transformation/scan/vector,18,0.156876249,344330660,0.155495,0.0,0.0,3502080,0,0,0,186,1439292880,1378,47392,0.147907,0.147907,2.547e-3,3.353286e-3
+transformation/scan/vector,19,0.160167015,351553670,0.159212,0.0,0.0,3502080,0,0,0,135,1519717808,1455,49944,0.152814,0.152814,2.584e-3,3.356134e-3
+transformation/scan/vector,20,0.167718033,368127564,0.166814,0.0,0.0,3502080,0,0,0,132,1599098256,1531,52464,0.160233,0.160233,2.678e-3,3.558772e-3
+transformation/scan/vector,21,0.17662624,387680284,0.176,0.0,0.0,3502080,0,0,0,140,1679523080,1608,55016,0.169896,0.169896,2.825e-3,3.78465e-3
+transformation/scan/vector,22,0.182256336,400037920,0.181843,0.0,0.0,3502080,0,0,0,112,1759948112,1685,57568,0.17582,0.17582,2.77e-3,3.70132e-3
+transformation/scan/vector,23,0.18824257,413177222,0.18794,0.0,0.0,3502080,0,0,0,96,1839328560,1761,60088,0.181848,0.181848,2.846e-3,3.824682e-3
+transformation/scan/vector,25,0.202622206,444739348,0.202575,0.0,0.0,3502080,0,0,0,37,1999133936,1914,65160,0.196104,0.196104,2.992e-3,3.963965e-3
+transformation/scan/vector,26,0.208245645,457082348,0.208234,0.0,0.0,3502080,0,0,0,41,2079558816,1991,67712,0.201569,0.201569,3.205e-3,4.189255e-3
+transformation/scan/vector,27,0.221667169,486541498,0.221068,0.0,0.0,3502080,0,0,0,140,2159983792,2068,70264,0.212338,0.212338,3.584e-3,4.680749e-3
+transformation/scan/vector,28,0.239829286,526405894,0.238791,0.0,0.0,3502080,0,0,0,174,2239364240,2144,72784,0.229381,0.229381,3.83e-3,4.976849e-3
+transformation/scan/vector,30,0.258888076,568238390,0.258017,0.0,0.0,3502080,0,0,0,156,2399169616,2297,77856,0.249385,0.249385,4.012e-3,5.240868e-3
+transformation/scan/vector,31,0.244605433,536889152,0.244579,0.0,0.0,3502080,0,0,0,47,2479594528,2374,80408,0.23709,0.23709,3.515e-3,4.78016e-3
+transformation/scan/vector,33,0.274414653,602317994,0.27409,0.0,0.0,3502080,0,0,0,60,2639399896,2527,85480,0.265431,0.265431,3.997e-3,5.369335e-3
+transformation/scan/vector,35,0.281467981,617799464,0.281263,0.0,0.0,3502080,0,0,0,54,2799205296,2680,90552,0.272428,0.272428,4.261e-3,5.560156e-3
+transformation/scan/vector,36,0.317100244,696009384,0.31702,0.0,0.0,3502080,0,0,0,88,2879630224,2757,93104,0.306465,0.306465,4.924e-3,6.448323e-3
+transformation/scan/vector,38,0.320512845,703499808,0.320292,0.0,0.0,3502080,0,0,0,71,3039435600,2910,98176,0.310265,0.310265,4.654e-3,6.241591e-3
+transformation/scan/streamly,1,2.8580265e-2,62731358,2.8591e-2,2.8283e-2,0.0,3436544,1,0,0,3,207343608,198,16216,2.7855e-2,2.7855e-2,4.31e-4,5.29191e-4
+transformation/scan/streamly,2,6.3034941e-2,138356608,6.0821e-2,0.0,0.0,3444736,0,0,0,47,415742544,397,30824,5.8892e-2,5.8892e-2,9.39e-4,1.1359e-3
+transformation/scan/streamly,3,9.6147765e-2,211036536,9.5891e-2,0.0,0.0,3444736,0,0,0,63,623090208,595,45328,9.2744e-2,9.2744e-2,1.415e-3,1.800326e-3
+transformation/scan/streamly,4,0.117467112,257830820,0.117106,0.0,0.0,3444736,0,0,0,31,831485016,794,59936,0.113924,0.113924,1.56e-3,2.000037e-3
+transformation/scan/streamly,5,0.143688176,315383915,0.143615,0.0,0.0,3444736,0,0,0,36,1039879968,993,74544,0.139914,0.139914,1.862e-3,2.428429e-3
+transformation/scan/streamly,6,0.172602813,378849226,0.172407,0.0,0.0,3444736,0,0,0,39,1247227632,1191,89064,0.168076,0.168076,2.054e-3,2.666497e-3
+transformation/scan/streamly,7,0.216569747,475353090,0.21412,0.0,0.0,3444736,0,0,0,94,1455622512,1390,103672,0.207717,0.207717,2.921e-3,3.649225e-3
+transformation/scan/streamly,8,0.23768943,521709054,0.235273,0.0,0.0,3444736,0,0,0,117,1664013896,1589,118480,0.228481,0.228481,3.054e-3,3.900878e-3
+transformation/scan/streamly,9,0.280227968,615077742,0.279324,0.0,0.0,3444736,0,0,0,85,1871365056,1787,132800,0.271886,0.271886,3.628e-3,4.602894e-3
+transformation/scan/streamly,10,0.295551835,648712396,0.294855,0.0,0.0,3444736,0,0,0,83,2079759928,1986,147360,0.286654,0.286654,3.751e-3,4.827174e-3
+transformation/scan/streamly,11,0.323547296,710160173,0.321587,0.0,0.0,3444736,0,0,0,125,2287107600,2184,161880,0.312922,0.312922,4.145e-3,5.278764e-3
+transformation/scan/streamly,12,0.359488647,789048499,0.359036,0.0,0.0,3444736,0,0,0,139,2495502416,2383,176392,0.349347,0.349347,4.614e-3,5.874288e-3
+transformation/scan/streamly,13,0.389471249,854857910,0.388895,0.0,0.0,3506176,9,0,0,207,2703897352,2582,191048,0.377586,0.377586,5.114e-3,6.576796e-3
+transformation/scan/streamly,14,0.419552044,920882845,0.418551,0.0,0.0,3506176,0,0,0,210,2911245016,2780,205568,0.406953,0.406953,5.249e-3,6.950791e-3
+transformation/scan/streamly,15,0.43931719,964265702,0.439021,0.0,0.0,3506176,0,0,0,119,3119639896,2979,220176,0.427713,0.427713,5.414e-3,6.993916e-3
+transformation/scan/streamly,16,0.479652954,1052799466,0.47927,0.0,0.0,3506176,0,0,0,116,3326987560,3177,234696,0.467167,0.467167,5.809e-3,7.827408e-3
+transformation/scan/streamly,17,0.507129191,1113107560,0.506731,0.0,0.0,3506176,0,0,0,134,3535382408,3376,249256,0.493896,0.493896,6.249e-3,8.083335e-3
+transformation/scan/streamly,18,0.536111781,1176722030,0.535548,0.0,0.0,3506176,0,0,0,140,3743777320,3575,263912,0.521723,0.521723,6.514e-3,8.478752e-3
+transformation/scan/streaming,1,3.4264254e-2,75207331,3.4269e-2,3.3788e-2,0.0,3428352,1,0,0,8,239181832,229,27512,3.331e-2,3.331e-2,4.83e-4,6.07972e-4
+transformation/scan/streaming,2,7.1488991e-2,156912493,7.1404e-2,0.0,0.0,3440640,0,0,0,21,479416352,459,55248,6.9369e-2,6.9369e-2,1.032e-3,1.341122e-3
+transformation/scan/streaming,3,9.7734072e-2,214518390,9.7758e-2,0.0,0.0,3440640,0,0,0,21,719646760,689,73768,9.5162e-2,9.5162e-2,1.255e-3,1.667581e-3
+transformation/scan/streaming,4,0.135525487,297467486,0.135439,0.0,0.0,3440640,0,0,0,30,959877112,919,99664,0.131891,0.131891,1.755e-3,2.273752e-3
+transformation/scan/streaming,5,0.167648941,367975876,0.167417,0.0,0.0,3440640,0,0,0,55,1199063096,1148,127280,0.163068,0.163068,2.125e-3,2.743452e-3
+transformation/scan/streaming,6,0.207664276,455806296,0.207457,0.0,0.0,3440640,0,0,0,60,1439293504,1378,145816,0.20211,0.20211,2.529e-3,3.284476e-3
+transformation/scan/streaming,7,0.228307575,501116754,0.22821,0.0,0.0,3440640,0,0,0,44,1679523912,1608,171712,0.222705,0.222705,2.735e-3,3.579315e-3
+transformation/scan/streaming,8,0.275202229,604046670,0.274817,0.0,0.0,3440640,0,0,0,95,1919754216,1838,199448,0.267169,0.267169,3.564e-3,4.608522e-3
+transformation/scan/streaming,9,0.30201714,662903216,0.301778,0.0,0.0,3440640,0,0,0,81,2159984728,2068,217984,0.29369,0.29369,3.844e-3,4.951319e-3
+transformation/scan/streaming,10,0.339014027,744108366,0.338882,0.0,0.0,3440640,0,0,0,81,2399170656,2297,243768,0.330338,0.330338,4.124e-3,5.33336e-3
+transformation/scan/streaming,11,0.366293649,803984956,0.366231,0.0,0.0,3440640,0,0,0,79,2639401064,2527,271504,0.356884,0.356884,4.504e-3,5.865607e-3
+transformation/scan/streaming,12,0.399222132,876260316,0.399163,0.0,0.0,3440640,0,0,0,85,2879631424,2757,290040,0.388753,0.388753,4.943e-3,6.418117e-3
+transformation/scan/streaming,13,0.424866886,932548474,0.424925,0.0,0.0,3440640,0,0,0,78,3119861880,2987,315936,0.414509,0.414509,5.063e-3,6.606316e-3
+transformation/scan/streaming,14,0.46477288,1020138902,0.464778,0.0,0.0,3440640,0,0,0,108,3359047808,3216,343552,0.453115,0.453115,5.568e-3,7.310905e-3
+transformation/scan/streaming,15,0.49733344,1091606700,0.49716,0.0,0.0,3440640,0,0,0,121,3599278216,3446,362088,0.485002,0.485002,5.963e-3,7.869883e-3
+transformation/scan/streaming,16,0.531235986,1166020034,0.530983,0.0,0.0,3440640,0,0,0,147,3839508624,3676,387984,0.517661,0.517661,6.427e-3,8.340604e-3
+transformation/scan/streaming,17,0.57734938,1267235232,0.576277,0.0,0.0,3440640,0,0,0,286,4079739008,3906,415720,0.559978,0.559978,7.346e-3,9.532942e-3
+transformation/map/vector,1,7.624818e-3,16735864,7.6e-3,7.438e-3,0.0,3440640,1,0,0,8,79376432,76,4248,7.182e-3,7.182e-3,2.58e-4,2.9889e-4
+transformation/map/vector,2,1.4417212e-2,31644612,1.431e-2,0.0,0.0,3448832,0,0,0,24,159805392,153,6800,1.353e-2,1.353e-2,4.17e-4,5.09685e-4
+transformation/map/vector,3,2.311435e-2,50734126,2.3e-2,0.0,0.0,3448832,0,0,0,27,239185840,229,9304,2.1617e-2,2.1617e-2,7.21e-4,8.4283e-4
+transformation/map/vector,4,3.1011001e-2,68066646,3.0939e-2,0.0,0.0,3448832,0,0,0,21,319610696,306,11856,2.9527e-2,2.9527e-2,7.14e-4,9.19107e-4
+transformation/map/vector,5,3.713661e-2,81511864,3.7082e-2,0.0,0.0,3448832,0,0,0,26,398991216,382,14376,3.5371e-2,3.5371e-2,7.78e-4,9.80462e-4
+transformation/map/vector,6,4.3947984e-2,96462276,4.3897e-2,0.0,0.0,3448832,0,0,0,22,479416144,459,16928,4.1986e-2,4.1986e-2,9.78e-4,1.216271e-3
+transformation/map/vector,7,5.0164922e-2,110107982,5.0104e-2,0.0,0.0,3448832,0,0,0,23,559841072,536,19480,4.8024e-2,4.8024e-2,1.006e-3,1.30701e-3
+transformation/map/vector,8,5.6562515e-2,124150122,5.648e-2,0.0,0.0,3448832,0,0,0,26,639221416,612,22000,5.4001e-2,5.4001e-2,1.187e-3,1.515194e-3
+transformation/map/vector,9,6.5682625e-2,144168064,6.5652e-2,0.0,0.0,3448832,0,0,0,26,719646448,689,24552,6.2943e-2,6.2943e-2,1.291e-3,1.679428e-3
+transformation/map/vector,10,6.8030617e-2,149321698,6.7995e-2,0.0,0.0,3448832,0,0,0,22,799026896,765,27072,6.5245e-2,6.5245e-2,1.351e-3,1.768998e-3
+transformation/map/vector,11,7.8062739e-2,171341402,7.795e-2,0.0,0.0,3448832,0,0,0,15,879451824,842,29624,7.4947e-2,7.4947e-2,1.511e-3,1.947132e-3
+transformation/map/vector,12,8.6330677e-2,189488858,8.6232e-2,0.0,0.0,3448832,0,0,0,21,959876704,919,32176,8.2865e-2,8.2865e-2,1.63e-3,2.152962e-3
+transformation/map/vector,13,8.8851464e-2,195021788,8.8732e-2,0.0,0.0,3510272,9,0,0,28,1039257200,995,34696,8.5312e-2,8.5312e-2,1.663e-3,2.188404e-3
+transformation/map/vector,14,9.6268737e-2,211302088,9.6166e-2,0.0,0.0,3510272,0,0,0,19,1119682128,1072,37248,9.2683e-2,9.2683e-2,1.7e-3,2.286825e-3
+transformation/map/vector,15,0.103394789,226943220,0.103104,0.0,0.0,3510272,0,0,0,53,1199062576,1148,39768,9.9103e-2,9.9103e-2,1.95e-3,2.553268e-3
+transformation/map/vector,16,0.115115441,252669086,0.115068,0.0,0.0,3510272,0,0,0,25,1279487504,1225,42320,0.110506,0.110506,2.14e-3,2.765338e-3
+transformation/map/vector,17,0.113030086,248091888,0.112995,0.0,0.0,3510272,0,0,0,27,1359912408,1302,44872,0.108778,0.108778,1.948e-3,2.62627e-3
+transformation/map/vector,18,0.128068257,281099472,0.127961,0.0,0.0,3510272,0,0,0,28,1439292880,1378,47392,0.122985,0.122985,2.406e-3,3.127527e-3
+transformation/map/vector,19,0.142414855,312589100,0.142148,0.0,0.0,3510272,0,0,0,62,1519717808,1455,49944,0.136242,0.136242,2.625e-3,3.448415e-3
+transformation/map/vector,20,0.141448488,310467998,0.141264,0.0,0.0,3510272,0,0,0,40,1599098256,1531,52464,0.135927,0.135927,2.512e-3,3.38189e-3
+transformation/map/vector,21,0.147509734,323771948,0.147266,0.0,0.0,3510272,0,0,0,48,1679523080,1608,55016,0.141609,0.141609,2.694e-3,3.573637e-3
+transformation/map/vector,22,0.158688537,348308520,0.158442,0.0,0.0,3510272,0,0,0,42,1759948096,1685,57568,0.15231,0.15231,2.909e-3,3.851697e-3
+transformation/map/vector,23,0.162274491,356179420,0.161688,0.0,0.0,3510272,0,0,0,54,1839328560,1761,60088,0.155271,0.155271,2.978e-3,3.871884e-3
+transformation/map/vector,25,0.175533887,385282666,0.175348,0.0,0.0,3510272,0,0,0,56,1999133936,1914,65160,0.168564,0.168564,3.251e-3,4.264762e-3
+transformation/map/vector,26,0.177043525,388596234,0.177044,0.0,0.0,3510272,0,0,0,34,2079558816,1991,67712,0.170406,0.170406,3.18e-3,4.200672e-3
+transformation/map/vector,27,0.180996893,397273522,0.180819,0.0,0.0,3510272,0,0,0,71,2159983792,2068,70264,0.173612,0.173612,3.377e-3,4.451685e-3
+transformation/map/vector,28,0.185093439,406265162,0.18487,0.0,0.0,3510272,0,0,0,90,2239364240,2144,72784,0.177528,0.177528,3.368e-3,4.490059e-3
+transformation/map/vector,30,0.195963671,430124420,0.195537,0.0,0.0,3510272,0,0,0,104,2399169616,2297,77856,0.187939,0.187939,3.536e-3,4.682988e-3
+transformation/map/vector,31,0.203768619,447255669,0.203474,0.0,0.0,3510272,0,0,0,121,2479594544,2374,80408,0.195167,0.195167,3.927e-3,5.150992e-3
+transformation/map/vector,33,0.216949147,476185856,0.216618,0.0,0.0,3510272,0,0,0,120,2639399896,2527,85480,0.20786,0.20786,4.099e-3,5.460545e-3
+transformation/map/vector,35,0.231553174,508240496,0.231333,0.0,0.0,3510272,0,0,0,76,2799205296,2680,90552,0.222014,0.222014,4.464e-3,5.797008e-3
+transformation/map/vector,36,0.25357196,556569962,0.252203,0.0,0.0,3510272,0,0,0,139,2879630224,2757,93104,0.241956,0.241956,4.791e-3,6.26784e-3
+transformation/map/vector,38,0.254341889,558259920,0.254194,0.0,0.0,3510272,0,0,0,78,3039435600,2910,98176,0.244525,0.244525,4.586e-3,6.069708e-3
+transformation/map/vector,40,0.282551411,620177474,0.282011,0.0,0.0,3510272,0,0,0,85,3199240872,3063,103248,0.271139,0.271139,5.195e-3,6.972827e-3
+transformation/map/vector,42,0.28609193,627948648,0.285925,0.0,0.0,3514368,0,0,0,52,3359046352,3216,108320,0.275228,0.275228,5.087e-3,6.753039e-3
+transformation/map/vector,44,0.301710235,662229588,0.301606,0.0,0.0,3514368,0,0,0,66,3519896208,3370,113424,0.290402,0.290402,5.432e-3,7.203318e-3
+transformation/map/vector,47,0.329477355,723176160,0.329223,0.0,0.0,3514368,0,0,0,84,3759082032,3599,121016,0.316649,0.316649,5.919e-3,7.830226e-3
+transformation/map/streamly,1,2.7605598e-2,60592054,2.7604e-2,2.721e-2,0.0,3432448,1,0,0,8,191983808,186,9400,2.6781e-2,2.6781e-2,4.32e-4,5.49062e-4
+transformation/map/streamly,2,5.2001527e-2,114139173,5.1946e-2,0.0,0.0,3440640,0,0,0,15,383975544,372,17104,5.0413e-2,5.0413e-2,7.73e-4,9.7992e-4
+transformation/map/streamly,3,7.4412709e-2,163329868,7.4397e-2,0.0,0.0,3440640,0,0,0,17,575963312,558,24792,7.2252e-2,7.2252e-2,1.062e-3,1.364218e-3
+transformation/map/streamly,4,0.101312675,222373101,0.101323,0.0,0.0,3440640,0,0,0,26,767951064,744,32496,9.8464e-2,9.8464e-2,1.378e-3,1.784531e-3
+transformation/map/streamly,5,0.12449727,273261442,0.124426,0.0,0.0,3440640,0,0,0,35,959938848,930,40200,0.120828,0.120828,1.682e-3,2.223607e-3
+transformation/map/streamly,6,0.142577018,312945044,0.142363,0.0,0.0,3440640,0,0,0,26,1151926616,1116,47904,0.138092,0.138092,1.797e-3,2.416087e-3
+transformation/map/streamly,7,0.178612117,392039164,0.178498,0.0,0.0,3440640,0,0,0,58,1343914384,1302,55608,0.173376,0.173376,2.328e-3,3.068703e-3
+transformation/map/streamly,8,0.189356417,415622026,0.189198,0.0,0.0,3440640,0,0,0,42,1535902096,1488,63312,0.184146,0.184146,2.452e-3,3.226122e-3
+transformation/map/streamly,9,0.218393358,479355762,0.218301,0.0,0.0,3440640,0,0,0,42,1727889920,1674,71016,0.212429,0.212429,2.792e-3,3.685752e-3
+transformation/map/streamly,10,0.245882324,539691850,0.245766,0.0,0.0,3440640,0,0,0,63,1919877688,1860,78720,0.239034,0.239034,3.164e-3,4.153365e-3
+transformation/map/streamly,11,0.267082301,586224048,0.266919,0.0,0.0,3440640,0,0,0,82,2111865456,2046,86424,0.259676,0.259676,3.352e-3,4.480321e-3
+transformation/map/streamly,12,0.294920962,647327674,0.294651,0.0,0.0,3440640,0,0,0,76,2303853224,2232,94128,0.28639,0.28639,3.872e-3,5.070846e-3
+transformation/map/streamly,13,0.328970386,722063382,0.328459,0.0,0.0,3502080,9,0,0,159,2495840992,2418,101832,0.317938,0.317938,4.565e-3,6.062417e-3
+transformation/map/streamly,14,0.348243495,764366322,0.34772,0.0,0.0,3502080,0,0,0,158,2687828760,2604,109536,0.337232,0.337232,4.639e-3,6.059906e-3
+transformation/map/streamly,15,0.359250748,788526356,0.358914,0.0,0.0,3502080,0,0,0,140,2879816528,2790,117240,0.348633,0.348633,4.796e-3,6.203446e-3
+transformation/map/streamly,16,0.386068071,847388228,0.38581,0.0,0.0,3502080,0,0,0,85,3071804296,2976,124944,0.375479,0.375479,4.863e-3,6.409289e-3
+transformation/map/streamly,17,0.424478281,931695478,0.424012,0.0,0.0,3502080,0,0,0,95,3263792088,3162,132648,0.412519,0.412519,5.472e-3,7.18904e-3
+transformation/map/streamly,18,0.423852711,930322506,0.423724,0.0,0.0,3502080,0,0,0,88,3455779832,3348,140352,0.41249,0.41249,5.303e-3,7.134961e-3
+transformation/map/streamly,19,0.44444451,975519753,0.444453,0.0,0.0,3502080,0,0,0,76,3647767600,3534,148056,0.432619,0.432619,5.49e-3,7.297734e-3
+transformation/map/streamly,20,0.483910702,1062144876,0.483863,0.0,0.0,3502080,0,0,0,91,3839755368,3720,155760,0.470938,0.470938,6.077e-3,8.082579e-3
+transformation/map/streaming,1,2.5543682e-2,56066308,2.5503e-2,2.4981e-2,0.0,3428352,1,0,0,10,223981728,217,15704,2.4425e-2,2.4425e-2,5.6e-4,6.86219e-4
+transformation/map/streaming,2,4.4532827e-2,97745964,4.4517e-2,0.0,0.0,3440640,0,0,0,14,447971360,434,50512,4.2916e-2,4.2916e-2,8.3e-4,1.053734e-3
+transformation/map/streaming,3,7.1643504e-2,157251755,7.1579e-2,0.0,0.0,3440640,0,0,0,16,671957040,651,74888,6.9115e-2,6.9115e-2,1.21e-3,1.594137e-3
+transformation/map/streaming,4,9.6216284e-2,211186950,9.6227e-2,0.0,0.0,3440640,0,0,0,17,895942704,868,99280,9.2971e-2,9.2971e-2,1.629e-3,2.090815e-3
+transformation/map/streaming,5,0.115812704,254199524,0.115826,0.0,0.0,3440640,0,0,0,25,1119928400,1085,123672,0.11181,0.11181,2.015e-3,2.577188e-3
+transformation/map/streaming,6,0.142662158,313131876,0.14265,0.0,0.0,3440640,0,0,0,29,1343914080,1302,148064,0.137939,0.137939,2.352e-3,3.0203e-3
+transformation/map/streaming,7,0.15404831,338123622,0.153933,0.0,0.0,3440640,0,0,0,41,1567899840,1519,162040,0.148964,0.148964,2.488e-3,3.281588e-3
+transformation/map/streaming,8,0.181325958,397995786,0.181052,0.0,0.0,3440640,0,0,0,55,1791885464,1736,176016,0.174779,0.174779,3.014e-3,3.906221e-3
+transformation/map/streaming,9,0.203622018,446933880,0.20351,0.0,0.0,3440640,0,0,0,43,2015871200,1953,189992,0.196895,0.196895,3.263e-3,4.252926e-3
+transformation/map/streaming,10,0.225831445,495681766,0.225871,0.0,0.0,3440640,0,0,0,45,2239856880,2170,203968,0.218338,0.218338,3.66e-3,4.815473e-3
+transformation/map/streaming,11,0.259196624,568915646,0.259015,0.0,0.0,3440640,0,0,0,61,2463842704,2387,228360,0.250391,0.250391,4.252e-3,5.514047e-3
+transformation/map/streaming,12,0.275355429,604382882,0.274867,0.0,0.0,3440640,0,0,0,86,2687828384,2604,252752,0.26567,0.26567,4.446e-3,5.762399e-3
+transformation/map/streaming,13,0.296681405,651191692,0.296721,0.0,0.0,3440640,0,0,0,56,2911814064,2821,277144,0.287093,0.287093,4.726e-3,6.189636e-3
+transformation/map/streaming,14,0.32600086,715545576,0.326079,0.0,0.0,3440640,0,0,0,59,3135799744,3038,301536,0.315386,0.315386,5.212e-3,6.760733e-3
+transformation/map/streaming,15,0.335800656,737055306,0.335667,0.0,0.0,3440640,0,0,0,91,3359785424,3255,325928,0.324585,0.324585,5.352e-3,7.026044e-3
+transformation/map/streaming,16,0.377274159,828086288,0.377211,0.0,0.0,3440640,0,0,0,67,3583771184,3472,339904,0.36435,0.36435,6.252e-3,8.128364e-3
+transformation/map/streaming,17,0.389947858,855904026,0.389469,0.0,0.0,3440640,0,0,0,107,3807756888,3689,353880,0.376647,0.376647,6.164e-3,8.057337e-3
+transformation/map/streaming,18,0.42227471,926858846,0.422166,0.0,0.0,3440640,0,0,0,93,4031742544,3906,367856,0.407975,0.407975,6.802e-3,8.958148e-3
+transformation/map/streaming,19,0.435077349,954959624,0.434986,0.0,0.0,3440640,0,0,0,87,4255728224,4123,381832,0.421197,0.421197,6.635e-3,8.874175e-3
+transformation/map/streaming,20,0.478298851,1049827306,0.477629,0.0,0.0,3440640,0,0,0,224,4479714048,4340,406224,0.460119,0.460119,8.041e-3,1.0427248e-2
+transformation/map/streaming,21,0.492142726,1080213488,0.491603,0.0,0.0,3440640,0,0,0,181,4703699672,4557,430616,0.474626,0.474626,7.812e-3,1.0362206e-2
+transformation/mapM/vector,1,9.718987e-3,21332406,9.718e-3,9.546e-3,0.0,3424256,1,0,0,2,79376432,76,4248,9.303e-3,9.303e-3,2.47e-4,2.99672e-4
+transformation/mapM/vector,2,1.4417261e-2,31644683,1.4406e-2,0.0,0.0,3432448,0,0,0,3,159805392,153,6800,1.3746e-2,1.3746e-2,3.79e-4,4.76953e-4
+transformation/mapM/vector,3,2.1399593e-2,46970394,2.1372e-2,0.0,0.0,3432448,0,0,0,8,239185840,229,9304,2.0516e-2,2.0516e-2,4.5e-4,5.77217e-4
+transformation/mapM/vector,4,2.7993401e-2,61443228,2.792e-2,0.0,0.0,3432448,0,0,0,15,319610696,306,11856,2.6624e-2,2.6624e-2,6.58e-4,8.32954e-4
+transformation/mapM/vector,5,3.337073e-2,73246052,3.3376e-2,0.0,0.0,3432448,0,0,0,7,398991216,382,14376,3.2016e-2,3.2016e-2,7.39e-4,9.40167e-4
+transformation/mapM/vector,6,4.228132e-2,92804080,4.2291e-2,0.0,0.0,3432448,0,0,0,9,479416144,459,16928,4.0531e-2,4.0531e-2,8.94e-4,1.139375e-3
+transformation/mapM/vector,7,4.8235612e-2,105873284,4.826e-2,0.0,0.0,3432448,0,0,0,7,559841072,536,19480,4.6418e-2,4.6418e-2,9.12e-4,1.215374e-3
+transformation/mapM/vector,8,5.3428411e-2,117271048,5.3403e-2,0.0,0.0,3432448,0,0,0,10,639221416,612,22000,5.1307e-2,5.1307e-2,1.031e-3,1.340577e-3
+transformation/mapM/vector,9,6.7472979e-2,148097744,6.7476e-2,0.0,0.0,3432448,0,0,0,17,719646448,689,24552,6.4776e-2,6.4776e-2,1.328e-3,1.709585e-3
+transformation/mapM/vector,10,6.6927571e-2,146900620,6.6933e-2,0.0,0.0,3432448,0,0,0,16,799026896,765,27072,6.4293e-2,6.4293e-2,1.338e-3,1.742672e-3
+transformation/mapM/vector,11,7.3962074e-2,162340764,7.3938e-2,0.0,0.0,3432448,0,0,0,16,879451824,842,29624,7.116e-2,7.116e-2,1.382e-3,1.827817e-3
+transformation/mapM/vector,12,8.281938e-2,181781838,8.2753e-2,0.0,0.0,3432448,0,0,0,32,959876704,919,32176,7.9423e-2,7.9423e-2,1.611e-3,2.094294e-3
+transformation/mapM/vector,13,8.3993885e-2,184359810,8.399e-2,0.0,0.0,3493888,9,0,0,19,1039257200,995,34696,8.0832e-2,8.0832e-2,1.575e-3,2.083395e-3
+transformation/mapM/vector,14,9.5485611e-2,209583192,9.5407e-2,0.0,0.0,3493888,0,0,0,18,1119682128,1072,37248,9.1841e-2,9.1841e-2,1.759e-3,2.325339e-3
+transformation/mapM/vector,15,0.102569755,225132324,0.102521,0.0,0.0,3493888,0,0,0,25,1199062576,1148,39768,9.8614e-2,9.8614e-2,1.889e-3,2.484006e-3
+transformation/mapM/vector,16,0.113145847,248345988,0.112893,0.0,0.0,3493888,0,0,0,33,1279487504,1225,42320,0.108677,0.108677,2.008e-3,2.679445e-3
+transformation/mapM/vector,17,0.115911017,254415300,0.115933,0.0,0.0,3493888,0,0,0,17,1359912408,1302,44872,0.11159,0.11159,2.148e-3,2.813383e-3
+transformation/mapM/vector,18,0.121781046,267299558,0.121476,0.0,0.0,3493888,0,0,0,25,1439292880,1378,47392,0.11691,0.11691,2.21e-3,2.930817e-3
+transformation/mapM/vector,19,0.129411254,284047232,0.129232,0.0,0.0,3493888,0,0,0,31,1519717808,1455,49944,0.124444,0.124444,2.333e-3,3.080216e-3
+transformation/mapM/vector,20,0.13650805,299624142,0.136537,0.0,0.0,3493888,0,0,0,22,1599098256,1531,52464,0.130966,0.130966,2.627e-3,3.405855e-3
+transformation/mapM/vector,21,0.144784577,317790428,0.144761,0.0,0.0,3493888,0,0,0,37,1679523080,1608,55016,0.139047,0.139047,2.593e-3,3.507804e-3
+transformation/mapM/vector,22,0.15274898,335271666,0.152534,0.0,0.0,3493888,0,0,0,38,1759948112,1685,57568,0.146824,0.146824,2.792e-3,3.758543e-3
+transformation/mapM/vector,23,0.152830968,335451656,0.152797,0.0,0.0,3493888,0,0,0,24,1839328560,1761,60088,0.14726,0.14726,2.724e-3,3.598674e-3
+transformation/mapM/vector,25,0.174643605,383328636,0.174622,0.0,0.0,3493888,0,0,0,41,1999133936,1914,65160,0.168196,0.168196,3.12e-3,4.117984e-3
+transformation/mapM/vector,26,0.181389214,398134632,0.181346,0.0,0.0,3493888,0,0,0,50,2079558816,1991,67712,0.174521,0.174521,3.35e-3,4.355188e-3
+transformation/mapM/vector,27,0.187822649,412255560,0.187491,0.0,0.0,3493888,0,0,0,60,2159983792,2068,70264,0.180343,0.180343,3.36e-3,4.465492e-3
+transformation/mapM/vector,28,0.198544684,435789552,0.198472,0.0,0.0,3493888,0,0,0,53,2239364240,2144,72784,0.190839,0.190839,3.608e-3,4.740968e-3
+transformation/mapM/vector,30,0.214242222,470244360,0.213885,0.0,0.0,3493888,0,0,0,98,2399169616,2297,77856,0.205139,0.205139,3.992e-3,5.260339e-3
+transformation/mapM/vector,31,0.204911781,449764792,0.205006,0.0,0.0,3493888,0,0,0,33,2479594544,2374,80408,0.197559,0.197559,3.628e-3,4.807721e-3
+transformation/mapM/vector,33,0.236317848,518698652,0.234253,0.0,0.0,3493888,0,0,0,252,2639399896,2527,85480,0.221742,0.221742,4.346e-3,5.80387e-3
+transformation/mapM/vector,35,0.239359077,525373765,0.239341,0.0,0.0,3493888,0,0,0,47,2799205296,2680,90552,0.230242,0.230242,4.479e-3,5.921933e-3
+transformation/mapM/vector,36,0.254729872,559111490,0.254473,0.0,0.0,3493888,0,0,0,75,2879630224,2757,93104,0.244542,0.244542,4.74e-3,6.239893e-3
+transformation/mapM/vector,38,0.27711086,608235973,0.276493,0.0,0.0,3493888,0,0,0,109,3039435600,2910,98176,0.265115,0.265115,5.299e-3,7.037287e-3
+transformation/mapM/vector,40,0.275056203,603726123,0.274844,0.0,0.0,3493888,0,0,0,79,3199240872,3063,103248,0.264419,0.264419,4.961e-3,6.591363e-3
+transformation/mapM/vector,42,0.287779324,631652348,0.287748,0.0,0.0,3493888,0,0,0,53,3359046352,3216,108320,0.277043,0.277043,5.119e-3,6.82601e-3
+transformation/mapM/vector,44,0.304600065,668572528,0.304417,0.0,0.0,3493888,0,0,0,54,3519896208,3370,113424,0.293337,0.293337,5.36e-3,7.150457e-3
+transformation/mapM/vector,47,0.328154548,720272686,0.327731,0.0,0.0,3493888,0,0,0,82,3759082032,3599,121016,0.315515,0.315515,5.857e-3,7.728316e-3
+transformation/mapM/streamly,1,3.5703358e-2,78365963,3.5689e-2,3.5359e-2,0.0,3428352,1,0,0,10,183418952,177,7624,3.4986e-2,3.4986e-2,3.75e-4,4.70825e-4
+transformation/mapM/streamly,2,7.86635e-2,172660004,7.8528e-2,0.0,0.0,3436544,0,0,0,31,367882448,355,13584,7.6935e-2,7.6935e-2,7.31e-4,9.46711e-4
+transformation/mapM/streamly,3,0.120411452,264293422,0.12032,0.0,0.0,3436544,0,0,0,31,551305504,532,19496,0.11793,0.11793,1.091e-3,1.401806e-3
+transformation/mapM/streamly,4,0.147373908,323473792,0.147264,0.0,0.0,3436544,0,0,0,46,735764816,710,25456,0.144399,0.144399,1.344e-3,1.692874e-3
+transformation/mapM/streamly,5,0.180596405,396394524,0.18058,0.0,0.0,3436544,0,0,0,40,919187904,887,31384,0.177104,0.177104,1.581e-3,2.067035e-3
+transformation/mapM/streamly,6,0.234519366,514751086,0.234205,0.0,0.0,3436544,0,0,0,66,1103647248,1065,37344,0.229449,0.229449,2.041e-3,2.621241e-3
+transformation/mapM/streamly,7,0.266275531,584453240,0.265969,0.0,0.0,3436544,0,0,0,77,1287070304,1242,43272,0.260719,0.260719,2.337e-3,3.004579e-3
+transformation/mapM/streamly,8,0.290647163,637947040,0.290434,0.0,0.0,3436544,0,0,0,79,1471529576,1420,49232,0.285081,0.285081,2.376e-3,3.111369e-3
+transformation/mapM/streamly,9,0.36564249,802555708,0.364235,0.0,0.0,3436544,0,0,0,260,1655988992,1598,55192,0.355708,0.355708,3.402e-3,4.340046e-3
+transformation/mapM/streamly,10,0.383942228,842722165,0.382805,0.0,0.0,3436544,0,0,0,233,1839412048,1775,61120,0.374244,0.374244,3.443e-3,4.404724e-3
+transformation/mapM/streamly,11,0.423562946,929686485,0.423464,0.0,0.0,3436544,0,0,0,89,2023871392,1953,67080,0.416141,0.416141,3.361e-3,4.400399e-3
+transformation/mapM/streamly,12,0.464788836,1020173874,0.463948,0.0,0.0,3436544,0,0,0,133,2207294432,2130,73008,0.455255,0.455255,3.899e-3,5.050726e-3
+transformation/mapM/streamly,13,0.475697836,1044118321,0.475692,0.0,0.0,3497984,9,0,0,83,2391753792,2308,78968,0.467523,0.467523,3.821e-3,5.025741e-3
+transformation/mapM/streamly,14,0.524044161,1150234544,0.523805,0.0,0.0,3497984,0,0,0,109,2575176848,2485,84896,0.514631,0.514631,4.178e-3,5.476034e-3
+transformation/mapM/streamly,15,0.564264445,1238514919,0.563299,0.0,0.0,3497984,0,0,0,157,2759636192,2663,90856,0.553103,0.553103,4.598e-3,6.377656e-3
+transformation/mapM/streamly,16,0.589380409,1293642320,0.589082,0.0,0.0,3497984,0,0,0,124,2943059248,2840,96784,0.578623,0.578623,4.862e-3,6.339488e-3
+transformation/mapM/streaming,1,3.9478444e-2,86652011,3.9476e-2,3.8915e-2,0.0,3448832,1,0,0,9,311496768,300,33048,3.8336e-2,3.8336e-2,5.83e-4,7.51808e-4
+transformation/mapM/streaming,2,7.9446612e-2,174378864,7.9434e-2,0.0,0.0,3461120,0,0,0,16,623001728,600,69168,7.7098e-2,7.7098e-2,1.198e-3,1.49497e-3
+transformation/mapM/streaming,3,0.115973266,254551938,0.115892,0.0,0.0,3461120,0,0,0,29,935540944,901,102984,0.112371,0.112371,1.713e-3,2.194602e-3
+transformation/mapM/streaming,4,0.150810453,331016772,0.150734,0.0,0.0,3461120,2,0,0,40,1247041792,1201,136704,0.146365,0.146365,2.178e-3,2.809502e-3
+transformation/mapM/streaming,5,0.193210141,424080628,0.193045,0.0,0.0,3461120,0,0,0,38,1559581040,1502,170536,0.187522,0.187522,2.727e-3,3.572204e-3
+transformation/mapM/streaming,6,0.23077536,506533240,0.230817,0.0,0.0,3461120,0,0,0,47,1871081920,1802,204256,0.224307,0.224307,3.269e-3,4.243478e-3
+transformation/mapM/streaming,7,0.269163739,590792652,0.268791,0.0,0.0,3461120,0,0,0,83,2183621136,2103,238088,0.260452,0.260452,3.81e-3,4.897501e-3
+transformation/mapM/streaming,8,0.301131758,660959856,0.301148,0.0,0.0,3461120,0,0,0,59,2495121936,2403,271808,0.292761,0.292761,4.122e-3,5.365455e-3
+transformation/mapM/streaming,9,0.342068716,750813158,0.341771,0.0,0.0,3461120,0,0,0,120,2807661232,2704,305640,0.332035,0.332035,4.826e-3,6.229312e-3
+transformation/mapM/streaming,10,0.378675871,831162944,0.378544,0.0,0.0,3461120,0,0,0,91,3119162112,3004,339360,0.367551,0.367551,5.257e-3,6.75981e-3
+transformation/mapM/streaming,11,0.417031355,915350107,0.416701,0.0,0.0,3461120,0,0,0,88,3431701328,3305,373192,0.404862,0.404862,5.769e-3,7.453963e-3
+transformation/mapM/streaming,12,0.460498206,1010756336,0.460224,0.0,0.0,3461120,0,0,0,104,3743202184,3605,406912,0.44727,0.44727,6.383e-3,8.309068e-3
+transformation/mapM/streaming,13,0.490133995,1075804512,0.489914,0.0,0.0,3461120,0,0,0,98,4055741424,3906,440744,0.476252,0.476252,6.698e-3,8.758498e-3
+transformation/mapM/streaming,14,0.532110203,1167938920,0.531585,0.0,0.0,3461120,0,0,0,143,4367242304,4206,474464,0.516491,0.516491,7.413e-3,9.627855e-3
+transformation/mapM/streaming,15,0.583393377,1280501278,0.582332,0.0,0.0,3461120,0,0,0,270,4679781520,4507,508296,0.564111,0.564111,8.488e-3,1.1051224e-2
+transformation/mapM/streaming,16,0.586866597,1288124726,0.586441,0.0,0.0,3461120,0,0,0,139,4991282400,4807,542016,0.569507,0.569507,8.117e-3,1.054985e-2
+transformation/concat/vector,1,3.2032539e-2,70308840,3.1991e-2,3.1501e-2,0.0,3424256,1,0,0,10,263978960,252,26008,3.0961e-2,3.0961e-2,5.42e-4,7.34382e-4
+transformation/concat/vector,2,6.3031885e-2,138349894,6.302e-2,0.0,0.0,3436544,0,0,0,19,527966000,504,50288,6.0958e-2,6.0958e-2,1.016e-3,1.294724e-3
+transformation/concat/vector,3,0.101155844,222028904,0.101091,0.0,0.0,3436544,0,0,0,29,791949000,756,74552,9.7745e-2,9.7745e-2,1.613e-3,2.08389e-3
+transformation/concat/vector,4,0.122356011,268561550,0.122212,0.0,0.0,3436544,0,0,0,47,1055931920,1008,139152,0.117968,0.117968,1.992e-3,2.538314e-3
+transformation/concat/vector,5,0.144739793,317692152,0.144712,0.0,0.0,3436544,0,0,0,31,1319915000,1260,123112,0.140275,0.140275,2.133e-3,2.805299e-3
+transformation/concat/vector,6,0.179088179,393084076,0.178674,0.0,0.0,3436544,0,0,0,51,1583898000,1512,147392,0.173037,0.173037,2.632e-3,3.462333e-3
+transformation/concat/vector,7,0.203898282,447540246,0.203891,0.0,0.0,3436544,0,0,0,38,1847881000,1764,171672,0.197933,0.197933,2.928e-3,3.879622e-3
+transformation/concat/vector,8,0.235988633,517976046,0.235725,0.0,0.0,3436544,0,0,0,49,2111863880,2016,276592,0.228653,0.228653,3.482e-3,4.583448e-3
+transformation/concat/vector,9,0.263581671,578540396,0.263429,0.0,0.0,3436544,0,0,0,76,2375847000,2268,220232,0.255183,0.255183,3.926e-3,5.187396e-3
+transformation/concat/vector,10,0.291780857,640435408,0.291708,0.0,0.0,3436544,0,0,0,64,2639830000,2520,244512,0.28292,0.28292,4.229e-3,5.598921e-3
+transformation/concat/vector,11,0.322723681,708352376,0.322389,0.0,0.0,3436544,0,0,0,76,2903813000,2772,268792,0.312415,0.312415,4.772e-3,6.248221e-3
+transformation/concat/vector,12,0.336023784,737545046,0.335971,0.0,0.0,3436544,0,0,0,63,3167795936,3024,414032,0.325935,0.325935,4.971e-3,6.527339e-3
+transformation/concat/vector,13,0.37617931,825683190,0.375811,0.0,0.0,3436544,0,0,0,100,3431779000,3276,317352,0.364112,0.364112,5.487e-3,7.293551e-3
+transformation/concat/vector,14,0.40546663,889966476,0.40548,0.0,0.0,3436544,0,0,0,69,3695762000,3528,341632,0.393508,0.393508,5.732e-3,7.655506e-3
+transformation/concat/vector,15,0.439014605,963601578,0.43879,0.0,0.0,3436544,0,0,0,93,3959745000,3780,365912,0.425789,0.425789,6.125e-3,8.153966e-3
+transformation/concat/vector,16,0.47343545,1039152544,0.472716,0.0,0.0,3436544,0,0,0,113,4223728000,4032,390192,0.458084,0.458084,6.904e-3,9.070839e-3
+transformation/concat/vector,17,0.532699651,1169232664,0.53124,0.0,0.0,3436544,0,0,0,230,4487710960,4284,585832,0.513904,0.513904,7.967e-3,1.0487176e-2
+transformation/concat/vector,18,0.539247896,1183605542,0.537343,0.0,0.0,3436544,0,0,0,298,4751694000,4536,438752,0.519537,0.519537,8.226e-3,1.0888762e-2
+transformation/concat/streamly,1,5.327e-6,11698,9.0e-6,1.4e-5,0.0,2519040,1,0,0,0,0,0,0,1.6e-5,1.6e-5,0.0,0.0
+transformation/concat/streamly,2,3.11e-6,6834,5.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streamly,3,2.992e-6,6560,4.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,3.0e-6,3.0e-6,0.0,0.0
+transformation/concat/streamly,4,3.408e-6,7480,5.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streamly,5,3.486e-6,7652,3.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streamly,6,3.811e-6,8364,4.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streamly,7,3.918e-6,8586,4.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streamly,8,4.245e-6,9318,4.0e-6,0.0,0.0,2527232,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streamly,9,4.577e-6,10046,6.0e-6,0.0,0.0,2531328,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streamly,10,4.755e-6,10436,6.0e-6,0.0,0.0,2572288,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streamly,11,5.066e-6,11106,5.0e-6,0.0,0.0,2588672,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streamly,12,4.826e-6,10586,6.0e-6,0.0,0.0,2588672,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streamly,13,5.168e-6,11336,5.0e-6,0.0,0.0,2588672,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streamly,14,5.249e-6,11516,6.0e-6,0.0,0.0,2588672,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streamly,15,5.467e-6,12006,6.0e-6,0.0,0.0,2588672,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streamly,16,3.116e-5,68432,2.3e-5,0.0,0.0,2592768,0,0,0,2,0,0,0,2.3e-5,2.3e-5,0.0,0.0
+transformation/concat/streamly,17,8.717e-6,19126,1.2e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,1.0e-5,1.0e-5,0.0,0.0
+transformation/concat/streamly,18,6.918e-6,15184,8.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streamly,19,8.512e-6,18670,1.2e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,9.0e-6,9.0e-6,0.0,0.0
+transformation/concat/streamly,20,7.319e-6,16064,8.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streamly,21,7.577e-6,16632,8.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streamly,22,7.389e-6,16204,7.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streamly,23,7.738e-6,16982,9.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,9.0e-6,9.0e-6,0.0,0.0
+transformation/concat/streamly,25,7.702e-6,16898,8.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streamly,26,1.0765e-5,23616,1.4e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,1.2e-5,1.2e-5,0.0,0.0
+transformation/concat/streamly,27,8.393e-6,18416,9.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streamly,28,8.453e-6,18548,9.0e-6,0.0,0.0,2592768,0,0,0,0,0,0,0,9.0e-6,9.0e-6,0.0,0.0
+transformation/concat/streamly,30,1.209e-5,26528,1.5e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streamly,31,1.0445e-5,22932,1.3e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,1.1e-5,1.1e-5,0.0,0.0
+transformation/concat/streamly,33,2.0709e-5,45420,2.2e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,2.1e-5,2.1e-5,0.0,0.0
+transformation/concat/streamly,35,1.1763e-5,25826,1.4e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streamly,36,1.0503e-5,23054,1.1e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.1e-5,1.1e-5,0.0,0.0
+transformation/concat/streamly,38,1.0874e-5,23868,1.1e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.1e-5,1.1e-5,0.0,0.0
+transformation/concat/streamly,40,1.1316e-5,24838,1.2e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.2e-5,1.2e-5,0.0,0.0
+transformation/concat/streamly,42,1.1697e-5,25674,1.2e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.2e-5,1.2e-5,0.0,0.0
+transformation/concat/streamly,44,1.1978e-5,26290,1.2e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streamly,47,1.2611e-5,27682,1.4e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streamly,49,1.3353e-5,29316,1.4e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.4e-5,1.4e-5,0.0,0.0
+transformation/concat/streamly,52,1.3901e-5,30506,1.5e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.4e-5,1.4e-5,0.0,0.0
+transformation/concat/streamly,54,1.4278e-5,31334,1.4e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.5e-5,1.5e-5,0.0,0.0
+transformation/concat/streamly,57,1.4864e-5,32626,1.5e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.5e-5,1.5e-5,0.0,0.0
+transformation/concat/streamly,60,1.5601e-5,34248,1.5e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.6e-5,1.6e-5,0.0,0.0
+transformation/concat/streamly,63,1.6268e-5,35706,1.7e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.7e-5,1.7e-5,0.0,0.0
+transformation/concat/streamly,66,1.6782e-5,36836,1.7e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.7e-5,1.7e-5,0.0,0.0
+transformation/concat/streamly,69,4.5913e-5,100758,3.8e-5,0.0,0.0,2600960,0,0,0,2,0,0,0,3.1e-5,3.1e-5,0.0,0.0
+transformation/concat/streamly,73,1.8696e-5,41042,1.9e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,1.9e-5,1.9e-5,0.0,0.0
+transformation/concat/streamly,76,1.9304e-5,42372,2.0e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.0e-5,2.0e-5,0.0,0.0
+transformation/concat/streamly,80,1.9805e-5,43470,2.0e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.0e-5,2.0e-5,0.0,0.0
+transformation/concat/streamly,84,2.0642e-5,45314,2.1e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.0e-5,2.0e-5,0.0,0.0
+transformation/concat/streamly,89,2.164e-5,47498,2.2e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.2e-5,2.2e-5,0.0,0.0
+transformation/concat/streamly,93,2.2799e-5,50042,2.4e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.3e-5,2.3e-5,0.0,0.0
+transformation/concat/streamly,98,2.3419e-5,51408,2.3e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.4e-5,2.4e-5,0.0,0.0
+transformation/concat/streamly,103,2.4455e-5,53676,2.4e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.5e-5,2.5e-5,0.0,0.0
+transformation/concat/streamly,108,2.6068e-5,57210,2.7e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.6e-5,2.6e-5,0.0,0.0
+transformation/concat/streamly,113,2.6584e-5,58350,2.6e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.7e-5,2.7e-5,0.0,0.0
+transformation/concat/streamly,119,2.8098e-5,61680,2.9e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.8e-5,2.8e-5,0.0,0.0
+transformation/concat/streamly,125,2.9235e-5,64162,3.0e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,2.9e-5,2.9e-5,0.0,0.0
+transformation/concat/streamly,131,3.0717e-5,67414,3.2e-5,0.0,0.0,2600960,0,0,0,0,0,0,0,3.1e-5,3.1e-5,0.0,0.0
+transformation/concat/streamly,138,3.2515e-5,71370,3.2e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,3.3e-5,3.3e-5,0.0,0.0
+transformation/concat/streamly,144,3.5732e-5,78430,3.7e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,3.6e-5,3.6e-5,0.0,0.0
+transformation/concat/streamly,152,3.7882e-5,83136,4.0e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,3.9e-5,3.9e-5,0.0,0.0
+transformation/concat/streamly,159,7.0419e-5,154546,8.0e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,7.0e-5,7.0e-5,0.0,0.0
+transformation/concat/streamly,167,3.9784e-5,87322,4.1e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,4.0e-5,4.0e-5,0.0,0.0
+transformation/concat/streamly,176,6.0221e-5,132180,6.1e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,6.0e-5,6.0e-5,0.0,0.0
+transformation/concat/streamly,185,6.176e-5,135560,6.2e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,6.2e-5,6.2e-5,0.0,0.0
+transformation/concat/streamly,194,6.5205e-5,143120,6.6e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,6.6e-5,6.6e-5,0.0,0.0
+transformation/concat/streamly,204,6.6579e-5,146136,6.9e-5,0.0,0.0,2613248,2,0,0,0,0,0,0,6.1e-5,6.1e-5,0.0,0.0
+transformation/concat/streamly,214,6.5615e-5,144012,6.7e-5,0.0,0.0,2617344,1,0,0,0,0,0,0,6.2e-5,6.2e-5,0.0,0.0
+transformation/concat/streamly,224,6.5301e-5,143330,6.7e-5,0.0,0.0,2629632,2,0,0,0,0,0,0,6.2e-5,6.2e-5,0.0,0.0
+transformation/concat/streamly,236,6.5115e-5,142921,6.5e-5,0.0,0.0,2633728,1,0,0,0,0,0,0,6.4e-5,6.4e-5,0.0,0.0
+transformation/concat/streamly,247,6.9489e-5,152523,7.1e-5,0.0,0.0,2641920,2,0,0,0,0,0,0,6.7e-5,6.7e-5,0.0,0.0
+transformation/concat/streamly,260,7.2579e-5,159305,7.4e-5,0.0,0.0,2650112,2,0,0,0,0,0,0,7.0e-5,7.0e-5,0.0,0.0
+transformation/concat/streamly,273,7.6809e-5,168589,7.7e-5,0.0,0.0,2666496,3,0,0,0,0,0,0,7.3e-5,7.3e-5,0.0,0.0
+transformation/concat/streamly,287,7.3871e-5,162140,7.4e-5,0.0,0.0,2682880,1,0,0,0,0,0,0,7.5e-5,7.5e-5,0.0,0.0
+transformation/concat/streamly,301,8.6163e-5,189116,8.6e-5,0.0,0.0,2691072,2,0,0,0,0,0,0,8.2e-5,8.2e-5,0.0,0.0
+transformation/concat/streamly,316,7.9147e-5,173746,8.0e-5,0.0,0.0,2699264,2,0,0,0,0,0,0,7.5e-5,7.5e-5,0.0,0.0
+transformation/concat/streamly,332,1.22764e-4,269458,1.23e-4,0.0,0.0,2715648,3,0,0,0,0,0,0,7.9e-5,7.9e-5,0.0,0.0
+transformation/concat/streamly,348,8.5573e-5,187850,8.6e-5,0.0,0.0,2723840,2,0,0,0,0,0,0,8.3e-5,8.3e-5,0.0,0.0
+transformation/concat/streamly,366,9.0228e-5,198044,9.1e-5,0.0,0.0,2736128,3,0,0,0,0,0,0,8.7e-5,8.7e-5,0.0,0.0
+transformation/concat/streamly,384,9.4379e-5,207154,9.4e-5,0.0,0.0,2748416,3,0,0,0,0,0,0,9.0e-5,9.0e-5,0.0,0.0
+transformation/concat/streamly,403,9.5629e-5,209900,9.5e-5,0.0,0.0,2760704,3,0,0,0,0,0,0,9.1e-5,9.1e-5,0.0,0.0
+transformation/concat/streamly,424,1.08709e-4,238594,1.09e-4,0.0,0.0,2777088,4,0,0,0,0,0,0,1.04e-4,1.04e-4,0.0,0.0
+transformation/concat/streamly,445,1.09577e-4,240514,1.1e-4,0.0,0.0,2789376,2,0,0,0,0,0,0,1.07e-4,1.07e-4,0.0,0.0
+transformation/concat/streamly,467,1.17409e-4,257704,1.19e-4,0.0,0.0,2805760,4,0,0,0,0,0,0,1.13e-4,1.13e-4,0.0,0.0
+transformation/concat/streamly,490,1.21971e-4,267702,1.22e-4,0.0,0.0,2818048,3,0,0,0,0,0,0,1.17e-4,1.17e-4,0.0,0.0
+transformation/concat/streamly,515,1.29748e-4,284800,1.31e-4,0.0,0.0,2842624,5,0,0,0,0,0,0,1.25e-4,1.25e-4,0.0,0.0
+transformation/concat/streamly,541,1.34091e-4,294318,1.34e-4,0.0,0.0,2854912,3,0,0,0,0,0,0,1.3e-4,1.3e-4,0.0,0.0
+transformation/concat/streamly,568,1.3347e-4,292956,1.33e-4,0.0,0.0,2879488,4,0,0,0,0,0,0,1.29e-4,1.29e-4,0.0,0.0
+transformation/concat/streamly,596,1.40263e-4,307866,1.41e-4,0.0,0.0,2899968,4,0,0,0,0,0,0,1.36e-4,1.36e-4,0.0,0.0
+transformation/concat/streamly,626,1.50309e-4,329916,1.51e-4,0.0,0.0,2924544,6,0,0,0,0,0,0,1.42e-4,1.42e-4,0.0,0.0
+transformation/concat/streamly,657,1.52826e-4,335442,1.52e-4,0.0,0.0,2940928,4,0,0,0,0,0,0,1.47e-4,1.47e-4,0.0,0.0
+transformation/concat/streamly,690,1.61831e-4,355200,1.63e-4,0.0,0.0,2965504,5,0,0,0,0,0,0,1.55e-4,1.55e-4,0.0,0.0
+transformation/concat/streamly,725,2.44845e-4,537418,2.31e-4,0.0,0.0,2985984,5,0,0,2,0,0,0,1.98e-4,1.98e-4,0.0,0.0
+transformation/concat/streamly,761,2.06076e-4,452320,2.06e-4,0.0,0.0,3014656,6,0,0,0,0,0,0,1.99e-4,1.99e-4,0.0,0.0
+transformation/concat/streamly,799,1.8995e-4,416930,1.91e-4,0.0,0.0,3051520,7,0,0,0,0,0,0,1.81e-4,1.81e-4,0.0,0.0
+transformation/concat/streamly,839,1.93869e-4,425526,1.93e-4,0.0,0.0,3076096,6,0,0,0,0,0,0,1.87e-4,1.87e-4,0.0,0.0
+transformation/concat/streamly,881,2.05185e-4,450366,2.06e-4,0.0,0.0,3104768,7,0,0,0,0,0,0,1.97e-4,1.97e-4,0.0,0.0
+transformation/concat/streamly,925,2.60903e-4,572646,2.61e-4,0.0,0.0,3133440,7,0,0,0,0,0,0,2.5e-4,2.5e-4,0.0,0.0
+transformation/concat/streamly,972,2.29106e-4,502864,2.3e-4,0.0,0.0,3170304,9,0,0,0,0,0,0,2.19e-4,2.19e-4,0.0,0.0
+transformation/concat/streamly,1020,2.38878e-4,524322,2.39e-4,0.0,0.0,3203072,7,0,0,0,0,0,0,2.31e-4,2.31e-4,0.0,0.0
+transformation/concat/streamly,1071,3.80814e-4,835902,3.74e-4,0.0,0.0,3239936,8,0,0,1,0,0,0,3.58e-4,3.58e-4,0.0,0.0
+transformation/concat/streamly,1125,3.78989e-4,831830,3.78e-4,0.0,0.0,3276800,8,0,0,0,0,0,0,3.67e-4,3.67e-4,0.0,0.0
+transformation/concat/streamly,1181,4.00348e-4,878740,4.01e-4,0.0,0.0,3317760,9,0,0,0,0,0,0,3.87e-4,3.87e-4,0.0,0.0
+transformation/concat/streamly,1240,3.65469e-4,802181,3.66e-4,0.0,0.0,3354624,8,0,0,0,0,0,0,3.54e-4,3.54e-4,0.0,0.0
+transformation/concat/streamly,1302,3.82728e-4,840063,3.83e-4,0.0,0.0,3399680,10,0,0,0,0,0,0,3.7e-4,3.7e-4,0.0,0.0
+transformation/concat/streamly,1367,4.03623e-4,885923,4.04e-4,0.0,0.0,3440640,10,0,0,0,0,0,0,3.9e-4,3.9e-4,0.0,0.0
+transformation/concat/streamly,1436,4.25002e-4,932861,4.25e-4,0.0,0.0,3489792,11,0,0,0,0,0,0,4.1e-4,4.1e-4,0.0,0.0
+transformation/concat/streamly,1507,5.87522e-4,1289571,5.6e-4,0.0,0.0,3543040,13,0,0,5,0,0,0,5.17e-4,5.17e-4,0.0,0.0
+transformation/concat/streamly,1583,4.41646e-4,969372,4.33e-4,0.0,0.0,3555328,3,0,0,1,1032600,1,1048,3.21e-4,3.21e-4,1.0e-4,1.01208e-4
+transformation/concat/streamly,1662,3.83683e-4,842152,3.85e-4,0.0,0.0,3555328,0,0,0,0,1032728,1,1080,2.95e-4,2.95e-4,8.7e-5,8.7874e-5
+transformation/concat/streamly,1745,3.98556e-4,874798,3.98e-4,0.0,0.0,3555328,0,0,0,0,1032536,1,1016,3.11e-4,3.11e-4,8.6e-5,8.6132e-5
+transformation/concat/streamly,1832,4.07475e-4,894374,4.08e-4,0.0,0.0,3555328,0,0,0,0,1032688,1,1080,3.17e-4,3.17e-4,8.7e-5,8.9531e-5
+transformation/concat/streamly,1924,4.11743e-4,903742,4.12e-4,0.0,0.0,3555328,0,0,0,0,1032584,1,1048,3.3e-4,3.3e-4,8.0e-5,8.0645e-5
+transformation/concat/streamly,2020,4.32933e-4,950278,4.33e-4,0.0,0.0,3555328,0,0,0,0,1032760,1,1080,3.5e-4,3.5e-4,8.1e-5,8.0623e-5
+transformation/concat/streamly,2121,6.57824e-4,1443964,6.56e-4,0.0,0.0,3555328,0,0,0,2,1032744,1,1080,5.62e-4,5.62e-4,8.0e-5,8.0751e-5
+transformation/concat/streamly,2227,9.13402e-4,2004892,9.13e-4,0.0,0.0,3555328,0,0,0,0,1032760,1,1080,7.84e-4,7.84e-4,1.26e-4,1.27382e-4
+transformation/concat/streamly,2339,7.48157e-4,1642148,7.48e-4,0.0,0.0,3559424,0,0,0,0,1032600,1,1048,5.92e-4,5.92e-4,1.54e-4,1.58797e-4
+transformation/concat/streamly,2456,8.90087e-4,1953724,8.71e-4,0.0,0.0,3559424,0,0,0,4,1032600,1,1048,7.22e-4,7.22e-4,1.22e-4,1.22488e-4
+transformation/concat/streamly,2579,9.16611e-4,2011845,9.14e-4,0.0,0.0,3559424,0,0,0,1,1032536,1,1016,7.17e-4,7.17e-4,1.85e-4,1.87389e-4
+transformation/concat/streamly,2708,7.77713e-4,1707021,7.78e-4,0.0,0.0,3559424,0,0,0,0,1032600,1,1048,6.59e-4,6.59e-4,1.16e-4,1.16045e-4
+transformation/concat/streamly,2843,8.0966e-4,1777142,8.09e-4,0.0,0.0,3559424,0,0,0,0,1032624,1,1048,6.9e-4,6.9e-4,1.17e-4,1.17704e-4
+transformation/concat/streamly,2985,8.41204e-4,1846369,8.41e-4,0.0,0.0,3563520,0,0,0,0,1032744,1,1080,7.21e-4,7.21e-4,1.1e-4,1.10626e-4
+transformation/concat/streamly,3134,8.21681e-4,1803522,8.22e-4,0.0,0.0,3563520,0,0,0,0,2064936,2,2000,7.13e-4,7.13e-4,1.05e-4,1.06256e-4
+transformation/concat/streamly,3291,9.13625e-4,2005332,9.03e-4,0.0,0.0,3563520,0,0,0,3,2064936,2,2016,7.7e-4,7.7e-4,1.05e-4,1.06908e-4
+transformation/concat/streamly,3456,9.33302e-4,2048526,9.09e-4,0.0,0.0,3563520,0,0,0,4,2064848,2,1984,7.88e-4,7.88e-4,9.3e-5,9.4309e-5
+transformation/concat/streamly,3629,8.48453e-4,1862294,8.49e-4,0.0,0.0,3567616,0,0,0,0,2064952,2,1984,7.37e-4,7.37e-4,1.08e-4,1.14196e-4
+transformation/concat/streamly,3810,8.4159e-4,1847228,8.42e-4,0.0,0.0,3567616,0,0,0,0,2064872,2,2016,7.48e-4,7.48e-4,9.1e-5,9.2347e-5
+transformation/concat/streamly,4001,8.77736e-4,1926592,8.77e-4,0.0,0.0,3567616,0,0,0,0,2064792,2,1952,7.86e-4,7.86e-4,8.9e-5,9.0083e-5
+transformation/concat/streamly,4201,9.89225e-4,2171288,9.89e-4,0.0,0.0,3571712,0,0,0,0,2064952,2,2016,8.86e-4,8.86e-4,9.9e-5,1.06452e-4
+transformation/concat/streamly,4411,1.059366e-3,2325224,1.058e-3,0.0,0.0,3571712,0,0,0,0,2064888,2,2016,9.59e-4,9.59e-4,9.7e-5,9.7356e-5
+transformation/concat/streamly,4631,1.076854e-3,2363600,1.077e-3,0.0,0.0,3571712,0,0,0,0,3097096,3,2168,9.74e-4,9.74e-4,9.8e-5,9.9761e-5
+transformation/concat/streamly,4863,1.190105e-3,2612186,1.189e-3,0.0,0.0,3571712,0,0,0,2,3097032,3,2168,1.076e-3,1.076e-3,9.6e-5,9.7613e-5
+transformation/concat/streamly,5106,1.126181e-3,2471888,1.126e-3,0.0,0.0,3571712,0,0,0,0,3097128,3,2072,1.025e-3,1.025e-3,9.7e-5,9.8059e-5
+transformation/concat/streamly,5361,1.185359e-3,2601764,1.185e-3,0.0,0.0,3571712,0,0,0,0,3097120,3,2136,1.087e-3,1.087e-3,9.3e-5,9.4605e-5
+transformation/concat/streamly,5629,1.240278e-3,2722316,1.24e-3,0.0,0.0,3571712,0,0,0,0,3097080,3,2136,1.144e-3,1.144e-3,9.2e-5,9.3595e-5
+transformation/concat/streamly,5911,1.300195e-3,2853834,1.301e-3,0.0,0.0,3571712,0,0,0,0,3097096,3,2168,1.196e-3,1.196e-3,1.0e-4,1.01625e-4
+transformation/concat/streamly,6207,1.366071e-3,2998420,1.367e-3,0.0,0.0,3571712,0,0,0,0,4129240,4,2320,1.266e-3,1.266e-3,9.4e-5,9.6004e-5
+transformation/concat/streamly,6517,2.044938e-3,4488562,2.044e-3,0.0,0.0,3571712,0,0,0,0,4129200,4,2288,1.848e-3,1.848e-3,1.87e-4,1.96157e-4
+transformation/concat/streamly,6843,1.675779e-3,3678120,1.668e-3,0.0,0.0,3571712,0,0,0,2,4129288,4,2320,1.51e-3,1.51e-3,1.46e-4,2.01795e-4
+transformation/concat/streamly,7185,1.5636e-3,3431982,1.564e-3,0.0,0.0,3571712,0,0,0,0,4129304,4,2320,1.459e-3,1.459e-3,9.9e-5,1.00613e-4
+transformation/concat/streamly,7544,1.772769e-3,3891138,1.765e-3,0.0,0.0,3571712,0,0,0,2,4129240,4,2320,1.655e-3,1.655e-3,9.5e-5,9.6585e-5
+transformation/concat/streamly,7921,1.759673e-3,3862338,1.761e-3,0.0,0.0,3571712,0,0,0,0,5161448,5,2472,1.632e-3,1.632e-3,1.18e-4,1.20795e-4
+transformation/concat/streamly,8318,1.775625e-3,3897378,1.776e-3,0.0,0.0,3571712,0,0,0,0,5161400,5,2472,1.673e-3,1.673e-3,9.5e-5,9.706e-5
+transformation/concat/streamly,8733,1.890007e-3,4148416,1.89e-3,0.0,0.0,3571712,0,0,0,0,5161464,5,2440,1.782e-3,1.782e-3,9.6e-5,9.7724e-5
+transformation/concat/streamly,9170,2.211101e-3,4853190,2.179e-3,0.0,0.0,3571712,0,0,0,7,5161352,5,2472,2.054e-3,2.054e-3,9.3e-5,9.6881e-5
+transformation/concat/streamly,9629,2.074966e-3,4554410,2.075e-3,0.0,0.0,3571712,0,0,0,0,6193624,6,2624,1.968e-3,1.968e-3,9.8e-5,1.02052e-4
+transformation/concat/streamly,10110,2.17851e-3,4781656,2.178e-3,0.0,0.0,3571712,0,0,0,0,6193680,6,2560,2.073e-3,2.073e-3,9.7e-5,9.9864e-5
+transformation/concat/streamly,10616,2.337811e-3,5131332,2.336e-3,0.0,0.0,3571712,0,0,0,0,6193624,6,2624,2.222e-3,2.222e-3,9.6e-5,9.8451e-5
+transformation/concat/streamly,11146,2.410573e-3,5291020,2.411e-3,0.0,0.0,3571712,0,0,0,0,7225704,7,2776,2.29e-3,2.29e-3,1.19e-4,1.23591e-4
+transformation/concat/streamly,11704,2.511158e-3,5511790,2.518e-3,0.0,0.0,3571712,0,0,0,1,7225752,7,2776,2.407e-3,2.407e-3,9.6e-5,1.00099e-4
+transformation/concat/streamly,12289,2.740773e-3,6015776,2.733e-3,0.0,0.0,3571712,0,0,0,0,8257904,8,2928,2.621e-3,2.621e-3,9.9e-5,1.02676e-4
+transformation/concat/streamly,12903,3.597167e-3,7895474,3.563e-3,0.0,0.0,3571712,0,0,0,3,8258024,8,2896,3.341e-3,3.341e-3,1.79e-4,1.80926e-4
+transformation/concat/streamly,13549,3.003062e-3,6591498,3.019e-3,0.0,0.0,3571712,0,0,0,1,8257960,8,2896,2.888e-3,2.888e-3,1.11e-4,1.16239e-4
+transformation/concat/streamly,14226,3.265725e-3,7168002,3.265e-3,0.0,0.0,3571712,0,0,0,0,9290088,9,3048,3.144e-3,3.144e-3,1.05e-4,1.10609e-4
+transformation/concat/streamly,14937,3.229794e-3,7089166,3.23e-3,0.0,0.0,3571712,0,0,0,0,9290136,9,3048,3.092e-3,3.092e-3,1.24e-4,1.27863e-4
+transformation/concat/streamly,15684,5.126654e-3,11252632,5.128e-3,0.0,0.0,3584000,2,0,0,2,10322232,10,3168,4.963e-3,4.963e-3,1.26e-4,1.41292e-4
+transformation/concat/streamly,16469,5.079811e-3,11149766,5.08e-3,0.0,0.0,3584000,0,0,0,0,10322264,10,3200,4.891e-3,4.891e-3,1.65e-4,1.71656e-4
+transformation/concat/streamly,17292,4.351105e-3,9550313,4.357e-3,0.0,0.0,3584000,0,0,0,1,11354520,11,3352,4.188e-3,4.188e-3,1.4e-4,1.46879e-4
+transformation/concat/streamly,18157,4.395315e-3,9647368,4.362e-3,0.0,0.0,3584000,0,0,0,3,11354504,11,3384,4.21e-3,4.21e-3,1.19e-4,1.25503e-4
+transformation/concat/streamly,19065,6.308574e-3,13846819,6.312e-3,0.0,0.0,3584000,0,0,0,2,12386576,12,3536,6.132e-3,6.132e-3,1.38e-4,1.44726e-4
+transformation/concat/streamly,20018,5.322426e-3,11682255,5.317e-3,0.0,0.0,3584000,0,0,0,1,13418712,13,3688,5.134e-3,5.134e-3,1.5e-4,1.5582e-4
+transformation/concat/streamly,21019,5.089459e-3,11170971,5.067e-3,0.0,0.0,3584000,0,0,0,3,13418792,13,3624,4.878e-3,4.878e-3,1.27e-4,1.34462e-4
+transformation/concat/streamly,22070,5.033487e-3,11048089,5.033e-3,0.0,0.0,3584000,0,0,0,0,14450872,14,3776,4.875e-3,4.875e-3,1.32e-4,1.39608e-4
+transformation/concat/streamly,23173,5.614071e-3,12322462,5.616e-3,0.0,0.0,3584000,0,0,0,2,15483056,15,3896,5.449e-3,5.449e-3,1.27e-4,1.33321e-4
+transformation/concat/streamly,24332,6.088423e-3,13363582,6.089e-3,0.0,0.0,3584000,0,0,0,0,15483048,15,3992,5.899e-3,5.899e-3,1.53e-4,1.61884e-4
+transformation/concat/streamly,25549,5.810358e-3,12753316,5.797e-3,0.0,0.0,3584000,0,0,0,4,16515288,16,4080,5.605e-3,5.605e-3,1.35e-4,1.42231e-4
+transformation/concat/streamly,26826,7.313188e-3,16051849,7.304e-3,0.0,0.0,3584000,0,0,0,1,17547448,17,4232,7.06e-3,7.06e-3,2.0e-4,2.10585e-4
+transformation/concat/streamly,28167,6.12926e-3,13453210,6.131e-3,0.0,0.0,3584000,0,0,0,0,18579496,18,4448,5.959e-3,5.959e-3,1.41e-4,1.47899e-4
+transformation/concat/streamly,29576,7.832213e-3,17191092,7.817e-3,0.0,0.0,3588096,0,0,0,3,19611688,19,4600,7.58e-3,7.58e-3,1.59e-4,1.78338e-4
+transformation/concat/streamly,31054,7.067859e-3,15513371,7.052e-3,0.0,0.0,3588096,0,0,0,2,20643944,20,4656,6.74e-3,6.74e-3,2.41e-4,2.49514e-4
+transformation/concat/streamly,32607,8.352398e-3,18332862,8.347e-3,0.0,0.0,3588096,0,0,0,2,21676104,21,4840,8.146e-3,8.146e-3,1.49e-4,1.57931e-4
+transformation/concat/streamly,34238,8.846338e-3,19416999,8.855e-3,0.0,0.0,3588096,0,0,0,1,22708200,22,5056,8.649e-3,8.649e-3,1.54e-4,1.65488e-4
+transformation/concat/streamly,35950,1.0397795e-2,22822360,1.0396e-2,0.0,0.0,3592192,0,0,0,2,23740416,23,5232,1.019e-2,1.019e-2,1.49e-4,1.62421e-4
+transformation/concat/streamly,37747,1.0223729e-2,22440234,1.0185e-2,0.0,0.0,3592192,0,0,0,9,24772600,24,5296,9.869e-3,9.869e-3,2.05e-4,2.17484e-4
+transformation/concat/streamly,39634,9.295691e-3,20403294,9.296e-3,0.0,0.0,3592192,0,0,0,2,25804728,25,5448,9.095e-3,9.095e-3,1.46e-4,1.54883e-4
+transformation/concat/streamly,41616,1.0018744e-2,21990340,1.0005e-2,0.0,0.0,3592192,0,0,0,3,27869192,27,5784,9.772e-3,9.772e-3,1.63e-4,1.75102e-4
+transformation/concat/streamly,43697,9.487046e-3,20823310,9.491e-3,0.0,0.0,3592192,0,0,0,1,28901248,28,5968,9.293e-3,9.293e-3,1.51e-4,1.64274e-4
+transformation/concat/streamly,45882,9.893433e-3,21715296,9.9e-3,0.0,0.0,3592192,0,0,0,1,29933544,29,6120,9.713e-3,9.713e-3,1.36e-4,1.50787e-4
+transformation/concat/streamly,48176,1.1467872e-2,25171107,1.1468e-2,0.0,0.0,3592192,0,0,0,2,31997672,31,6424,1.1234e-2,1.1234e-2,1.7e-4,1.84805e-4
+transformation/concat/streamly,50585,1.1725315e-2,25736103,1.1731e-2,0.0,0.0,3592192,0,0,0,1,33029960,32,6512,1.1475e-2,1.1475e-2,1.95e-4,2.08325e-4
+transformation/concat/streamly,53114,1.1467346e-2,25169916,1.1473e-2,0.0,0.0,3600384,0,0,0,1,35094408,34,6880,1.1276e-2,1.1276e-2,1.42e-4,1.63e-4
+transformation/concat/streamly,55770,1.2907134e-2,28330128,1.2915e-2,0.0,0.0,3600384,0,0,0,4,37158392,36,7152,1.2588e-2,1.2588e-2,1.8e-4,1.9638e-4
+transformation/concat/streamly,58558,1.3866445e-2,30435708,1.3846e-2,0.0,0.0,3600384,0,0,0,9,39222920,38,7488,1.348e-2,1.348e-2,2.23e-4,2.43407e-4
+transformation/concat/streamly,61486,1.3900802e-2,30511142,1.3895e-2,0.0,0.0,3600384,0,0,0,3,41287384,40,7728,1.3561e-2,1.3561e-2,2.53e-4,2.70785e-4
+transformation/concat/streamly,64561,1.4620373e-2,32090526,1.463e-2,0.0,0.0,3600384,0,0,0,1,43351544,42,8096,1.4369e-2,1.4369e-2,1.81e-4,2.02511e-4
+transformation/concat/streamly,67789,1.7115148e-2,37566380,1.7105e-2,0.0,0.0,3600384,0,0,0,5,45416160,44,8272,1.6795e-2,1.6795e-2,1.9e-4,2.24698e-4
+transformation/concat/streamly,71178,1.5297328e-2,33576392,1.5317e-2,0.0,0.0,3600384,0,0,0,4,47480200,46,8576,1.5055e-2,1.5055e-2,1.78e-4,1.95244e-4
+transformation/concat/streamly,74737,1.5808752e-2,34698934,1.5813e-2,0.0,0.0,3600384,0,0,0,1,49544680,48,8944,1.5579e-2,1.5579e-2,1.61e-4,1.85902e-4
+transformation/concat/streamly,78474,1.9164304e-2,42064114,1.9162e-2,0.0,0.0,3600384,0,0,0,5,52641160,51,9304,1.8828e-2,1.8828e-2,2.0e-4,2.29277e-4
+transformation/concat/streamly,82398,2.1979123e-2,48242423,2.195e-2,0.0,0.0,3600384,0,0,0,8,54705344,53,9768,2.1548e-2,2.1548e-2,2.32e-4,2.56525e-4
+transformation/concat/streamly,86518,1.9967504e-2,43827047,1.9963e-2,0.0,0.0,3600384,0,0,0,5,57801816,56,10192,1.9591e-2,1.9591e-2,2.46e-4,2.682e-4
+transformation/concat/streamly,90843,2.0095903e-2,44108886,2.0083e-2,0.0,0.0,3600384,0,0,0,4,60898680,59,10584,1.9774e-2,1.9774e-2,2.06e-4,2.42122e-4
+transformation/concat/streamly,95386,2.2677148e-2,49774537,2.2689e-2,0.0,0.0,3600384,0,0,0,4,63994968,62,11104,2.2289e-2,2.2289e-2,2.54e-4,2.82358e-4
+transformation/concat/streamly,100155,2.3285034e-2,51108748,2.3259e-2,0.0,0.0,3600384,0,0,0,11,67091560,65,11592,2.281e-2,2.281e-2,2.65e-4,3.11908e-4
+transformation/concat/streamly,105163,2.5272736e-2,55471648,2.528e-2,0.0,0.0,3600384,0,0,0,3,70187896,68,11856,2.4862e-2,2.4862e-2,2.86e-4,3.17316e-4
+transformation/concat/streamly,110421,2.7520414e-2,60405064,2.7454e-2,0.0,0.0,3600384,0,0,0,19,73284664,71,12504,2.6886e-2,2.6886e-2,3.07e-4,3.41321e-4
+transformation/concat/streamly,115942,2.5385201e-2,55718466,2.5359e-2,0.0,0.0,3600384,0,0,0,3,77412936,75,13112,2.4888e-2,2.4888e-2,2.65e-4,3.13509e-4
+transformation/concat/streamly,121739,2.9027878e-2,63713927,2.899e-2,0.0,0.0,3600384,0,0,0,7,81541576,79,13560,2.8425e-2,2.8425e-2,2.46e-4,2.90527e-4
+transformation/concat/streamly,127826,3.3814592e-2,74220286,3.3793e-2,0.0,0.0,3600384,0,0,0,21,85670352,83,14328,3.316e-2,3.316e-2,3.77e-4,4.25582e-4
+transformation/concat/streamly,134217,3.0335071e-2,66583036,3.0344e-2,0.0,0.0,3600384,0,0,0,4,89799096,87,14872,2.9919e-2,2.9919e-2,2.7e-4,3.07806e-4
+transformation/concat/streamly,140928,3.275693e-2,71898814,3.2769e-2,0.0,0.0,3600384,0,0,0,4,93928104,91,15448,3.2329e-2,3.2329e-2,2.69e-4,3.05433e-4
+transformation/concat/streamly,147975,3.7944158e-2,83284368,3.7913e-2,0.0,0.0,3608576,1,0,0,5,99088632,96,16176,3.7397e-2,3.7397e-2,2.91e-4,3.52281e-4
+transformation/concat/streamly,155373,3.3150306e-2,72762242,3.3165e-2,0.0,0.0,3608576,0,0,0,3,104249216,101,17032,3.2743e-2,3.2743e-2,2.61e-4,3.0889e-4
+transformation/concat/streamly,163142,3.6454715e-2,80015160,3.6375e-2,0.0,0.0,3608576,0,0,0,6,109410072,106,17824,3.5927e-2,3.5927e-2,2.66e-4,3.19955e-4
+transformation/concat/streamly,171299,3.7168879e-2,81582692,3.712e-2,0.0,0.0,3612672,0,0,0,7,114571240,111,18520,3.6613e-2,3.6613e-2,2.85e-4,3.49426e-4
+transformation/concat/streamly,179864,4.6605998e-2,102296408,4.6651e-2,0.0,0.0,3612672,0,0,0,6,120764216,117,19272,4.5881e-2,4.5881e-2,3.77e-4,4.41459e-4
+transformation/concat/streamly,188858,4.9213773e-2,108020264,4.8864e-2,0.0,0.0,3612672,0,0,0,52,125924872,122,20224,4.7859e-2,4.7859e-2,4.41e-4,5.10526e-4
+transformation/concat/streamly,198300,4.9942036e-2,109618740,4.9924e-2,0.0,0.0,3612672,0,0,0,9,133150408,129,21312,4.9239e-2,4.9239e-2,3.95e-4,4.64943e-4
+transformation/concat/streamly,208215,5.1588887e-2,113233458,5.1544e-2,0.0,0.0,3612672,0,0,0,16,139343464,135,22232,5.0767e-2,5.0767e-2,3.84e-4,4.53869e-4
+transformation/concat/streamly,218626,5.7090272e-2,125308540,5.6145e-2,0.0,0.0,3612672,0,0,0,78,146568568,142,23264,5.4876e-2,5.4876e-2,5.2e-4,6.01421e-4
+transformation/concat/streamly,229558,6.5086859e-2,142860396,6.3995e-2,0.0,0.0,3612672,0,0,0,118,153793528,149,24360,6.1208e-2,6.1208e-2,8.58e-4,9.63949e-4
+transformation/concat/streamly,241036,6.1483605e-2,134951553,6.1203e-2,0.0,0.0,3612672,0,0,0,55,161018832,156,25392,5.9581e-2,5.9581e-2,8.3e-4,9.55749e-4
+transformation/concat/streamly,253087,6.5073178e-2,142830338,6.494e-2,0.0,0.0,3612672,0,0,0,40,169275864,164,26640,6.3246e-2,6.3246e-2,7.79e-4,8.69918e-4
+transformation/concat/streamly,265742,6.6792857e-2,146604920,6.6247e-2,0.0,0.0,3612672,0,0,0,40,178565960,173,28008,6.4869e-2,6.4869e-2,5.99e-4,6.85076e-4
+transformation/concat/streamly,279029,7.4898461e-2,164396096,7.4567e-2,0.0,0.0,3612672,0,0,0,70,186823000,181,29224,7.29e-2,7.29e-2,7.16e-4,8.14547e-4
+transformation/concat/streamly,292980,7.1298285e-2,156494124,7.0479e-2,0.0,0.0,3612672,0,0,0,66,196112384,190,30592,6.8923e-2,6.8923e-2,6.51e-4,7.44496e-4
+transformation/concat/streamly,307629,7.7356603e-2,169791498,7.7263e-2,0.0,0.0,3612672,0,0,0,26,206433928,200,32112,7.5772e-2,7.5772e-2,6.3e-4,7.37568e-4
+transformation/concat/streamly,323011,9.1550664e-2,200946320,8.9471e-2,0.0,0.0,3612672,0,0,0,173,216755944,210,33568,8.7105e-2,8.7105e-2,8.77e-4,1.03937e-3
+transformation/concat/streamly,339161,8.1719333e-2,179367326,8.082e-2,0.0,0.0,3612672,0,0,0,169,227077560,220,35008,7.8737e-2,7.8737e-2,7.99e-4,9.68029e-4
+transformation/concat/streamly,356119,8.3630282e-2,183561720,8.3303e-2,0.0,0.0,3612672,0,0,0,85,238430856,231,36824,8.1775e-2,8.1775e-2,6.87e-4,8.55075e-4
+transformation/concat/streamly,373925,9.1661073e-2,201188642,9.0565e-2,0.0,0.0,3612672,0,0,0,121,250817000,243,38552,8.8684e-2,8.8684e-2,7.77e-4,9.35153e-4
+transformation/concat/streamly,392622,9.8484492e-2,216165540,9.842e-2,0.0,0.0,3612672,0,0,0,34,263203576,255,40472,9.705e-2,9.705e-2,6.53e-4,8.03808e-4
+transformation/concat/streamly,412253,9.1591126e-2,201035098,9.1241e-2,0.0,0.0,3612672,0,0,0,16,276621352,268,42384,9.0098e-2,9.0098e-2,6.55e-4,8.21361e-4
+transformation/concat/streamly,432866,9.8176086e-2,215488602,9.7961e-2,0.0,0.0,3612672,0,0,0,31,290039816,281,44392,9.6469e-2,9.6469e-2,7.95e-4,9.2852e-4
+transformation/concat/streamly,454509,0.10834509,237808722,0.107935,0.0,0.0,3612672,0,0,0,89,304489632,295,46520,0.106039,0.106039,8.78e-4,1.042987e-3
+transformation/concat/streamly,477234,0.108789987,238785214,0.108429,0.0,0.0,3612672,0,0,0,28,319972584,310,48832,0.10706,0.10706,6.73e-4,8.36113e-4
+transformation/concat/streamly,501096,0.119194279,261621858,0.119168,0.0,0.0,3612672,0,0,0,25,336487256,326,51232,0.117613,0.117613,7.83e-4,9.55583e-4
+transformation/concat/streamly,526151,0.120662107,264843540,0.120583,0.0,0.0,3612672,0,0,0,24,353001544,342,53600,0.119043,0.119043,8.13e-4,9.99572e-4
+transformation/concat/streamly,552458,0.12856797,282196306,0.12851,0.0,0.0,3612672,0,0,0,16,370549072,359,56184,0.12702,0.12702,7.78e-4,9.72925e-4
+transformation/concat/streamly,580081,0.126872601,278475106,0.126873,0.0,0.0,3612672,0,0,0,16,389127672,377,59016,0.125469,0.125469,7.37e-4,9.19125e-4
+transformation/concat/streamly,609086,0.147536139,323829955,0.147356,0.0,0.0,3616768,0,0,0,38,408738616,396,61872,0.145358,0.145358,9.17e-4,1.135065e-3
+transformation/concat/streamly,639540,0.147044105,322749910,0.146929,0.0,0.0,3616768,0,0,0,34,429382504,416,64944,0.145091,0.145091,9.17e-4,1.126873e-3
+transformation/concat/streamly,671517,0.155150421,340542686,0.154873,0.0,0.0,3616768,0,0,0,69,451058072,437,68104,0.152588,0.152588,1.041e-3,1.278484e-3
+transformation/concat/streamly,705093,0.173448434,380705286,0.172901,0.0,0.0,3616768,0,0,0,136,473765848,459,71472,0.169144,0.169144,1.326e-3,1.613637e-3
+transformation/concat/streamly,740347,0.174815407,383705678,0.174605,0.0,0.0,3616768,0,0,0,40,497502704,482,75208,0.17239,0.17239,1.015e-3,1.260489e-3
+transformation/concat/streamly,777365,0.175871904,386024614,0.17597,0.0,0.0,3616768,0,0,0,24,522277832,506,78560,0.173966,0.173966,1.086e-3,1.341331e-3
+transformation/concat/streamly,816233,0.185283322,406681968,0.184987,0.0,0.0,3629056,2,0,0,95,548081464,531,82424,0.182488,0.182488,1.163e-3,1.465042e-3
+transformation/concat/streamly,857045,0.214501384,470813200,0.213366,0.0,0.0,3629056,0,0,0,135,574917008,557,86344,0.209399,0.209399,1.565e-3,1.864802e-3
+transformation/concat/streamly,899897,0.207893222,456308804,0.207963,0.0,0.0,3629056,0,0,0,31,603818312,585,90624,0.205511,0.205511,1.209e-3,1.493187e-3
+transformation/concat/streamly,944892,0.217084351,476482614,0.217034,0.0,0.0,3629056,0,0,0,44,634782792,615,95152,0.214366,0.214366,1.251e-3,1.581277e-3
+transformation/concat/streamly,992136,0.22782766,500063308,0.227823,0.0,0.0,3629056,0,0,0,47,665749032,645,99688,0.225136,0.225136,1.342e-3,1.644358e-3
+transformation/concat/streaming,1,5.173e-6,11354,8.0e-6,1.3e-5,0.0,2510848,1,0,0,0,0,0,0,1.5e-5,1.5e-5,0.0,0.0
+transformation/concat/streaming,2,3.301e-6,7246,4.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,3,3.145e-6,6902,3.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,4,3.464e-6,7626,5.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,3.0e-6,3.0e-6,0.0,0.0
+transformation/concat/streaming,5,3.59e-6,7880,4.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,6,3.758e-6,8226,4.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,7,3.825e-6,8394,4.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,8,3.986e-6,8772,5.0e-6,0.0,0.0,2519040,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,9,4.206e-6,9232,5.0e-6,0.0,0.0,2523136,0,0,0,0,0,0,0,4.0e-6,4.0e-6,0.0,0.0
+transformation/concat/streaming,10,4.559e-6,10008,4.0e-6,0.0,0.0,2564096,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streaming,11,4.85e-6,10646,6.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streaming,12,4.773e-6,10476,5.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streaming,13,5.049e-6,11082,6.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,5.0e-6,5.0e-6,0.0,0.0
+transformation/concat/streaming,14,5.288e-6,11608,5.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,15,5.476e-6,12040,5.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,16,5.68e-6,12468,6.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,17,6.055e-6,13290,6.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,18,6.165e-6,13510,7.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,19,6.406e-6,14060,7.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,20,6.56e-6,14400,8.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,6.0e-6,6.0e-6,0.0,0.0
+transformation/concat/streaming,21,6.759e-6,14834,7.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,7.0e-6,7.0e-6,0.0,0.0
+transformation/concat/streaming,22,6.91e-6,15166,7.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,7.0e-6,7.0e-6,0.0,0.0
+transformation/concat/streaming,23,7.167e-6,15732,7.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streaming,25,7.587e-6,16654,9.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streaming,26,7.909e-6,17382,9.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streaming,27,7.94e-6,17428,8.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,9.0e-6,9.0e-6,0.0,0.0
+transformation/concat/streaming,28,8.172e-6,17938,1.0e-5,0.0,0.0,2580480,0,0,0,0,0,0,0,8.0e-6,8.0e-6,0.0,0.0
+transformation/concat/streaming,30,9.114e-6,20004,9.0e-6,0.0,0.0,2580480,0,0,0,0,0,0,0,1.9e-5,1.9e-5,0.0,0.0
+transformation/concat/streaming,31,9.027e-6,19814,1.0e-5,0.0,0.0,2580480,0,0,0,0,0,0,0,9.0e-6,9.0e-6,0.0,0.0
+transformation/concat/streaming,33,9.659e-6,21202,1.0e-5,0.0,0.0,2580480,0,0,0,0,0,0,0,1.0e-5,1.0e-5,0.0,0.0
+transformation/concat/streaming,35,9.875e-6,21698,1.1e-5,0.0,0.0,2584576,0,0,0,0,0,0,0,1.0e-5,1.0e-5,0.0,0.0
+transformation/concat/streaming,36,1.0361e-5,22720,1.0e-5,0.0,0.0,2584576,0,0,0,0,0,0,0,1.0e-5,1.0e-5,0.0,0.0
+transformation/concat/streaming,38,1.0632e-5,23358,1.1e-5,0.0,0.0,2588672,0,0,0,0,0,0,0,1.1e-5,1.1e-5,0.0,0.0
+transformation/concat/streaming,40,1.1194e-5,24570,1.2e-5,0.0,0.0,2588672,0,0,0,0,0,0,0,1.1e-5,1.1e-5,0.0,0.0
+transformation/concat/streaming,42,1.2386e-5,27186,1.3e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streaming,44,1.2195e-5,26766,1.3e-5,0.0,0.0,2592768,0,0,0,0,0,0,0,1.2e-5,1.2e-5,0.0,0.0
+transformation/concat/streaming,47,1.2708e-5,27894,1.3e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streaming,49,1.2905e-5,28324,1.3e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streaming,52,1.3672e-5,30010,1.5e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.3e-5,1.3e-5,0.0,0.0
+transformation/concat/streaming,54,1.4198e-5,31184,1.4e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.4e-5,1.4e-5,0.0,0.0
+transformation/concat/streaming,57,1.4659e-5,32152,1.5e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.5e-5,1.5e-5,0.0,0.0
+transformation/concat/streaming,60,1.8785e-5,41232,2.1e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.9e-5,1.9e-5,0.0,0.0
+transformation/concat/streaming,63,1.6334e-5,35852,1.7e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.7e-5,1.7e-5,0.0,0.0
+transformation/concat/streaming,66,1.6807e-5,36890,1.8e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.7e-5,1.7e-5,0.0,0.0
+transformation/concat/streaming,69,1.7392e-5,38152,1.8e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.8e-5,1.8e-5,0.0,0.0
+transformation/concat/streaming,73,1.8331e-5,40256,2.0e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.8e-5,1.8e-5,0.0,0.0
+transformation/concat/streaming,76,1.8716e-5,41080,1.8e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,1.9e-5,1.9e-5,0.0,0.0
+transformation/concat/streaming,80,1.9764e-5,43380,1.9e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.0e-5,2.0e-5,0.0,0.0
+transformation/concat/streaming,84,2.0448e-5,44882,2.1e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.0e-5,2.0e-5,0.0,0.0
+transformation/concat/streaming,89,2.1529e-5,47256,2.1e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.2e-5,2.2e-5,0.0,0.0
+transformation/concat/streaming,93,2.1985e-5,48256,2.2e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.2e-5,2.2e-5,0.0,0.0
+transformation/concat/streaming,98,2.3268e-5,51094,2.5e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.3e-5,2.3e-5,0.0,0.0
+transformation/concat/streaming,103,2.4337e-5,53418,2.5e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.5e-5,2.5e-5,0.0,0.0
+transformation/concat/streaming,108,2.5441e-5,55840,2.5e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.6e-5,2.6e-5,0.0,0.0
+transformation/concat/streaming,113,2.6473e-5,58084,2.6e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.7e-5,2.7e-5,0.0,0.0
+transformation/concat/streaming,119,2.7789e-5,61018,2.9e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.8e-5,2.8e-5,0.0,0.0
+transformation/concat/streaming,125,2.9058e-5,63758,2.9e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,2.9e-5,2.9e-5,0.0,0.0
+transformation/concat/streaming,131,3.0228e-5,66348,3.1e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,3.1e-5,3.1e-5,0.0,0.0
+transformation/concat/streaming,138,3.168e-5,69534,3.2e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,3.2e-5,3.2e-5,0.0,0.0
+transformation/concat/streaming,144,3.3059e-5,72584,3.3e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,3.3e-5,3.3e-5,0.0,0.0
+transformation/concat/streaming,152,3.4447e-5,75608,3.6e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,3.5e-5,3.5e-5,0.0,0.0
+transformation/concat/streaming,159,3.6787e-5,80722,3.8e-5,0.0,0.0,2596864,0,0,0,0,0,0,0,3.7e-5,3.7e-5,0.0,0.0
+transformation/concat/streaming,167,3.8043e-5,83502,3.9e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,3.8e-5,3.8e-5,0.0,0.0
+transformation/concat/streaming,176,3.9872e-5,87514,4.1e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,4.0e-5,4.0e-5,0.0,0.0
+transformation/concat/streaming,185,4.1538e-5,91174,4.2e-5,0.0,0.0,2605056,0,0,0,0,0,0,0,4.2e-5,4.2e-5,0.0,0.0
+transformation/concat/streaming,194,4.3635e-5,95798,4.3e-5,0.0,0.0,2609152,0,0,0,0,0,0,0,4.4e-5,4.4e-5,0.0,0.0
+transformation/concat/streaming,204,4.8239e-5,105882,4.8e-5,0.0,0.0,2613248,1,0,0,0,0,0,0,4.6e-5,4.6e-5,0.0,0.0
+transformation/concat/streaming,214,5.0403e-5,110634,5.2e-5,0.0,0.0,2617344,1,0,0,0,0,0,0,4.9e-5,4.9e-5,0.0,0.0
+transformation/concat/streaming,224,5.3687e-5,117840,5.3e-5,0.0,0.0,2629632,2,0,0,0,0,0,0,5.1e-5,5.1e-5,0.0,0.0
+transformation/concat/streaming,236,5.4888e-5,120474,5.5e-5,0.0,0.0,2633728,1,0,0,0,0,0,0,5.4e-5,5.4e-5,0.0,0.0
+transformation/concat/streaming,247,5.9101e-5,129722,6.0e-5,0.0,0.0,2641920,2,0,0,0,0,0,0,5.7e-5,5.7e-5,0.0,0.0
+transformation/concat/streaming,260,6.113e-5,134176,6.2e-5,0.0,0.0,2650112,2,0,0,0,0,0,0,5.9e-5,5.9e-5,0.0,0.0
+transformation/concat/streaming,273,6.6078e-5,145034,6.6e-5,0.0,0.0,2662400,3,0,0,0,0,0,0,6.3e-5,6.3e-5,0.0,0.0
+transformation/concat/streaming,287,6.3315e-5,138972,6.4e-5,0.0,0.0,2666496,0,0,0,0,0,0,0,6.4e-5,6.4e-5,0.0,0.0
+transformation/concat/streaming,301,6.9629e-5,152808,7.1e-5,0.0,0.0,2678784,2,0,0,0,0,0,0,6.7e-5,6.7e-5,0.0,0.0
+transformation/concat/streaming,316,7.3264e-5,160810,7.4e-5,0.0,0.0,2686976,2,0,0,0,0,0,0,7.1e-5,7.1e-5,0.0,0.0
+transformation/concat/streaming,332,7.9545e-5,174596,8.0e-5,0.0,0.0,2703360,3,0,0,0,0,0,0,7.4e-5,7.4e-5,0.0,0.0
+transformation/concat/streaming,348,8.0459e-5,176582,8.0e-5,0.0,0.0,2711552,2,0,0,0,0,0,0,7.8e-5,7.8e-5,0.0,0.0
+transformation/concat/streaming,366,8.5156e-5,186910,8.5e-5,0.0,0.0,2723840,3,0,0,0,0,0,0,8.1e-5,8.1e-5,0.0,0.0
+transformation/concat/streaming,384,8.9151e-5,195658,8.9e-5,0.0,0.0,2736128,3,0,0,0,0,0,0,8.5e-5,8.5e-5,0.0,0.0
+transformation/concat/streaming,403,1.71668e-4,376815,1.72e-4,0.0,0.0,2748416,3,0,0,0,0,0,0,1.66e-4,1.66e-4,0.0,0.0
+transformation/concat/streaming,424,1.33954e-4,294020,1.34e-4,0.0,0.0,2764800,4,0,0,0,0,0,0,1.25e-4,1.25e-4,0.0,0.0
+transformation/concat/streaming,445,1.32145e-4,290048,1.33e-4,0.0,0.0,2777088,2,0,0,0,0,0,0,1.29e-4,1.29e-4,0.0,0.0
+transformation/concat/streaming,467,1.07125e-4,235134,1.07e-4,0.0,0.0,2793472,4,0,0,0,0,0,0,1.04e-4,1.04e-4,0.0,0.0
+transformation/concat/streaming,490,1.11649e-4,245062,1.12e-4,0.0,0.0,2805760,3,0,0,0,0,0,0,1.08e-4,1.08e-4,0.0,0.0
+transformation/concat/streaming,515,1.6007e-4,351360,1.48e-4,0.0,0.0,2826240,4,0,0,1,0,0,0,1.38e-4,1.38e-4,0.0,0.0
+transformation/concat/streaming,541,2.38228e-4,522891,2.4e-4,0.0,0.0,2842624,3,0,0,0,0,0,0,2.32e-4,2.32e-4,0.0,0.0
+transformation/concat/streaming,568,2.50449e-4,549716,2.5e-4,0.0,0.0,2859008,4,0,0,0,0,0,0,2.42e-4,2.42e-4,0.0,0.0
+transformation/concat/streaming,596,1.58633e-4,348185,1.59e-4,0.0,0.0,2883584,4,0,0,0,0,0,0,1.52e-4,1.52e-4,0.0,0.0
+transformation/concat/streaming,626,1.70911e-4,375135,1.71e-4,0.0,0.0,2908160,6,0,0,0,0,0,0,1.63e-4,1.63e-4,0.0,0.0
+transformation/concat/streaming,657,1.75135e-4,384406,1.75e-4,0.0,0.0,2924544,4,0,0,0,0,0,0,1.7e-4,1.7e-4,0.0,0.0
+transformation/concat/streaming,690,1.85373e-4,406877,1.86e-4,0.0,0.0,2957312,5,0,0,0,0,0,0,1.79e-4,1.79e-4,0.0,0.0
+transformation/concat/streaming,725,1.95127e-4,428290,1.95e-4,0.0,0.0,2981888,6,0,0,0,0,0,0,1.88e-4,1.88e-4,0.0,0.0
+transformation/concat/streaming,761,2.01086e-4,441367,2.02e-4,0.0,0.0,3002368,5,0,0,0,0,0,0,1.95e-4,1.95e-4,0.0,0.0
+transformation/concat/streaming,799,1.93578e-4,424888,1.93e-4,0.0,0.0,3035136,7,0,0,0,0,0,0,1.85e-4,1.85e-4,0.0,0.0
+transformation/concat/streaming,839,2.27233e-4,498784,2.26e-4,0.0,0.0,3055616,5,0,0,0,0,0,0,2.2e-4,2.2e-4,0.0,0.0
+transformation/concat/streaming,881,2.96111e-4,649940,2.97e-4,0.0,0.0,3084288,6,0,0,0,0,0,0,2.87e-4,2.87e-4,0.0,0.0
+transformation/concat/streaming,925,3.10014e-4,680456,3.09e-4,0.0,0.0,3117056,7,0,0,0,0,0,0,3.0e-4,3.0e-4,0.0,0.0
+transformation/concat/streaming,972,3.31216e-4,726992,3.32e-4,0.0,0.0,3153920,9,0,0,0,0,0,0,3.17e-4,3.17e-4,0.0,0.0
+transformation/concat/streaming,1020,3.46001e-4,759432,3.46e-4,0.0,0.0,3182592,7,0,0,0,0,0,0,3.34e-4,3.34e-4,0.0,0.0
+transformation/concat/streaming,1071,3.1641e-4,694496,3.17e-4,0.0,0.0,3215360,8,0,0,0,0,0,0,3.05e-4,3.05e-4,0.0,0.0
+transformation/concat/streaming,1125,3.98544e-4,874772,3.98e-4,0.0,0.0,3252224,8,0,0,0,0,0,0,3.22e-4,3.22e-4,0.0,0.0
+transformation/concat/streaming,1181,3.4804e-4,763906,3.48e-4,0.0,0.0,3297280,10,0,0,0,0,0,0,3.37e-4,3.37e-4,0.0,0.0
+transformation/concat/streaming,1240,3.6624e-4,803868,3.66e-4,0.0,0.0,3330048,8,0,0,0,0,0,0,3.54e-4,3.54e-4,0.0,0.0
+transformation/concat/streaming,1302,3.83122e-4,840914,3.84e-4,0.0,0.0,3375104,10,0,0,0,0,0,0,3.69e-4,3.69e-4,0.0,0.0
+transformation/concat/streaming,1367,3.8509e-4,845240,3.85e-4,0.0,0.0,3420160,11,0,0,0,0,0,0,3.7e-4,3.7e-4,0.0,0.0
+transformation/concat/streaming,1436,4.06358e-4,891924,4.06e-4,0.0,0.0,3465216,11,0,0,0,0,0,0,3.68e-4,3.68e-4,0.0,0.0
+transformation/concat/streaming,1507,3.98768e-4,875264,3.99e-4,0.0,0.0,3518464,13,0,0,0,0,0,0,3.83e-4,3.83e-4,0.0,0.0
+transformation/concat/streaming,1583,4.15788e-4,912617,4.16e-4,0.0,0.0,3530752,3,0,0,0,1032536,1,1016,3.15e-4,3.15e-4,9.3e-5,9.4012e-5
+transformation/concat/streaming,1662,3.8139e-4,837120,3.82e-4,0.0,0.0,3530752,0,0,0,0,1032600,1,1048,2.95e-4,2.95e-4,8.5e-5,8.5885e-5
+transformation/concat/streaming,1745,3.99808e-4,877546,4.0e-4,0.0,0.0,3530752,0,0,0,0,1032600,1,1048,3.14e-4,3.14e-4,8.4e-5,8.534e-5
+transformation/concat/streaming,1832,4.32383e-4,949042,4.33e-4,0.0,0.0,3530752,0,0,0,0,1032480,1,1016,3.43e-4,3.43e-4,8.6e-5,8.5781e-5
+transformation/concat/streaming,1924,4.13052e-4,906594,4.13e-4,0.0,0.0,3530752,0,0,0,0,1032760,1,1104,3.31e-4,3.31e-4,8.0e-5,8.1328e-5
+transformation/concat/streaming,2020,4.32906e-4,950194,4.33e-4,0.0,0.0,3530752,0,0,0,0,1032600,1,1048,3.5e-4,3.5e-4,8.1e-5,8.1481e-5
+transformation/concat/streaming,2121,4.54905e-4,998478,4.55e-4,0.0,0.0,3530752,0,0,0,0,1032744,1,1080,3.72e-4,3.72e-4,8.1e-5,8.1513e-5
+transformation/concat/streaming,2227,4.94589e-4,1085572,5.0e-4,0.0,0.0,3530752,0,0,0,1,1032728,1,1080,4.14e-4,4.14e-4,8.1e-5,8.1855e-5
+transformation/concat/streaming,2339,4.86248e-4,1067274,4.86e-4,0.0,0.0,3530752,0,0,0,0,1032760,1,1080,4.05e-4,4.05e-4,7.9e-5,7.9075e-5
+transformation/concat/streaming,2456,5.07622e-4,1114200,5.07e-4,0.0,0.0,3530752,0,0,0,0,1032600,1,1048,4.27e-4,4.27e-4,7.9e-5,7.96e-5
+transformation/concat/streaming,2579,5.33549e-4,1171098,5.34e-4,0.0,0.0,3530752,0,0,0,0,1032536,1,1016,4.53e-4,4.53e-4,7.9e-5,7.9096e-5
+transformation/concat/streaming,2708,6.03078e-4,1323708,6.03e-4,0.0,0.0,3530752,0,0,0,0,1032536,1,1016,5.13e-4,5.13e-4,7.8e-5,7.9142e-5
+transformation/concat/streaming,2843,6.67944e-4,1466152,6.57e-4,0.0,0.0,3530752,0,0,0,1,1032768,1,1080,5.78e-4,5.78e-4,7.8e-5,7.834e-5
+transformation/concat/streaming,2985,1.245387e-3,2733529,1.246e-3,0.0,0.0,3551232,0,0,0,0,1032760,1,1080,1.065e-3,1.065e-3,1.77e-4,1.85586e-4
+transformation/concat/streaming,3134,1.01272e-3,2222840,1.013e-3,0.0,0.0,3551232,0,0,0,0,2064840,2,2016,8.74e-4,8.74e-4,1.34e-4,1.3554e-4
+transformation/concat/streaming,3291,1.06142e-3,2329732,1.061e-3,0.0,0.0,3551232,0,0,0,0,2064920,2,2016,9.24e-4,9.24e-4,1.33e-4,1.34121e-4
+transformation/concat/streaming,3456,1.080488e-3,2371568,1.081e-3,0.0,0.0,3551232,0,0,0,0,2064880,2,2016,9.41e-4,9.41e-4,1.33e-4,1.33472e-4
+transformation/concat/streaming,3629,1.027943e-3,2256256,1.028e-3,0.0,0.0,3551232,0,0,0,0,2064952,2,1984,9.08e-4,9.08e-4,1.16e-4,1.17899e-4
+transformation/concat/streaming,3810,1.077224e-3,2364423,1.088e-3,0.0,0.0,3551232,0,0,0,1,2064952,2,2016,9.59e-4,9.59e-4,1.17e-4,1.18139e-4
+transformation/concat/streaming,4001,1.010116e-3,2217122,1.01e-3,0.0,0.0,3551232,0,0,0,0,2064888,2,2016,9.03e-4,9.03e-4,1.03e-4,1.04288e-4
+transformation/concat/streaming,4201,1.113637e-3,2444341,1.096e-3,0.0,0.0,3551232,0,0,0,2,2064952,2,1952,9.76e-4,9.76e-4,1.05e-4,1.055e-4
+transformation/concat/streaming,4411,1.007171e-3,2210688,1.007e-3,0.0,0.0,3551232,0,0,0,0,2064920,2,2016,9.09e-4,9.09e-4,9.4e-5,9.48e-5
+transformation/concat/streaming,4631,1.047668e-3,2299538,1.047e-3,0.0,0.0,3551232,0,0,0,0,3097096,3,2136,9.45e-4,9.45e-4,9.6e-5,9.7105e-5
+transformation/concat/streaming,4863,1.107205e-3,2430232,1.107e-3,0.0,0.0,3551232,0,0,0,0,3097096,3,2168,1.011e-3,1.011e-3,9.2e-5,9.3882e-5
+transformation/concat/streaming,5106,1.155236e-3,2535628,1.155e-3,0.0,0.0,3551232,0,0,0,0,3096984,3,2072,1.063e-3,1.063e-3,8.8e-5,9.0995e-5
+transformation/concat/streaming,5361,1.147398e-3,2518426,1.147e-3,0.0,0.0,3551232,0,0,0,0,3097104,3,2168,1.054e-3,1.054e-3,8.9e-5,9.1483e-5
+transformation/concat/streaming,5629,1.22055e-3,2679008,1.221e-3,0.0,0.0,3551232,0,0,0,0,3097096,3,2136,1.125e-3,1.125e-3,9.1e-5,9.2008e-5
+transformation/concat/streaming,5911,1.71426e-3,3762674,1.698e-3,0.0,0.0,3551232,0,0,0,3,3097080,3,2136,1.581e-3,1.581e-3,9.7e-5,9.8355e-5
+transformation/concat/streaming,6207,1.663404e-3,3651047,1.663e-3,0.0,0.0,3551232,0,0,0,0,4129272,4,2320,1.541e-3,1.541e-3,1.13e-4,1.16847e-4
+transformation/concat/streaming,6517,1.837239e-3,4032591,1.837e-3,0.0,0.0,3551232,0,0,0,0,4129184,4,2320,1.706e-3,1.706e-3,1.24e-4,1.26328e-4
+transformation/concat/streaming,6843,1.733787e-3,3805522,1.733e-3,0.0,0.0,3551232,0,0,0,0,4129288,4,2320,1.6e-3,1.6e-3,1.26e-4,1.30495e-4
+transformation/concat/streaming,7185,1.685171e-3,3698810,1.685e-3,0.0,0.0,3551232,0,0,0,0,4129288,4,2256,1.569e-3,1.569e-3,1.08e-4,1.11269e-4
+transformation/concat/streaming,7544,1.667916e-3,3660926,1.673e-3,0.0,0.0,3551232,0,0,0,1,4129176,4,2320,1.562e-3,1.562e-3,9.7e-5,9.9151e-5
+transformation/concat/streaming,7921,1.685963e-3,3700546,1.686e-3,0.0,0.0,3551232,0,0,0,0,5161368,5,2472,1.585e-3,1.585e-3,9.3e-5,9.469e-5
+transformation/concat/streaming,8318,1.819108e-3,3992806,1.818e-3,0.0,0.0,3551232,0,0,0,0,5161416,5,2408,1.717e-3,1.717e-3,9.3e-5,9.5587e-5
+transformation/concat/streaming,8733,1.829558e-3,4015732,1.83e-3,0.0,0.0,3555328,0,0,0,0,5161448,5,2440,1.728e-3,1.728e-3,9.4e-5,9.4652e-5
+transformation/concat/streaming,9170,2.542088e-3,5579722,2.531e-3,0.0,0.0,3555328,0,0,0,2,5161464,5,2440,2.412e-3,2.412e-3,9.9e-5,1.01837e-4
+transformation/concat/streaming,9629,2.83131e-3,6214483,2.839e-3,0.0,0.0,3555328,0,0,0,1,6193704,6,2560,2.656e-3,2.656e-3,1.54e-4,1.58214e-4
+transformation/concat/streaming,10110,2.628605e-3,5769564,2.613e-3,0.0,0.0,3555328,0,0,0,1,6193520,6,2592,2.464e-3,2.464e-3,1.28e-4,1.32564e-4
+transformation/concat/streaming,10616,2.421801e-3,5315647,2.422e-3,0.0,0.0,3555328,0,0,0,0,6193576,6,2624,2.287e-3,2.287e-3,1.15e-4,1.176e-4
+transformation/concat/streaming,11146,2.445481e-3,5367622,2.444e-3,0.0,0.0,3555328,0,0,0,0,7225816,7,2776,2.322e-3,2.322e-3,1.07e-4,1.09811e-4
+transformation/concat/streaming,11704,3.031102e-3,6653096,3.007e-3,0.0,0.0,3555328,0,0,0,1,7225752,7,2776,2.874e-3,2.874e-3,9.7e-5,9.9625e-5
+transformation/concat/streaming,12289,4.510106e-3,9899352,4.508e-3,0.0,0.0,3555328,0,0,0,0,8257840,8,2928,4.358e-3,4.358e-3,1.31e-4,1.39237e-4
+transformation/concat/streaming,12903,4.986137e-3,10944206,4.978e-3,0.0,0.0,3555328,0,0,0,1,8258024,8,2864,4.779e-3,4.779e-3,1.69e-4,1.75249e-4
+transformation/concat/streaming,13549,4.232508e-3,9290012,4.245e-3,0.0,0.0,3555328,0,0,0,1,8257944,8,2864,4.058e-3,4.058e-3,1.58e-4,1.64822e-4
+transformation/concat/streaming,14226,3.845949e-3,8441526,3.827e-3,0.0,0.0,3555328,0,0,0,2,9290040,9,3048,3.663e-3,3.663e-3,1.37e-4,1.42745e-4
+transformation/concat/streaming,14937,3.339271e-3,7329420,3.34e-3,0.0,0.0,3567616,2,0,0,0,9290120,9,3080,3.197e-3,3.197e-3,1.22e-4,1.36852e-4
+transformation/concat/streaming,15684,3.304485e-3,7253068,3.308e-3,0.0,0.0,3567616,0,0,0,1,10322344,10,3232,3.189e-3,3.189e-3,1.02e-4,1.05734e-4
+transformation/concat/streaming,16469,3.50257e-3,7687858,3.497e-3,0.0,0.0,3567616,0,0,0,2,10322312,10,3232,3.374e-3,3.374e-3,1.02e-4,1.05092e-4
+transformation/concat/streaming,17292,3.672182e-3,8060142,3.672e-3,0.0,0.0,3567616,0,0,0,0,11354360,11,3384,3.556e-3,3.556e-3,1.01e-4,1.06707e-4
+transformation/concat/streaming,18157,3.90383e-3,8568580,3.909e-3,0.0,0.0,3567616,0,0,0,1,11354456,11,3320,3.785e-3,3.785e-3,1.03e-4,1.07442e-4
+transformation/concat/streaming,19065,4.039169e-3,8865650,4.039e-3,0.0,0.0,3567616,0,0,0,0,12386608,12,3472,3.918e-3,3.918e-3,1.04e-4,1.09708e-4
+transformation/concat/streaming,20018,4.430304e-3,9724150,4.43e-3,0.0,0.0,3571712,0,0,0,0,13418856,13,3688,4.307e-3,4.307e-3,1.04e-4,1.1374e-4
+transformation/concat/streaming,21019,4.538259e-3,9961122,4.544e-3,0.0,0.0,3571712,0,0,0,1,13418696,13,3688,4.395e-3,4.395e-3,1.24e-4,1.30842e-4
+transformation/concat/streaming,22070,4.689613e-3,10293324,4.689e-3,0.0,0.0,3571712,0,0,0,0,14450904,14,3840,4.563e-3,4.563e-3,1.07e-4,1.14719e-4
+transformation/concat/streaming,23173,4.981736e-3,10934508,4.987e-3,0.0,0.0,3571712,0,0,0,1,15483056,15,3928,4.848e-3,4.848e-3,1.13e-4,1.19172e-4
+transformation/concat/streaming,24332,5.58336e-3,12255020,5.583e-3,0.0,0.0,3571712,0,0,0,0,15483128,15,3960,5.447e-3,5.447e-3,1.12e-4,1.20415e-4
+transformation/concat/streaming,25549,5.393582e-3,11838472,5.4e-3,0.0,0.0,3571712,0,0,0,1,16515352,16,4144,5.257e-3,5.257e-3,1.15e-4,1.2307e-4
+transformation/concat/streaming,26826,5.739273e-3,12597242,5.739e-3,0.0,0.0,3571712,0,0,0,0,17547256,17,4296,5.595e-3,5.595e-3,1.19e-4,1.29059e-4
+transformation/concat/streaming,28167,6.897199e-3,15138824,6.883e-3,0.0,0.0,3571712,0,0,0,3,18579608,18,4384,6.694e-3,6.694e-3,1.28e-4,1.36637e-4
+transformation/concat/streaming,29576,7.569728e-3,16614921,7.562e-3,0.0,0.0,3571712,0,0,0,1,19611736,19,4504,7.33e-3,7.33e-3,1.67e-4,1.79425e-4
+transformation/concat/streaming,31054,6.680613e-3,14663416,6.688e-3,0.0,0.0,3571712,0,0,0,1,20644072,20,4720,6.53e-3,6.53e-3,1.24e-4,1.32833e-4
+transformation/concat/streaming,32607,6.955138e-3,15265968,6.959e-3,0.0,0.0,3571712,0,0,0,1,21676008,21,4904,6.777e-3,6.777e-3,1.48e-4,1.59862e-4
+transformation/concat/streaming,34238,7.32364e-3,16074808,7.329e-3,0.0,0.0,3571712,0,0,0,1,22708232,22,5024,7.177e-3,7.177e-3,1.15e-4,1.33351e-4
+transformation/concat/streaming,35950,7.595889e-3,16672372,7.596e-3,0.0,0.0,3571712,0,0,0,0,23740384,23,5176,7.438e-3,7.438e-3,1.26e-4,1.34944e-4
+transformation/concat/streaming,37747,8.133719e-3,17852856,8.125e-3,0.0,0.0,3571712,0,0,0,3,24772488,24,5264,7.949e-3,7.949e-3,1.27e-4,1.36576e-4
+transformation/concat/streaming,39634,1.1193481e-2,24568806,1.1179e-2,0.0,0.0,3571712,0,0,0,5,25804824,25,5512,1.0938e-2,1.0938e-2,1.47e-4,1.63607e-4
+transformation/concat/streaming,41616,9.124256e-3,20026984,9.126e-3,0.0,0.0,3571712,0,0,0,2,27869256,27,5816,8.909e-3,8.909e-3,1.56e-4,1.69501e-4
+transformation/concat/streaming,43697,1.0612574e-2,23293820,1.0616e-2,0.0,0.0,3571712,0,0,0,4,28901232,28,5936,1.0367e-2,1.0367e-2,1.46e-4,1.59117e-4
+transformation/concat/streaming,45882,1.306104e-2,28667863,1.3064e-2,0.0,0.0,3571712,0,0,0,3,29933528,29,6088,1.2731e-2,1.2731e-2,2.45e-4,2.61526e-4
+transformation/concat/streaming,48176,1.3832069e-2,30360294,1.37e-2,0.0,0.0,3571712,0,0,0,6,31997736,31,6424,1.3419e-2,1.3419e-2,1.75e-4,1.95132e-4
+transformation/concat/streaming,50585,1.2257207e-2,26903604,1.2244e-2,0.0,0.0,3571712,0,0,0,2,33030024,32,6512,1.1937e-2,1.1937e-2,2.09e-4,2.2846e-4
+transformation/concat/streaming,53114,1.3403419e-2,29419395,1.3367e-2,0.0,0.0,3575808,0,0,0,4,35094312,34,6848,1.3041e-2,1.3041e-2,2.32e-4,2.60392e-4
+transformation/concat/streaming,55770,1.2037105e-2,26420462,1.2034e-2,0.0,0.0,3575808,0,0,0,1,37158728,36,7120,1.1817e-2,1.1817e-2,1.51e-4,1.80526e-4
+transformation/concat/streaming,58558,1.36266e-2,29909288,1.3629e-2,0.0,0.0,3584000,1,0,0,4,39222984,38,7456,1.334e-2,1.334e-2,1.9e-4,2.35026e-4
+transformation/concat/streaming,61486,1.4061445e-2,30863734,1.4046e-2,0.0,0.0,3584000,0,0,0,6,41287352,40,7696,1.3538e-2,1.3538e-2,2.01e-4,2.20444e-4
+transformation/concat/streaming,64561,1.4531333e-2,31895096,1.4518e-2,0.0,0.0,3584000,0,0,0,7,43351688,42,8096,1.422e-2,1.422e-2,1.79e-4,1.99978e-4
+transformation/concat/streaming,67789,1.6872082e-2,37032873,1.6865e-2,0.0,0.0,3584000,0,0,0,2,45415792,44,8368,1.6529e-2,1.6529e-2,2.38e-4,2.59126e-4
+transformation/concat/streaming,71178,1.5824839e-2,34734236,1.5799e-2,1.8446743240485914e13,0.0,3584000,0,0,0,2,47480328,46,8704,1.5489e-2,1.5489e-2,2.11e-4,2.31442e-4
+transformation/concat/streaming,74737,1.8750379e-2,41155608,1.8782e-2,0.0,0.0,3584000,0,0,0,3,49544856,48,8976,1.8455e-2,1.8455e-2,1.96e-4,2.21659e-4
+transformation/concat/streaming,78474,1.8011497e-2,39533734,1.7998e-2,0.0,0.0,3584000,0,0,0,3,52641144,51,9432,1.7652e-2,1.7652e-2,2.36e-4,2.65065e-4
+transformation/concat/streaming,82398,1.7620264e-2,38675046,1.7636e-2,0.0,0.0,3584000,0,0,0,3,54705456,53,9768,1.7344e-2,1.7344e-2,1.86e-4,2.06933e-4
+transformation/concat/streaming,86518,1.9097723e-2,41917966,1.9098e-2,0.0,0.0,3584000,0,0,0,5,57802008,56,10224,1.8773e-2,1.8773e-2,1.98e-4,2.28858e-4
+transformation/concat/streaming,90843,1.9649562e-2,43129196,1.9655e-2,0.0,0.0,3584000,0,0,0,1,60898328,59,10648,1.9242e-2,1.9242e-2,2.08e-4,2.40026e-4
+transformation/concat/streaming,95386,2.4834804e-2,54510390,2.4789e-2,0.0,0.0,3584000,0,0,0,6,63994840,62,11136,2.4382e-2,2.4382e-2,2.36e-4,2.70003e-4
+transformation/concat/streaming,100155,2.5381539e-2,55710440,2.5396e-2,0.0,0.0,3584000,0,0,0,4,67091272,65,11592,2.5001e-2,2.5001e-2,2.27e-4,2.75017e-4
+transformation/concat/streaming,105163,2.430669e-2,53351274,2.4315e-2,0.0,0.0,3584000,0,0,0,2,70187816,68,12048,2.3979e-2,2.3979e-2,2.22e-4,2.56739e-4
+transformation/concat/streaming,110421,2.4826451e-2,54492050,2.4809e-2,0.0,0.0,3584000,0,0,0,7,73284376,71,12504,2.4404e-2,2.4404e-2,2.45e-4,2.79204e-4
+transformation/concat/streaming,115942,2.8023446e-2,61509264,2.8013e-2,0.0,0.0,3584000,0,0,0,8,77413320,75,13112,2.7544e-2,2.7544e-2,2.74e-4,3.05019e-4
+transformation/concat/streaming,121739,3.1032994e-2,68114835,3.0995e-2,0.0,0.0,3584000,0,0,0,13,81541720,79,13720,3.0414e-2,3.0414e-2,3.65e-4,4.04121e-4
+transformation/concat/streaming,127826,2.8501509e-2,62558510,2.8437e-2,0.0,0.0,3584000,0,0,0,13,85670240,83,14296,2.7993e-2,2.7993e-2,2.44e-4,2.83806e-4
+transformation/concat/streaming,134217,3.4800649e-2,76384606,3.404e-2,0.0,0.0,3584000,0,0,0,81,89799384,87,14936,3.2837e-2,3.2837e-2,4.22e-4,5.08119e-4
+transformation/concat/streaming,140928,3.4194859e-2,75054938,3.3943e-2,0.0,0.0,3584000,0,0,0,49,93927512,91,15544,3.3215e-2,3.3215e-2,3.14e-4,3.62768e-4
+transformation/concat/streaming,147975,3.8217437e-2,83884212,3.7828e-2,0.0,0.0,3584000,0,0,0,73,99088760,96,16240,3.691e-2,3.691e-2,3.79e-4,4.43002e-4
+transformation/concat/streaming,155373,3.7930031e-2,83253360,3.7381e-2,0.0,0.0,3592192,1,0,0,84,104249328,101,17064,3.6227e-2,3.6227e-2,4.45e-4,5.19819e-4
+transformation/concat/streaming,163142,3.8615261e-2,84757370,3.839e-2,0.0,0.0,3592192,0,0,0,48,109410520,106,17824,3.7483e-2,3.7483e-2,4.3e-4,4.92334e-4
+transformation/concat/streaming,171299,4.0003559e-2,87804576,3.9767e-2,0.0,0.0,3592192,0,0,0,50,114571096,111,18552,3.8907e-2,3.8907e-2,4.12e-4,4.62798e-4
+transformation/concat/streaming,179864,4.4064925e-2,96718926,4.3588e-2,0.0,0.0,3592192,0,0,0,55,120764040,117,19464,4.259e-2,4.259e-2,4.37e-4,5.02516e-4
+transformation/concat/streaming,188858,4.7517215e-2,104296450,4.7086e-2,0.0,0.0,3592192,0,0,0,96,125924760,122,20256,4.595e-2,4.595e-2,4.66e-4,5.62172e-4
+transformation/concat/streaming,198300,4.8447913e-2,106339256,4.8225e-2,0.0,0.0,3592192,0,0,0,55,133150344,129,21320,4.7212e-2,4.7212e-2,4.41e-4,5.25982e-4
+transformation/concat/streaming,208215,5.0014491e-2,109777784,4.9949e-2,0.0,0.0,3592192,0,0,0,15,139343112,135,22200,4.9194e-2,4.9194e-2,4.05e-4,4.69285e-4
+transformation/concat/streaming,218626,5.372356e-2,117918870,5.3717e-2,0.0,0.0,3592192,0,0,0,10,146568376,142,23264,5.2963e-2,5.2963e-2,3.92e-4,4.71339e-4
+transformation/concat/streaming,229558,5.1337247e-2,112681104,5.1346e-2,0.0,0.0,3592192,0,0,0,8,153793400,149,24264,5.065e-2,5.065e-2,4.19e-4,4.8136e-4
+transformation/concat/streaming,241036,5.1203921e-2,112388468,5.1231e-2,0.0,0.0,3592192,0,0,0,5,161018656,156,25424,5.0637e-2,5.0637e-2,3.5e-4,4.22342e-4
+transformation/concat/streaming,253087,5.5906755e-2,122710846,5.5946e-2,0.0,0.0,3592192,0,0,0,9,169275816,164,26480,5.5212e-2,5.5212e-2,3.7e-4,4.56467e-4
+transformation/concat/streaming,265742,6.6470213e-2,145896776,6.6456e-2,0.0,0.0,3592192,0,0,0,19,178565688,173,28008,6.5493e-2,6.5493e-2,5.17e-4,6.1562e-4
+transformation/concat/streaming,279029,6.9951564e-2,153537964,6.9807e-2,0.0,0.0,3592192,0,0,0,45,186823192,181,29192,6.8524e-2,6.8524e-2,6.41e-4,7.31935e-4
+transformation/concat/streaming,292980,7.5879019e-2,166548308,7.5398e-2,0.0,0.0,3592192,0,0,0,75,196112240,190,30528,7.3629e-2,7.3629e-2,7.34e-4,8.30404e-4
+transformation/concat/streaming,307629,7.6913505e-2,168818960,7.6695e-2,0.0,0.0,3592192,0,0,0,58,206434376,200,32048,7.531e-2,7.531e-2,6.25e-4,7.34044e-4
+transformation/concat/streaming,323011,8.1634762e-2,179181695,8.157e-2,0.0,0.0,3592192,0,0,0,27,216755560,210,33632,8.0274e-2,8.0274e-2,6.53e-4,7.85113e-4
+transformation/concat/streaming,339161,8.6363508e-2,189560985,8.6318e-2,0.0,0.0,3592192,0,0,0,19,227077608,220,35120,8.5149e-2,8.5149e-2,5.97e-4,7.13098e-4
+transformation/concat/streaming,356119,8.8316737e-2,193848015,8.8214e-2,0.0,0.0,3592192,0,0,0,36,238430712,231,36824,8.6794e-2,8.6794e-2,6.74e-4,8.04814e-4
+transformation/concat/streaming,373925,9.0410195e-2,198443072,9.0416e-2,0.0,0.0,3592192,0,0,0,15,250817368,243,38616,8.9351e-2,8.9351e-2,5.69e-4,7.06203e-4
+transformation/concat/streaming,392622,8.903445e-2,195423410,8.9016e-2,0.0,0.0,3592192,0,0,0,16,263202920,255,40472,8.7837e-2,8.7837e-2,6.01e-4,7.27566e-4
+transformation/concat/streaming,412253,9.5626986e-2,209893504,9.5601e-2,0.0,0.0,3592192,0,0,0,21,276621304,268,42448,9.4307e-2,9.4307e-2,6.46e-4,7.96903e-4
+transformation/concat/streaming,432866,0.103989556,228248702,0.103878,0.0,0.0,3592192,0,0,0,30,290039464,281,44360,0.102456,0.102456,7.28e-4,8.75068e-4
+transformation/concat/streaming,454509,0.106269268,233252438,0.106212,0.0,0.0,3592192,0,0,0,31,304489920,295,46488,0.104655,0.104655,7.56e-4,9.21177e-4
+transformation/concat/streaming,477234,0.117545568,258003037,0.117314,0.0,0.0,3600384,0,0,0,65,319972264,310,48832,0.115333,0.115333,8.84e-4,1.039086e-3
+transformation/concat/streaming,501096,0.121356215,266367077,0.120894,0.0,0.0,3600384,0,0,0,103,336487080,326,51264,0.118602,0.118602,9.62e-4,1.121886e-3
+transformation/concat/streaming,526151,0.124999173,274363056,0.124868,0.0,0.0,3600384,0,0,0,48,353002424,342,53664,0.123049,0.123049,9.0e-4,1.077527e-3
+transformation/concat/streaming,552458,0.130745522,286975858,0.130746,0.0,0.0,3600384,0,0,0,26,370548672,359,56280,0.129156,0.129156,7.94e-4,1.011332e-3
+transformation/concat/streaming,580081,0.133530343,293088310,0.133369,0.0,0.0,3600384,0,0,0,29,389127368,377,58920,0.131692,0.131692,8.68e-4,1.063531e-3
+transformation/concat/streaming,609086,0.142408625,312575422,0.142368,0.0,0.0,3600384,0,0,0,24,408738776,396,61904,0.140629,0.140629,8.64e-4,1.08181e-3
+transformation/concat/streaming,639540,0.141963825,311599122,0.141802,0.0,0.0,3600384,0,0,0,28,429382792,416,64944,0.140088,0.140088,9.09e-4,1.125506e-3
+transformation/concat/streaming,671517,0.152619445,334987344,0.152652,0.0,0.0,3600384,0,0,0,20,451057944,437,68096,0.150994,0.150994,8.75e-4,1.113863e-3
+transformation/concat/streaming,705093,0.16280177,357336724,0.162719,0.0,0.0,3600384,0,0,0,41,473766376,459,71480,0.160558,0.160558,1.024e-3,1.271227e-3
+transformation/concat/streaming,740347,0.17905903,393020098,0.177839,0.0,0.0,3600384,0,0,0,171,497502736,482,75208,0.174579,0.174579,1.358e-3,1.63398e-3
+transformation/concat/streaming,777365,0.183581719,402947032,0.182892,0.0,0.0,3600384,0,0,0,141,522277704,506,78624,0.179992,0.179992,1.329e-3,1.584763e-3
+transformation/concat/streaming,816233,0.19241509,422335576,0.192413,0.0,0.0,3616768,3,0,0,36,548082328,531,82424,0.19007,0.19007,1.143e-3,1.444011e-3
+transformation/concat/streaming,857045,0.204158838,448112144,0.203206,0.0,0.0,3616768,0,0,0,197,574917568,557,86344,0.199708,0.199708,1.492e-3,1.794073e-3
+transformation/concat/streaming,899897,0.211800019,464883916,0.211654,0.0,0.0,3616768,0,0,0,70,603818040,585,90600,0.208813,0.208813,1.317e-3,1.645334e-3
+transformation/concat/streaming,944892,0.226165639,496415328,0.225065,0.0,0.0,3616768,0,0,0,258,634782488,615,95128,0.220843,0.220843,1.631e-3,1.975509e-3
+transformation/concat/streaming,992136,0.245423568,538684858,0.244761,0.0,0.0,3616768,0,0,0,163,665749576,645,99688,0.240657,0.240657,1.778e-3,2.143818e-3
+filtering/filter-even/vector,1,8.090677e-3,17758386,8.086e-3,7.944e-3,0.0,3436544,1,0,0,5,79376432,76,4248,7.725e-3,7.725e-3,2.22e-4,3.30422e-4
+filtering/filter-even/vector,2,1.6083286e-2,35301512,1.6107e-2,0.0,0.0,3444736,0,0,0,2,159805392,153,6800,1.5491e-2,1.5491e-2,3.48e-4,4.45608e-4
+filtering/filter-even/vector,3,2.3774518e-2,52183150,2.3778e-2,0.0,0.0,3444736,0,0,0,5,239185840,229,9304,2.292e-2,2.292e-2,4.29e-4,6.02201e-4
+filtering/filter-even/vector,4,3.275287e-2,71889952,3.2714e-2,0.0,0.0,3444736,0,0,0,12,319610704,306,11856,3.1501e-2,3.1501e-2,5.9e-4,7.36317e-4
+filtering/filter-even/vector,5,4.4438808e-2,97539572,4.4348e-2,0.0,0.0,3444736,0,0,0,25,398991216,382,14376,4.2747e-2,4.2747e-2,8.0e-4,1.016225e-3
+filtering/filter-even/vector,6,5.2306833e-2,114809268,5.2294e-2,0.0,0.0,3444736,0,0,0,17,479416144,459,16928,5.0462e-2,5.0462e-2,9.02e-4,1.163919e-3
+filtering/filter-even/vector,7,6.1628023e-2,135268545,6.1551e-2,0.0,0.0,3444736,0,0,0,26,559841072,536,19480,5.9421e-2,5.9421e-2,1.057e-3,1.364891e-3
+filtering/filter-even/vector,8,7.0218389e-2,154123708,7.0219e-2,0.0,0.0,3444736,0,0,0,20,639221416,612,22000,6.7906e-2,6.7906e-2,1.149e-3,1.481881e-3
+filtering/filter-even/vector,9,7.4061166e-2,162558295,7.3819e-2,0.0,0.0,3444736,0,0,0,62,719646448,689,24552,7.1043e-2,7.1043e-2,1.395e-3,1.780902e-3
+filtering/filter-even/vector,10,8.1533994e-2,178960530,8.1063e-2,0.0,0.0,3444736,0,0,0,97,799026896,765,27072,7.7879e-2,7.7879e-2,1.479e-3,1.899772e-3
+filtering/filter-even/vector,11,9.7112544e-2,213154190,9.6849e-2,0.0,0.0,3444736,0,0,0,70,879451824,842,29624,9.3354e-2,9.3354e-2,1.659e-3,2.140513e-3
+filtering/filter-even/vector,12,9.3430719e-2,205072866,9.3389e-2,0.0,0.0,3444736,0,0,0,29,959876704,919,32176,9.0384e-2,9.0384e-2,1.485e-3,1.911109e-3
+filtering/filter-even/vector,13,0.105730984,232070966,0.10563,0.0,0.0,3506176,9,0,0,44,1039257200,995,34696,0.102123,0.102123,1.701e-3,2.246279e-3
+filtering/filter-even/vector,14,0.124038224,272253878,0.123384,0.0,0.0,3506176,0,0,0,97,1119682128,1072,37248,0.118934,0.118934,2.063e-3,2.624584e-3
+filtering/filter-even/vector,15,0.127439707,279719858,0.12703,0.0,0.0,3506176,0,0,0,101,1199062576,1148,39768,0.122238,0.122238,2.112e-3,2.743155e-3
+filtering/filter-even/vector,16,0.137428232,301643868,0.137311,0.0,0.0,3506176,0,0,0,39,1279487504,1225,42320,0.132803,0.132803,2.188e-3,2.826778e-3
+filtering/filter-even/vector,17,0.150209672,329698150,0.150169,0.0,0.0,3506176,0,0,0,40,1359912408,1302,44872,0.145364,0.145364,2.319e-3,3.092609e-3
+filtering/filter-even/vector,18,0.157798782,346355516,0.157213,0.0,0.0,3506176,0,0,0,150,1439292880,1378,47392,0.150842,0.150842,2.819e-3,3.634709e-3
+filtering/filter-even/vector,19,0.159437767,349953020,0.159083,0.0,0.0,3506176,0,0,0,92,1519717808,1455,49944,0.153432,0.153432,2.581e-3,3.368269e-3
+filtering/filter-even/vector,20,0.16904976,371050564,0.168935,0.0,0.0,3506176,0,0,0,53,1599098256,1531,52464,0.163368,0.163368,2.711e-3,3.486686e-3
+filtering/filter-even/vector,21,0.176327687,387025017,0.175486,0.0,0.0,3506176,0,0,0,166,1679523080,1608,55016,0.168788,0.168788,3.091e-3,3.983433e-3
+filtering/filter-even/vector,22,0.18475332,405518606,0.183146,0.0,0.0,3506176,0,0,0,255,1759948112,1685,57568,0.175596,0.175596,3.301e-3,4.301099e-3
+filtering/filter-even/vector,23,0.196534879,431378189,0.194982,0.0,0.0,3506176,0,0,0,157,1839328544,1761,60088,0.187836,0.187836,3.314e-3,4.242862e-3
+filtering/filter-even/vector,25,0.219133715,480980779,0.216432,0.0,0.0,3506176,0,0,0,416,1999133936,1914,65160,0.207225,0.207225,3.887e-3,5.004807e-3
+filtering/filter-even/vector,26,0.230199781,505269924,0.225124,0.0,0.0,3506176,0,0,0,758,2079558816,1991,67712,0.21374,0.21374,4.386e-3,5.699424e-3
+filtering/filter-even/vector,27,0.236089405,518197166,0.231794,0.0,0.0,3506176,0,0,0,702,2159983792,2068,70264,0.220892,0.220892,4.241e-3,5.487879e-3
+filtering/filter-even/vector,28,0.233346308,512176292,0.232554,0.0,0.0,3506176,0,0,0,201,2239364240,2144,72784,0.223859,0.223859,3.92e-3,5.102457e-3
+filtering/filter-even/vector,30,0.243199975,533804290,0.243038,0.0,0.0,3506176,0,0,0,88,2399169616,2297,77856,0.234763,0.234763,3.893e-3,5.118377e-3
+filtering/filter-even/vector,31,0.253670592,556786454,0.253394,0.0,0.0,3506176,0,0,0,103,2479594544,2374,80408,0.244812,0.244812,3.94e-3,5.219808e-3
+filtering/filter-even/vector,33,0.271926836,596857424,0.271761,0.0,0.0,3506176,0,0,0,56,2639399896,2527,85480,0.262603,0.262603,4.359e-3,5.695004e-3
+filtering/filter-even/vector,35,0.28425269,623911680,0.283377,0.0,0.0,3506176,0,0,0,151,2799205296,2680,90552,0.273797,0.273797,4.441e-3,5.771007e-3
+filtering/filter-even/vector,36,0.299005659,656293262,0.298339,0.0,0.0,3506176,0,0,0,186,2879630224,2757,93104,0.287718,0.287718,4.97e-3,6.47117e-3
+filtering/filter-even/vector,38,0.318493278,699067038,0.317124,0.0,0.0,3506176,0,0,0,310,3039435600,2910,98176,0.30524,0.30524,5.402e-3,7.08768e-3
+filtering/filter-even/vector,40,0.326646947,716963614,0.326364,0.0,0.0,3506176,0,0,0,84,3199240872,3063,103248,0.315841,0.315841,5.006e-3,6.692829e-3
+filtering/filter-even/streamly,1,3.3055226e-2,72553580,3.3067e-2,3.2711e-2,0.0,3424256,1,0,0,9,147948616,142,9912,3.2383e-2,3.2383e-2,3.31e-4,4.14517e-4
+filtering/filter-even/streamly,2,7.3809763e-2,162006452,7.3757e-2,0.0,0.0,3432448,0,0,0,20,295905216,284,18128,7.2083e-2,7.2083e-2,7.32e-4,8.77102e-4
+filtering/filter-even/streamly,3,0.10927825,239856848,0.108491,0.0,0.0,3432448,0,0,0,139,443858008,426,30872,0.105358,0.105358,1.139e-3,1.403014e-3
+filtering/filter-even/streamly,4,0.120756544,265050856,0.120543,0.0,0.0,3432448,0,0,0,54,591810608,568,34544,0.117954,0.117954,1.144e-3,1.448279e-3
+filtering/filter-even/streamly,5,0.14498188,318223524,0.144655,0.0,0.0,3432448,0,0,0,88,739763312,710,51848,0.141734,0.141734,1.334e-3,1.704986e-3
+filtering/filter-even/streamly,6,0.171009051,375351054,0.17103,0.0,0.0,3432448,0,0,0,23,887715840,852,57792,0.168137,0.168137,1.445e-3,1.866242e-3
+filtering/filter-even/streamly,7,0.192187258,421835498,0.192209,0.0,0.0,3432448,0,0,0,34,1035668632,994,70552,0.188959,0.188959,1.63e-3,2.145629e-3
+filtering/filter-even/streamly,8,0.230598393,506144836,0.230527,0.0,0.0,3432448,0,0,0,63,1183620896,1136,71952,0.22619,0.22619,1.913e-3,2.471129e-3
+filtering/filter-even/streamly,9,0.271703775,596367828,0.271694,0.0,0.0,3432448,0,0,0,45,1331573744,1278,89256,0.266901,0.266901,2.285e-3,2.939251e-3
+filtering/filter-even/streamly,10,0.299336258,657018894,0.299256,0.0,0.0,3432448,0,0,0,61,1479526360,1420,97472,0.294034,0.294034,2.52e-3,3.281365e-3
+filtering/filter-even/streamly,11,0.319746588,701817929,0.319646,0.0,0.0,3432448,0,0,0,69,1627479360,1562,112504,0.314078,0.314078,2.636e-3,3.448315e-3
+filtering/filter-even/streamly,12,0.379833101,833702948,0.37965,0.0,0.0,3432448,0,0,0,113,1775431856,1704,116176,0.372523,0.372523,3.28e-3,4.218761e-3
+filtering/filter-even/streamly,13,0.392416006,861321440,0.39099,0.0,0.0,3493888,9,0,0,296,1923384392,1846,126664,0.382773,0.382773,3.552e-3,4.522845e-3
+filtering/filter-even/streamly,14,0.417239252,915806436,0.415681,0.0,0.0,3493888,0,0,0,307,2071337000,1988,134880,0.406823,0.406823,3.653e-3,4.801936e-3
+filtering/filter-even/streamly,15,0.449425954,986453632,0.447891,0.0,0.0,3493888,0,0,0,325,2219289800,2130,147640,0.438,0.438,4.13e-3,5.317615e-3
+filtering/filter-even/streamly,16,0.481582758,1057035226,0.480975,0.0,0.0,3493888,0,0,0,135,2367242624,2272,149040,0.472168,0.472168,4.051e-3,5.281039e-3
+filtering/filter-even/streamly,17,0.485248063,1065080268,0.484976,0.0,0.0,3493888,0,0,0,154,2515194936,2414,164072,0.476079,0.476079,4.084e-3,5.284621e-3
+filtering/filter-even/streamly,18,0.562043041,1233639086,0.561278,0.0,0.0,3493888,0,0,0,236,2663147840,2556,174560,0.549647,0.549647,4.993e-3,6.484982e-3
+filtering/filter-even/streaming,1,2.5335173e-2,55608652,2.5291e-2,2.499e-2,0.0,3432448,1,0,0,13,175606192,168,16872,2.4639e-2,2.4639e-2,3.55e-4,4.36167e-4
+filtering/filter-even/streaming,2,5.9117593e-2,129758340,5.7978e-2,0.0,0.0,3444736,0,0,0,59,351220496,336,32032,5.6215e-2,5.6215e-2,8.62e-4,1.053726e-3
+filtering/filter-even/streaming,3,8.4293678e-2,185017818,8.3989e-2,0.0,0.0,3444736,0,0,0,55,527875968,505,47232,8.1475e-2,8.1475e-2,1.206e-3,1.474395e-3
+filtering/filter-even/streaming,4,0.116914481,256617842,0.115199,0.0,73014.446532,3444736,0,0,0,213,703486240,673,62376,0.110904,0.110904,1.808e-3,2.251163e-3
+filtering/filter-even/streaming,5,0.138254422,303457262,0.137484,0.0,0.0,3448832,1,0,0,162,879096544,841,77440,0.133029,0.133029,2.006e-3,2.566683e-3
+filtering/filter-even/streaming,6,0.154630055,339400468,0.154596,0.0,0.0,3448832,0,0,0,37,1055751952,1010,92792,0.150994,0.150994,1.801e-3,2.308851e-3
+filtering/filter-even/streaming,7,0.190042256,417127392,0.189586,0.0,0.0,3448832,0,0,0,69,1231362352,1178,107856,0.184894,0.184894,2.354e-3,2.998195e-3
+filtering/filter-even/streaming,8,0.222043278,487367042,0.220792,0.0,0.0,3448832,0,0,0,257,1406972344,1346,123112,0.214042,0.214042,2.953e-3,3.790176e-3
+filtering/filter-even/streaming,9,0.242710157,532729178,0.242246,0.0,0.0,3448832,0,0,0,120,1583628048,1515,138296,0.235984,0.235984,2.925e-3,3.756203e-3
+filtering/filter-even/streaming,10,0.271123191,595093502,0.269353,0.0,0.0,3448832,0,0,0,257,1759238384,1683,153408,0.261748,0.261748,3.478e-3,4.472001e-3
+filtering/filter-even/streaming,11,0.301232234,661180406,0.299822,0.0,0.0,3448832,0,0,0,336,1935893776,1852,168568,0.290505,0.290505,4.092e-3,5.190828e-3
+filtering/filter-even/streaming,12,0.326555019,716761858,0.325778,0.0,0.0,3448832,0,0,0,215,2111503984,2020,183920,0.317045,0.317045,3.96e-3,5.112605e-3
+filtering/filter-even/streaming,13,0.349719717,767606516,0.348683,0.0,0.0,3448832,0,0,0,198,2287114448,2188,198832,0.338979,0.338979,4.528e-3,6.056109e-3
+filtering/filter-even/streaming,14,0.381698968,837798392,0.38089,0.0,0.0,3448832,0,0,0,202,2463769840,2357,214128,0.370383,0.370383,4.794e-3,6.126824e-3
+filtering/filter-even/streaming,15,0.419069406,919823468,0.417145,0.0,0.0,3448832,0,0,0,344,2639380016,2525,229152,0.404015,0.404015,5.716e-3,7.201263e-3
+filtering/filter-even/streaming,16,0.447082037,981308964,0.444588,0.0,0.0,3448832,0,0,0,522,2814990496,2693,244392,0.430352,0.430352,6.143e-3,7.755078e-3
+filtering/filter-even/streaming,17,0.461402255,1012740640,0.460342,0.0,0.0,3448832,0,0,0,275,2991645912,2862,259808,0.448198,0.448198,5.561e-3,7.225388e-3
+filtering/filter-even/streaming,18,0.50097412,1099597712,0.500443,0.0,0.0,3448832,0,0,0,170,3167256144,3030,274664,0.488146,0.488146,5.578e-3,7.318775e-3
+filtering/filter-even/streaming,19,0.520961686,1143468788,0.517807,0.0,0.0,3448832,0,0,0,582,3343911616,3199,290024,0.502429,0.502429,6.81e-3,8.61695e-3
+filtering/filter-all-out/vector,1,8.374486e-3,18381290,8.303e-3,8.121e-3,0.0,3444736,1,0,0,17,79376432,76,4248,7.836e-3,7.836e-3,2.88e-4,3.41994e-4
+filtering/filter-all-out/vector,2,1.5770741e-2,34615498,1.5721e-2,0.0,0.0,3452928,0,0,0,17,159805392,153,6800,1.4987e-2,1.4987e-2,3.84e-4,4.87744e-4
+filtering/filter-all-out/vector,3,2.5338396e-2,55615712,2.5145e-2,0.0,0.0,3452928,0,0,0,41,239185840,229,9304,2.4006e-2,2.4006e-2,5.23e-4,6.62123e-4
+filtering/filter-all-out/vector,4,3.2852672e-2,72108949,3.2705e-2,0.0,0.0,3452928,0,0,0,42,319610720,306,11856,3.1346e-2,3.1346e-2,6.79e-4,8.46794e-4
+filtering/filter-all-out/vector,5,4.2123734e-2,92458179,4.2031e-2,0.0,0.0,3452928,0,0,0,23,398991216,382,14376,4.0437e-2,4.0437e-2,7.96e-4,1.018456e-3
+filtering/filter-all-out/vector,6,4.9421534e-2,108476268,4.9278e-2,0.0,0.0,3452928,0,0,0,35,479416144,459,16928,4.7425e-2,4.7425e-2,8.45e-4,1.110689e-3
+filtering/filter-all-out/vector,7,5.8132693e-2,127596594,5.8e-2,0.0,0.0,3452928,0,0,0,27,559841072,536,19480,5.5979e-2,5.5979e-2,9.92e-4,1.276115e-3
+filtering/filter-all-out/vector,8,6.4508227e-2,141590350,6.4434e-2,0.0,0.0,3452928,0,0,0,32,639221416,612,22000,6.2192e-2,6.2192e-2,1.081e-3,1.391027e-3
+filtering/filter-all-out/vector,9,7.0525384e-2,154797514,7.0221e-2,0.0,0.0,3452928,0,0,0,12,719646448,689,24552,6.7834e-2,6.7834e-2,1.219e-3,1.559385e-3
+filtering/filter-all-out/vector,10,7.5033851e-2,164693248,7.5056e-2,0.0,0.0,3452928,0,0,0,8,799026896,765,27072,7.2671e-2,7.2671e-2,1.229e-3,1.584815e-3
+filtering/filter-all-out/vector,11,9.0671777e-2,199017250,9.0598e-2,0.0,0.0,3452928,0,0,0,13,879451824,842,29624,8.775e-2,8.775e-2,1.414e-3,1.844089e-3
+filtering/filter-all-out/vector,12,9.84051e-2,215991197,9.8335e-2,0.0,0.0,3452928,0,0,0,26,959876704,919,32176,9.5143e-2,9.5143e-2,1.562e-3,2.069267e-3
+filtering/filter-all-out/vector,13,0.109642267,240655909,0.109493,0.0,0.0,3514368,9,0,0,50,1039257200,995,34696,0.10545,0.10545,1.808e-3,2.437364e-3
+filtering/filter-all-out/vector,14,0.121132134,265875212,0.120436,0.0,0.0,3514368,0,0,0,134,1119682128,1072,37248,0.115497,0.115497,2.217e-3,2.839851e-3
+filtering/filter-all-out/vector,15,0.11985556,263073288,0.119676,0.0,0.0,3514368,0,0,0,54,1199062576,1148,39768,0.115013,0.115013,1.991e-3,2.610079e-3
+filtering/filter-all-out/vector,16,0.136368101,299316980,0.135916,0.0,0.0,3514368,0,0,0,79,1279487504,1225,42320,0.13071,0.13071,2.415e-3,3.063865e-3
+filtering/filter-all-out/vector,17,0.141820987,311285580,0.141642,0.0,0.0,3514368,0,0,0,59,1359912408,1302,44872,0.13682,0.13682,2.338e-3,3.067182e-3
+filtering/filter-all-out/vector,18,0.14451848,317206382,0.14435,0.0,0.0,3514368,0,0,0,44,1439292880,1378,47392,0.139409,0.139409,2.422e-3,3.117978e-3
+filtering/filter-all-out/vector,19,0.156248864,342953626,0.155834,0.0,0.0,3514368,0,0,0,75,1519717808,1455,49944,0.150012,0.150012,2.775e-3,3.60664e-3
+filtering/filter-all-out/vector,20,0.168724145,370335842,0.168419,0.0,0.0,3514368,0,0,0,67,1599098256,1531,52464,0.162482,0.162482,2.798e-3,3.588912e-3
+filtering/filter-all-out/vector,21,0.181536115,398457098,0.181265,0.0,0.0,3514368,0,0,0,75,1679523080,1608,55016,0.174884,0.174884,3.025e-3,3.923076e-3
+filtering/filter-all-out/vector,22,0.177330361,389225808,0.177,0.0,0.0,3514368,0,0,0,79,1759948112,1685,57568,0.170551,0.170551,2.983e-3,3.851024e-3
+filtering/filter-all-out/vector,23,0.196731478,431809757,0.1962,0.0,0.0,3514368,0,0,0,143,1839328560,1761,60088,0.188393,0.188393,3.507e-3,4.484899e-3
+filtering/filter-all-out/vector,25,0.204523262,448912004,0.203886,0.0,0.0,3514368,0,0,0,140,1999133936,1914,65160,0.196479,0.196479,3.486e-3,4.548889e-3
+filtering/filter-all-out/vector,26,0.225179756,494251334,0.224606,0.0,0.0,3514368,0,0,0,145,2079558816,1991,67712,0.216344,0.216344,3.798e-3,5.03392e-3
+filtering/filter-all-out/vector,27,0.225704671,495403512,0.224284,0.0,0.0,3514368,0,0,0,237,2159983792,2068,70264,0.215476,0.215476,3.932e-3,5.084007e-3
+filtering/filter-all-out/vector,28,0.234143453,513925954,0.233764,0.0,0.0,3514368,0,0,0,82,2239364240,2144,72784,0.225524,0.225524,3.917e-3,5.059193e-3
+filtering/filter-all-out/vector,30,0.23922938,525089182,0.238894,0.0,0.0,3514368,0,0,0,109,2399169616,2297,77856,0.230642,0.230642,3.896e-3,5.09586e-3
+filtering/filter-all-out/vector,31,0.270893822,594590042,0.270012,0.0,0.0,3514368,0,0,0,184,2479594544,2374,80408,0.260024,0.260024,4.63e-3,5.963438e-3
+filtering/filter-all-out/vector,33,0.270903213,594610644,0.270643,0.0,0.0,3514368,0,0,0,75,2639399896,2527,85480,0.261775,0.261775,4.216e-3,5.513722e-3
+filtering/filter-all-out/vector,35,0.300589218,659769046,0.300327,0.0,0.0,3514368,0,0,0,86,2799205296,2680,90552,0.290508,0.290508,4.583e-3,6.098529e-3
+filtering/filter-all-out/vector,36,0.306026103,671702570,0.304953,0.0,0.0,3514368,0,0,0,198,2879630224,2757,93104,0.294036,0.294036,5.086e-3,6.607105e-3
+filtering/filter-all-out/vector,38,0.305430845,670396052,0.304653,0.0,0.0,3514368,0,0,0,98,3039435600,2910,98176,0.294661,0.294661,4.713e-3,6.269387e-3
+filtering/filter-all-out/vector,40,0.342888424,752612334,0.341511,0.0,0.0,3514368,0,0,0,233,3199240872,3063,103248,0.328816,0.328816,5.75e-3,7.638049e-3
+filtering/filter-all-out/streamly,1,1.9187272e-2,42114517,1.9187e-2,1.8956e-2,0.0,3436544,1,0,0,8,95989888,93,3560,1.8702e-2,1.8702e-2,2.57e-4,3.19623e-4
+filtering/filter-all-out/streamly,2,3.4827667e-2,76443924,3.4751e-2,0.0,0.0,3448832,0,0,0,24,191987800,186,5424,3.3869e-2,3.3869e-2,4.11e-4,5.19698e-4
+filtering/filter-all-out/streamly,3,4.8122011e-2,105623906,4.7973e-2,0.0,0.0,3448832,0,0,0,41,287981744,279,7272,4.6732e-2,4.6732e-2,5.8e-4,7.25467e-4
+filtering/filter-all-out/streamly,4,6.8967204e-2,151377438,6.8761e-2,0.0,0.0,3448832,0,0,0,53,383975696,372,9136,6.695e-2,6.695e-2,8.08e-4,1.029932e-3
+filtering/filter-all-out/streamly,5,8.5796477e-2,188316336,8.5356e-2,0.0,0.0,3448832,0,0,0,95,479969632,465,11000,8.3027e-2,8.3027e-2,1.025e-3,1.277548e-3
+filtering/filter-all-out/streamly,6,0.101814565,223474751,0.100994,0.0,0.0,3448832,0,0,0,141,575963576,558,12864,9.8075e-2,9.8075e-2,1.216e-3,1.542119e-3
+filtering/filter-all-out/streamly,7,0.11569082,253931994,0.115349,0.0,0.0,3448832,0,0,0,97,671957520,651,14728,0.112488,0.112488,1.254e-3,1.610936e-3
+filtering/filter-all-out/streamly,8,0.136615606,299860180,0.136507,0.0,0.0,3448832,0,0,0,44,767951408,744,16592,0.133398,0.133398,1.463e-3,1.819581e-3
+filtering/filter-all-out/streamly,9,0.154347024,338779242,0.153335,0.0,0.0,3448832,0,0,0,104,863945408,837,18456,0.149465,0.149465,1.64e-3,2.089749e-3
+filtering/filter-all-out/streamly,10,0.15641124,343310032,0.155895,0.0,0.0,3448832,0,0,0,38,959939352,930,20320,0.152854,0.152854,1.419e-3,1.851295e-3
+filtering/filter-all-out/streamly,11,0.177819791,390300078,0.177565,0.0,0.0,3448832,0,0,0,62,1055933296,1023,22184,0.173727,0.173727,1.634e-3,2.2111e-3
+filtering/filter-all-out/streamly,12,0.200144436,439300859,0.199867,0.0,0.0,3448832,0,0,0,80,1151927240,1116,24048,0.195441,0.195441,2.048e-3,2.636576e-3
+filtering/filter-all-out/streamly,13,0.214065515,469856492,0.214068,0.0,0.0,3448832,0,0,0,40,1247921184,1209,25912,0.209901,0.209901,1.949e-3,2.538861e-3
+filtering/filter-all-out/streamly,14,0.231685724,508531426,0.231565,0.0,0.0,3448832,0,0,0,67,1343915128,1302,27776,0.226692,0.226692,2.156e-3,2.81921e-3
+filtering/filter-all-out/streamly,15,0.242188531,531584288,0.242116,0.0,0.0,3448832,0,0,0,58,1439909072,1395,29640,0.237257,0.237257,2.2e-3,2.94692e-3
+filtering/filter-all-out/streamly,16,0.25371646,556887078,0.253619,0.0,0.0,3448832,0,0,0,63,1535903016,1488,31504,0.248391,0.248391,2.294e-3,3.079638e-3
+filtering/filter-all-out/streamly,17,0.285517792,626688428,0.285381,0.0,0.0,3448832,0,0,0,74,1631896984,1581,33368,0.279383,0.279383,2.71e-3,3.524035e-3
+filtering/filter-all-out/streamly,18,0.288173984,632518596,0.287903,0.0,0.0,3448832,0,0,0,89,1727890904,1674,35232,0.281653,0.281653,2.882e-3,3.756531e-3
+filtering/filter-all-out/streamly,19,0.313533994,688181770,0.313419,0.0,0.0,3448832,0,0,0,88,1823884848,1767,37096,0.307033,0.307033,2.925e-3,3.869604e-3
+filtering/filter-all-out/streamly,20,0.316526505,694750074,0.316468,0.0,0.0,3448832,0,0,0,69,1919878792,1860,38960,0.310022,0.310022,2.943e-3,3.887811e-3
+filtering/filter-all-out/streamly,21,0.338893244,743843286,0.338746,0.0,0.0,3448832,0,0,0,97,2015872680,1953,40824,0.331855,0.331855,3.086e-3,4.107547e-3
+filtering/filter-all-out/streamly,22,0.357645258,785002442,0.357472,0.0,0.0,3448832,0,0,0,108,2111866680,2046,42688,0.350217,0.350217,3.263e-3,4.330608e-3
+filtering/filter-all-out/streamly,23,0.378404529,830567350,0.378051,0.0,0.0,3448832,0,0,0,125,2207860624,2139,44552,0.370207,0.370207,3.49e-3,4.550998e-3
+filtering/filter-all-out/streamly,25,0.395137908,867295752,0.394768,0.0,0.0,3448832,0,0,0,167,2399848512,2325,48280,0.386555,0.386555,3.624e-3,4.764743e-3
+filtering/filter-all-out/streamly,26,0.420437679,922826718,0.420063,0.0,0.0,3448832,0,0,0,144,2495842456,2418,50144,0.411365,0.411365,3.84e-3,5.100775e-3
+filtering/filter-all-out/streaming,1,1.3588367e-2,29825362,1.3596e-2,1.3404e-2,0.0,3416064,1,0,0,1,143470752,139,8488,1.3131e-2,1.3131e-2,2.74e-4,3.50667e-4
+filtering/filter-all-out/streaming,2,3.2594898e-2,71543166,3.2495e-2,0.0,0.0,3428352,0,0,0,7,287981760,279,15296,3.1429e-2,3.1429e-2,5.59e-4,7.29507e-4
+filtering/filter-all-out/streaming,3,4.3069983e-2,94535155,4.3065e-2,0.0,0.0,3428352,0,0,0,7,431456560,418,22040,4.1675e-2,4.1675e-2,7.12e-4,9.13677e-4
+filtering/filter-all-out/streaming,4,6.381238e-2,140063007,6.3751e-2,0.0,0.0,3428352,0,0,0,10,575963560,558,28848,6.1696e-2,6.1696e-2,1.046e-3,1.325503e-3
+filtering/filter-all-out/streaming,5,7.6890834e-2,168769162,7.6856e-2,0.0,0.0,3428352,0,0,0,17,719438352,697,35608,7.4325e-2,7.4325e-2,1.212e-3,1.586596e-3
+filtering/filter-all-out/streaming,6,9.2554027e-2,203148618,9.2532e-2,0.0,0.0,3428352,0,0,0,21,863945344,837,42416,8.9484e-2,8.9484e-2,1.485e-3,1.930678e-3
+filtering/filter-all-out/streaming,7,0.113326065,248741546,0.113174,0.0,0.0,3428352,0,0,0,30,1007420144,976,49176,0.109477,0.109477,1.854e-3,2.396306e-3
+filtering/filter-all-out/streaming,8,0.109965746,241365924,0.109958,0.0,0.0,3428352,0,0,0,13,1151927080,1116,55984,0.106595,0.106595,1.663e-3,2.206637e-3
+filtering/filter-all-out/streaming,9,0.129075375,283310012,0.129026,0.0,0.0,3428352,0,0,0,27,1295401936,1255,62744,0.124968,0.124968,1.975e-3,2.61171e-3
+filtering/filter-all-out/streaming,10,0.158553056,348011142,0.158388,0.0,0.0,3428352,0,0,0,63,1439908928,1395,69552,0.153062,0.153062,2.592e-3,3.353281e-3
+filtering/filter-all-out/streaming,11,0.167095664,366761486,0.166804,0.0,0.0,3428352,0,0,0,60,1583383728,1534,76312,0.161076,0.161076,2.636e-3,3.438868e-3
+filtering/filter-all-out/streaming,12,0.179887246,394837935,0.179907,0.0,0.0,3428352,0,0,0,29,1727890720,1674,83120,0.174319,0.174319,2.754e-3,3.636601e-3
+filtering/filter-all-out/streaming,13,0.196493471,431287329,0.19637,0.0,0.0,3428352,0,0,0,73,1871365520,1813,89880,0.189457,0.189457,3.308e-3,4.218527e-3
+filtering/filter-all-out/streaming,14,0.212381386,466159956,0.212219,0.0,0.0,3428352,0,0,0,62,2015872512,1953,96688,0.205436,0.205436,3.275e-3,4.28923e-3
+filtering/filter-all-out/streaming,15,0.221869321,486985228,0.221808,0.0,0.0,3428352,0,0,0,49,2159347312,2092,103448,0.214736,0.214736,3.409e-3,4.519188e-3
+filtering/filter-all-out/streaming,16,0.245278659,538366840,0.245095,0.0,0.0,3428352,0,0,0,67,2303854304,2232,110256,0.237149,0.237149,3.765e-3,4.926772e-3
+filtering/filter-all-out/streaming,17,0.260363988,571477914,0.260076,0.0,0.0,3428352,0,0,0,93,2447329128,2371,117016,0.251292,0.251292,4.172e-3,5.402069e-3
+filtering/filter-all-out/streaming,18,0.259451303,569474642,0.259435,0.0,0.0,3428352,0,0,0,50,2591836096,2511,123824,0.251375,0.251375,3.858e-3,5.157377e-3
+filtering/filter-all-out/streaming,19,0.276511563,606920540,0.276519,0.0,0.0,3428352,0,0,0,55,2735310896,2650,130584,0.267783,0.267783,4.252e-3,5.577746e-3
+filtering/filter-all-out/streaming,20,0.289973911,636469307,0.290044,0.0,0.0,3428352,0,0,0,37,2879817888,2790,137392,0.281217,0.281217,4.328e-3,5.740518e-3
+filtering/filter-all-out/streaming,21,0.305964687,671567738,0.305818,0.0,0.0,3428352,0,0,0,78,3023292632,2929,144152,0.296154,0.296154,4.621e-3,6.125894e-3
+filtering/filter-all-out/streaming,22,0.334159511,733453141,0.333926,0.0,0.0,3428352,0,0,0,99,3167799680,3069,150960,0.322895,0.322895,5.16e-3,6.758255e-3
+filtering/filter-all-out/streaming,23,0.331413168,727425089,0.331481,0.0,0.0,3428352,0,0,0,46,3311274480,3208,157720,0.321271,0.321271,5.0e-3,6.619177e-3
+filtering/filter-all-out/streaming,25,0.370583605,813401095,0.370216,0.0,0.0,3428352,0,0,0,147,3599256272,3487,171288,0.357894,0.357894,5.765e-3,7.58865e-3
+filtering/filter-all-out/streaming,26,0.396942401,871256490,0.396473,0.0,0.0,3428352,0,0,0,116,3743763264,3627,178096,0.383155,0.383155,6.467e-3,8.386258e-3
+filtering/filter-all-out/streaming,27,0.404602603,888069974,0.404347,0.0,0.0,3428352,0,0,0,113,3887238064,3766,184856,0.390678,0.390678,6.412e-3,8.331221e-3
+filtering/filter-all-in/vector,1,8.947586e-3,19639243,8.951e-3,8.813e-3,0.0,3424256,1,0,0,2,79376432,76,4248,8.586e-3,8.586e-3,2.31e-4,2.77105e-4
+filtering/filter-all-in/vector,2,1.7033282e-2,37386654,1.7024e-2,0.0,0.0,3432448,0,0,0,5,159805392,153,6800,1.6297e-2,1.6297e-2,4.05e-4,4.74427e-4
+filtering/filter-all-in/vector,3,2.5160362e-2,55224974,2.5121e-2,0.0,0.0,3432448,0,0,0,15,239185840,229,9304,2.4148e-2,2.4148e-2,5.26e-4,6.32701e-4
+filtering/filter-all-in/vector,4,3.5904513e-2,78807516,3.5762e-2,0.0,0.0,3432448,0,0,0,35,319610712,306,11856,3.4355e-2,3.4355e-2,7.02e-4,8.79202e-4
+filtering/filter-all-in/vector,5,4.2213179e-2,92654518,4.2148e-2,0.0,0.0,3432448,0,0,0,15,398991216,382,14376,4.0631e-2,4.0631e-2,7.43e-4,9.39488e-4
+filtering/filter-all-in/vector,6,5.1760778e-2,113610724,5.1699e-2,0.0,0.0,3432448,0,0,0,26,479416144,459,16928,4.9849e-2,4.9849e-2,9.01e-4,1.145488e-3
+filtering/filter-all-in/vector,7,5.8504451e-2,128412560,5.8505e-2,0.0,0.0,3432448,0,0,0,14,559841072,536,19480,5.6543e-2,5.6543e-2,9.54e-4,1.242303e-3
+filtering/filter-all-in/vector,8,6.8003736e-2,149262684,6.7925e-2,0.0,0.0,3432448,0,0,0,21,639221416,612,22000,6.5597e-2,6.5597e-2,1.15e-3,1.462016e-3
+filtering/filter-all-in/vector,9,7.3325191e-2,160942874,7.3115e-2,0.0,0.0,3432448,0,0,0,43,719646448,689,24552,7.0328e-2,7.0328e-2,1.283e-3,1.6244e-3
+filtering/filter-all-in/vector,10,8.3382487e-2,183017814,8.2908e-2,0.0,0.0,3432448,0,0,0,31,799026896,765,27072,7.9904e-2,7.9904e-2,1.505e-3,1.996858e-3
+filtering/filter-all-in/vector,11,8.3310665e-2,182860216,8.3332e-2,0.0,0.0,3432448,0,0,0,11,879451824,842,29624,8.0779e-2,8.0779e-2,1.302e-3,1.705772e-3
+filtering/filter-all-in/vector,12,9.5065943e-2,208662016,9.5056e-2,0.0,0.0,3432448,0,0,0,21,959876704,919,32176,9.1864e-2,9.1864e-2,1.619e-3,2.091853e-3
+filtering/filter-all-in/vector,13,0.103171869,226453948,0.103195,0.0,0.0,3493888,9,0,0,25,1039257200,995,34696,9.9767e-2,9.9767e-2,1.634e-3,2.185758e-3
+filtering/filter-all-in/vector,14,0.114333154,250951998,0.114324,0.0,0.0,3493888,0,0,0,17,1119682128,1072,37248,0.110674,0.110674,1.79e-3,2.353807e-3
+filtering/filter-all-in/vector,15,0.115940187,254479340,0.115827,0.0,0.0,3493888,0,0,0,50,1199062576,1148,39768,0.112047,0.112047,1.845e-3,2.39989e-3
+filtering/filter-all-in/vector,16,0.127476881,279801444,0.127439,0.0,0.0,3493888,0,0,0,24,1279487504,1225,42320,0.123401,0.123401,1.95e-3,2.635999e-3
+filtering/filter-all-in/vector,17,0.140316893,307984240,0.140187,0.0,0.0,3493888,0,0,0,57,1359912408,1302,44872,0.135296,0.135296,2.284e-3,3.038669e-3
+filtering/filter-all-in/vector,18,0.1476482,324075868,0.14756,0.0,0.0,3493888,0,0,0,37,1439292880,1378,47392,0.142743,0.142743,2.298e-3,2.9863e-3
+filtering/filter-all-in/vector,19,0.159074522,349155730,0.158926,0.0,0.0,3493888,0,0,0,56,1519717808,1455,49944,0.153627,0.153627,2.535e-3,3.323158e-3
+filtering/filter-all-in/vector,20,0.163359184,358560206,0.163171,0.0,0.0,3493888,0,0,0,50,1599098256,1531,52464,0.157839,0.157839,2.529e-3,3.314046e-3
+filtering/filter-all-in/vector,21,0.174431457,382862946,0.174271,0.0,0.0,3493888,0,0,0,49,1679523080,1608,55016,0.168452,0.168452,2.653e-3,3.550045e-3
+filtering/filter-all-in/vector,22,0.175246352,384651580,0.175182,0.0,0.0,3493888,0,0,0,45,1759948112,1685,57568,0.169588,0.169588,2.688e-3,3.600274e-3
+filtering/filter-all-in/vector,23,0.183214006,402139946,0.183182,0.0,0.0,3493888,0,0,0,42,1839328560,1761,60088,0.17738,0.17738,2.825e-3,3.710444e-3
+filtering/filter-all-in/vector,25,0.197983999,434558854,0.197895,0.0,0.0,3493888,0,0,0,48,1999133936,1914,65160,0.191548,0.191548,3.095e-3,4.0806e-3
+filtering/filter-all-in/vector,26,0.217614373,477645978,0.217442,0.0,0.0,3493888,0,0,0,63,2079558816,1991,67712,0.210172,0.210172,3.453e-3,4.515354e-3
+filtering/filter-all-in/vector,27,0.220186215,483291772,0.220085,0.0,0.0,3493888,0,0,0,65,2159983792,2068,70264,0.212622,0.212622,3.491e-3,4.537453e-3
+filtering/filter-all-in/vector,28,0.214724131,471302093,0.214785,0.0,0.0,3493888,0,0,0,34,2239364240,2144,72784,0.208047,0.208047,3.321e-3,4.404632e-3
+filtering/filter-all-in/vector,30,0.242000739,531172068,0.241955,0.0,0.0,3493888,0,0,0,49,2399169616,2297,77856,0.234101,0.234101,3.813e-3,4.988633e-3
+filtering/filter-all-in/vector,31,0.269340606,591180860,0.268859,0.0,0.0,3493888,0,0,0,74,2479594544,2374,80408,0.260159,0.260159,4.129e-3,5.470476e-3
+filtering/filter-all-in/vector,33,0.277344918,608749686,0.276809,0.0,0.0,3493888,0,0,0,161,2639399880,2527,85480,0.267514,0.267514,4.339e-3,5.678563e-3
+filtering/filter-all-in/vector,35,0.278215957,610661548,0.277783,0.0,0.0,3493888,0,0,0,107,2799205296,2680,90552,0.268848,0.268848,4.303e-3,5.655639e-3
+filtering/filter-all-in/vector,36,0.281391187,617630891,0.281452,0.0,0.0,3493888,0,0,0,50,2879630224,2757,93104,0.272564,0.272564,4.33e-3,5.740531e-3
+filtering/filter-all-in/vector,38,0.320243849,702909374,0.319883,0.0,0.0,3493888,0,0,0,81,3039435600,2910,98176,0.309736,0.309736,4.862e-3,6.449553e-3
+filtering/filter-all-in/vector,40,0.33058592,725609386,0.33056,0.0,0.0,3493888,0,0,0,62,3199240872,3063,103248,0.320354,0.320354,4.839e-3,6.477256e-3
+filtering/filter-all-in/streamly,1,2.4262383e-2,53253992,2.4259e-2,2.3974e-2,0.0,3432448,1,0,0,4,199880744,192,18344,2.3566e-2,2.3566e-2,4.11e-4,5.05262e-4
+filtering/filter-all-in/streamly,2,5.7767524e-2,126795027,5.7733e-2,0.0,0.0,3440640,0,0,0,14,399769600,384,34992,5.605e-2,5.605e-2,8.8e-4,1.096115e-3
+filtering/filter-all-in/streamly,3,8.146179e-2,178802076,8.1499e-2,0.0,0.0,3440640,0,0,0,19,599654408,576,51624,7.9092e-2,7.9092e-2,1.184e-3,1.528114e-3
+filtering/filter-all-in/streamly,4,0.105584642,231749772,0.105564,0.0,0.0,3440640,0,0,0,30,799539144,768,68272,0.102496,0.102496,1.492e-3,1.893495e-3
+filtering/filter-all-in/streamly,5,0.120248431,263935598,0.120164,0.0,0.0,3440640,0,0,0,28,999423968,960,84920,0.11673,0.11673,1.734e-3,2.178435e-3
+filtering/filter-all-in/streamly,6,0.150201955,329681166,0.150029,0.0,0.0,3440640,0,0,0,62,1199308776,1152,101568,0.14557,0.14557,2.229e-3,2.790332e-3
+filtering/filter-all-in/streamly,7,0.18193025,399322174,0.181707,0.0,0.0,3440640,0,0,0,53,1399193560,1344,118216,0.176546,0.176546,2.497e-3,3.22709e-3
+filtering/filter-all-in/streamly,8,0.199204548,437237880,0.199138,0.0,0.0,3440640,0,0,0,50,1599078264,1536,134864,0.193629,0.193629,2.768e-3,3.499255e-3
+filtering/filter-all-in/streamly,9,0.220761799,484554314,0.220757,0.0,0.0,3440640,0,0,0,51,1800004192,1729,151568,0.2146,0.2146,3.091e-3,3.898248e-3
+filtering/filter-all-in/streamly,10,0.252240545,553647610,0.252069,0.0,0.0,3440640,0,0,0,78,1999889000,1921,168216,0.244859,0.244859,3.54e-3,4.526218e-3
+filtering/filter-all-in/streamly,11,0.284610187,624696348,0.284382,0.0,0.0,3440640,0,0,0,88,2199773784,2113,184864,0.276356,0.276356,3.975e-3,5.113597e-3
+filtering/filter-all-in/streamly,12,0.302361523,663659134,0.30221,0.0,0.0,3440640,0,0,0,85,2399658544,2305,201584,0.293549,0.293549,4.284e-3,5.483893e-3
+filtering/filter-all-in/streamly,13,0.337340053,740434122,0.337217,0.0,0.0,3502080,9,0,0,94,2599543368,2497,218160,0.327469,0.327469,4.876e-3,6.239608e-3
+filtering/filter-all-in/streamly,14,0.355929905,781237382,0.355746,0.0,0.0,3502080,0,0,0,97,2799428152,2689,234808,0.346017,0.346017,4.825e-3,6.249659e-3
+filtering/filter-all-in/streamly,15,0.388420808,852552272,0.388157,0.0,0.0,3502080,0,0,0,117,2999312928,2881,251456,0.376669,0.376669,5.514e-3,7.042982e-3
+filtering/filter-all-in/streamly,16,0.387352059,850206454,0.387306,0.0,0.0,3502080,0,0,0,68,3199197736,3073,268104,0.377166,0.377166,5.086e-3,6.587254e-3
+filtering/filter-all-in/streamly,17,0.430230649,944321494,0.430003,0.0,0.0,3502080,0,0,0,138,3399082496,3265,284824,0.417472,0.417472,6.172e-3,7.859984e-3
+filtering/filter-all-in/streamly,18,0.460762231,1011335850,0.460632,0.0,0.0,3502080,0,0,0,99,3600008376,3458,301472,0.447999,0.447999,6.159e-3,8.033544e-3
+filtering/filter-all-in/streamly,19,0.470363217,1032409208,0.470384,0.0,0.0,3502080,0,0,0,85,3799893152,3650,318120,0.457874,0.457874,6.259e-3,8.167512e-3
+filtering/filter-all-in/streamly,20,0.493856904,1083976002,0.493506,0.0,0.0,3502080,0,0,0,102,3999777960,3842,334768,0.479762,0.479762,6.826e-3,8.82424e-3
+filtering/filter-all-in/streaming,1,2.2318488e-2,48987288,2.2343e-2,2.205e-2,0.0,3416064,1,0,0,2,207343664,198,20296,2.1669e-2,2.1669e-2,3.82e-4,4.79316e-4
+filtering/filter-all-in/streaming,2,4.472479e-2,98167292,4.4704e-2,0.0,0.0,3428352,0,0,0,9,415742560,397,38928,4.324e-2,4.324e-2,7.43e-4,9.39569e-4
+filtering/filter-all-in/streaming,3,7.0493461e-2,154727450,7.0073e-2,0.0,0.0,3428352,0,0,0,18,623090272,595,57480,6.7865e-2,6.7865e-2,1.086e-3,1.408235e-3
+filtering/filter-all-in/streaming,4,9.6316259e-2,211406442,9.6343e-2,0.0,0.0,3428352,0,0,0,17,831485144,794,76192,9.3431e-2,9.3431e-2,1.472e-3,1.886665e-3
+filtering/filter-all-in/streaming,5,0.122701068,269318906,0.122748,0.0,0.0,3428352,0,0,0,24,1039880032,993,94744,0.118876,0.118876,1.944e-3,2.49448e-3
+filtering/filter-all-in/streaming,6,0.13844344,303872152,0.138455,0.0,0.0,3428352,0,0,0,28,1247227744,1191,113312,0.134247,0.134247,2.126e-3,2.737122e-3
+filtering/filter-all-in/streaming,7,0.159163855,349351786,0.158939,0.0,0.0,3428352,0,0,0,38,1455622656,1390,131944,0.154226,0.154226,2.398e-3,3.104038e-3
+filtering/filter-all-in/streaming,8,0.180060183,395217552,0.180023,0.0,0.0,3428352,0,0,0,34,1662970248,1588,150672,0.174571,0.174571,2.729e-3,3.525951e-3
+filtering/filter-all-in/streaming,9,0.21565421,473343562,0.215392,0.0,0.0,3428352,0,0,0,73,1871365280,1787,169144,0.208557,0.208557,3.306e-3,4.271223e-3
+filtering/filter-all-in/streaming,10,0.232691299,510738638,0.23269,0.0,0.0,3428352,0,0,0,51,2079760208,1986,187816,0.225675,0.225675,3.58e-3,4.616576e-3
+filtering/filter-all-in/streaming,11,0.253367246,556120637,0.253334,0.0,0.0,3428352,0,0,0,41,2287107904,2184,206384,0.246024,0.246024,3.766e-3,4.852374e-3
+filtering/filter-all-in/streaming,12,0.280432891,615527520,0.28042,0.0,0.0,3428352,0,0,0,49,2495502768,2383,225272,0.27205,0.27205,4.181e-3,5.424998e-3
+filtering/filter-all-in/streaming,13,0.294089136,645501876,0.294135,0.0,0.0,3428352,0,0,0,38,2703897744,2582,243736,0.28571,0.28571,4.256e-3,5.59385e-3
+filtering/filter-all-in/streaming,14,0.32705472,717858684,0.326898,0.0,0.0,3428352,0,0,0,90,2911245456,2780,262304,0.316559,0.316559,5.07e-3,6.588264e-3
+filtering/filter-all-in/streaming,15,0.361351698,793137822,0.361014,0.0,0.0,3428352,0,0,0,135,3119640368,2979,280984,0.34969,0.34969,5.448e-3,7.101359e-3
+filtering/filter-all-in/streaming,16,0.377879985,829415990,0.377083,0.0,0.0,3428352,0,0,0,152,3326988080,3177,299552,0.364339,0.364339,6.136e-3,7.855527e-3
+filtering/filter-all-in/streaming,17,0.385920601,847064556,0.385848,0.0,0.0,3428352,0,0,0,71,3535382952,3376,318304,0.374248,0.374248,5.704e-3,7.400529e-3
+filtering/filter-all-in/streaming,18,0.427749195,938874886,0.427695,0.0,0.0,3428352,0,0,0,97,3743777904,3575,336864,0.414281,0.414281,6.535e-3,8.490242e-3
+filtering/filter-all-in/streaming,19,0.44743306,982079400,0.44683,0.0,0.0,3428352,0,0,0,145,3951125616,3773,355432,0.432748,0.432748,7.001e-3,8.995553e-3
+filtering/filter-all-in/streaming,20,0.463281117,1016864623,0.463159,0.0,0.0,3428352,1,0,0,83,4159520528,3972,374064,0.449522,0.449522,6.793e-3,8.893621e-3
+filtering/filter-all-in/streaming,21,0.482649781,1059377269,0.482327,0.0,0.0,3428352,0,0,0,101,4367915336,4171,392896,0.46801,0.46801,7.219e-3,9.363658e-3
+filtering/take-all/vector,1,7.029018e-3,15428122,7.036e-3,6.932e-3,0.0,3424256,1,0,0,1,79376376,76,4248,6.749e-3,6.749e-3,1.84e-4,2.21844e-4
+filtering/take-all/vector,2,1.4153362e-2,31065474,1.4155e-2,0.0,0.0,3432448,0,0,0,3,159805440,153,6800,1.3631e-2,1.3631e-2,2.87e-4,3.63752e-4
+filtering/take-all/vector,3,2.0489369e-2,44972520,2.0502e-2,0.0,0.0,3432448,0,0,0,2,239185912,229,9304,1.973e-2,1.973e-2,4.18e-4,5.22852e-4
+filtering/take-all/vector,4,2.8424243e-2,62388918,2.8423e-2,0.0,0.0,3432448,0,0,0,4,319610792,306,11856,2.7314e-2,2.7314e-2,6.13e-4,7.78312e-4
+filtering/take-all/vector,5,3.6395225e-2,79884598,3.6374e-2,0.0,0.0,3432448,0,0,0,9,398991336,382,14376,3.4975e-2,3.4975e-2,7.0e-4,8.91754e-4
+filtering/take-all/vector,6,4.3602495e-2,95703944,4.3613e-2,0.0,0.0,3432448,0,0,0,7,479416288,459,16928,4.208e-2,4.208e-2,7.91e-4,1.010265e-3
+filtering/take-all/vector,7,5.0039178e-2,109831952,4.9948e-2,0.0,0.0,3432448,0,0,0,28,559841240,536,19480,4.7867e-2,4.7867e-2,9.79e-4,1.233337e-3
+filtering/take-all/vector,8,5.9435437e-2,130455991,5.9431e-2,0.0,0.0,3432448,0,0,0,11,639221608,612,22000,5.7406e-2,5.7406e-2,1.026e-3,1.333187e-3
+filtering/take-all/vector,9,6.4579516e-2,141746813,6.4589e-2,0.0,0.0,3432448,0,0,0,12,719646664,689,24552,6.2302e-2,6.2302e-2,1.145e-3,1.505481e-3
+filtering/take-all/vector,10,7.0080747e-2,153821570,7.0046e-2,0.0,0.0,3432448,0,0,0,13,799027136,765,27072,6.7453e-2,6.7453e-2,1.283e-3,1.675054e-3
+filtering/take-all/vector,11,8.1464794e-2,178808636,8.1366e-2,0.0,0.0,3432448,0,0,0,28,879452088,842,29624,7.8165e-2,7.8165e-2,1.616e-3,2.036054e-3
+filtering/take-all/vector,12,8.6006815e-2,188778004,8.5986e-2,0.0,0.0,3432448,0,0,0,15,959876992,919,32176,8.279e-2,8.279e-2,1.652e-3,2.091252e-3
+filtering/take-all/vector,13,0.101796665,223435468,0.101693,0.0,0.0,3493888,9,0,0,29,1039257512,995,34696,9.7947e-2,9.7947e-2,1.785e-3,2.326681e-3
+filtering/take-all/vector,14,9.5895792e-2,210483508,9.5934e-2,0.0,0.0,3493888,0,0,0,10,1119682464,1072,37248,9.2678e-2,9.2678e-2,1.629e-3,2.154178e-3
+filtering/take-all/vector,15,0.111666499,245098956,0.111543,0.0,0.0,3493888,0,0,0,35,1199062936,1148,39768,0.107575,0.107575,1.869e-3,2.485134e-3
+filtering/take-all/vector,16,0.113689832,249539984,0.113605,0.0,0.0,3493888,0,0,0,25,1279487888,1225,42320,0.109548,0.109548,1.993e-3,2.575835e-3
+filtering/take-all/vector,17,0.11827783,259610278,0.118347,0.0,0.0,3493888,0,0,0,13,1359912816,1302,44872,0.114229,0.114229,2.0e-3,2.616488e-3
+filtering/take-all/vector,18,0.135100601,296534914,0.135069,0.0,0.0,3493888,0,0,0,23,1439293312,1378,47392,0.130204,0.130204,2.367e-3,3.134868e-3
+filtering/take-all/vector,19,0.147430462,323597972,0.147459,0.0,0.0,3493888,0,0,0,25,1519718264,1455,49944,0.142406,0.142406,2.431e-3,3.24029e-3
+filtering/take-all/vector,20,0.143802001,315633785,0.143726,0.0,0.0,3493888,0,0,0,29,1599098656,1531,52464,0.138838,0.138838,2.389e-3,3.165023e-3
+filtering/take-all/vector,21,0.153900241,337798573,0.153522,0.0,0.0,3493888,0,0,0,84,1679523504,1608,55016,0.147804,0.147804,2.772e-3,3.618181e-3
+filtering/take-all/vector,22,0.157122768,344871858,0.157046,0.0,0.0,3493888,0,0,0,30,1759948560,1685,57568,0.151505,0.151505,2.726e-3,3.546606e-3
+filtering/take-all/vector,23,0.169756586,372601988,0.169489,0.0,0.0,3493888,0,0,0,35,1839329032,1761,60088,0.163557,0.163557,2.903e-3,3.794466e-3
+filtering/take-all/vector,25,0.184897996,405836165,0.184799,0.0,0.0,3493888,0,0,0,44,1999134456,1914,65160,0.178,0.178,3.216e-3,4.148082e-3
+filtering/take-all/vector,26,0.188399043,413520666,0.188409,0.0,0.0,3493888,0,0,0,31,2079559360,1991,67712,0.181801,0.181801,3.242e-3,4.281592e-3
+filtering/take-all/vector,27,0.192447071,422405744,0.192498,0.0,0.0,3493888,0,0,0,28,2159984360,2068,70264,0.185903,0.185903,3.269e-3,4.285009e-3
+filtering/take-all/vector,28,0.195532747,429178578,0.195574,0.0,0.0,3493888,0,0,0,30,2239364832,2144,72784,0.188439,0.188439,3.503e-3,4.573653e-3
+filtering/take-all/vector,30,0.225794206,495600051,0.225482,0.0,0.0,3493888,0,0,0,75,2399170256,2297,77856,0.217315,0.217315,3.979e-3,5.241481e-3
+filtering/take-all/vector,31,0.23188453,508967783,0.231786,0.0,0.0,3493888,0,0,0,61,2479595208,2374,80408,0.223692,0.223692,3.862e-3,5.140111e-3
+filtering/take-all/vector,33,0.240324295,527492433,0.239685,0.0,0.0,3493888,0,0,0,58,2639400608,2527,85480,0.231204,0.231204,4.201e-3,5.493568e-3
+filtering/take-all/vector,35,0.26071043,572238314,0.260628,0.0,0.0,3493888,0,0,0,46,2799206056,2680,90552,0.251745,0.251745,4.328e-3,5.751326e-3
+filtering/take-all/vector,36,0.26142067,573797208,0.261297,0.0,0.0,3497984,0,0,0,56,2879631008,2757,93104,0.251994,0.251994,4.573e-3,5.988564e-3
+filtering/take-all/vector,38,0.26737859,586874400,0.267341,0.0,0.0,3497984,0,0,0,44,3039436432,2910,98176,0.258106,0.258106,4.62e-3,6.113939e-3
+filtering/take-all/vector,40,0.285591963,626851297,0.285467,0.0,0.0,3497984,0,0,0,55,3199241752,3063,103248,0.275438,0.275438,4.729e-3,6.296054e-3
+filtering/take-all/vector,42,0.312230211,685320041,0.312008,0.0,0.0,3497984,0,0,0,60,3359047280,3216,108320,0.301006,0.301006,5.318e-3,7.073366e-3
+filtering/take-all/vector,44,0.325093558,713554082,0.325116,0.0,0.0,3497984,0,0,0,57,3519897184,3370,113424,0.313796,0.313796,5.466e-3,7.221162e-3
+filtering/take-all/streamly,1,2.0577905e-2,45166826,2.0594e-2,2.038e-2,0.0,3428352,1,0,0,2,159801352,153,15424,2.0081e-2,2.0081e-2,3.0e-4,3.7466e-4
+filtering/take-all/streamly,2,4.1367177e-2,90797610,4.1384e-2,0.0,0.0,3440640,0,0,0,5,319610848,306,29152,4.0431e-2,4.0431e-2,5.13e-4,6.60421e-4
+filtering/take-all/streamly,3,6.7050953e-2,147171434,6.7101e-2,0.0,0.0,3440640,0,0,0,7,479416312,459,42864,6.5516e-2,6.5516e-2,8.02e-4,1.054142e-3
+filtering/take-all/streamly,4,8.927792e-2,195957812,8.9273e-2,0.0,0.0,3440640,0,0,0,23,639221720,612,27216,8.7065e-2,8.7065e-2,1.069e-3,1.410053e-3
+filtering/take-all/streamly,5,0.111263611,244214636,0.111163,0.0,0.0,3440640,0,0,0,29,799027240,765,70320,0.108178,0.108178,1.466e-3,1.859783e-3
+filtering/take-all/streamly,6,0.127794188,280497902,0.127747,0.0,0.0,3440640,0,0,0,18,959877184,919,84136,0.124776,0.124776,1.53e-3,1.977931e-3
+filtering/take-all/streamly,7,0.160207909,351643450,0.160195,0.0,0.0,3440640,0,0,0,32,1119682648,1072,97864,0.15617,0.15617,1.995e-3,2.565207e-3
+filtering/take-all/streamly,8,0.170344173,373891656,0.170343,0.0,0.0,3440640,0,0,0,34,1279488016,1225,52792,0.166139,0.166139,2.131e-3,2.678997e-3
+filtering/take-all/streamly,9,0.194929265,427854000,0.194753,0.0,0.0,3440640,0,0,0,37,1439293576,1378,125320,0.190007,0.190007,2.379e-3,3.056881e-3
+filtering/take-all/streamly,10,0.228314421,501131710,0.228122,0.0,0.0,3440640,0,0,0,47,1599099040,1531,139048,0.222353,0.222353,2.858e-3,3.63504e-3
+filtering/take-all/streamly,11,0.233895464,513381638,0.233915,0.0,0.0,3440640,0,0,0,31,1759948984,1685,152864,0.228331,0.228331,2.78e-3,3.621346e-3
+filtering/take-all/streamly,12,0.255510258,560824364,0.255469,0.0,0.0,3440640,0,0,0,43,1919754408,1838,78368,0.249591,0.249591,2.931e-3,3.780556e-3
+filtering/take-all/streamly,13,0.284316512,624051754,0.284139,0.0,0.0,3440640,0,0,0,55,2079559912,1991,180320,0.277222,0.277222,3.5e-3,4.5354e-3
+filtering/take-all/streamly,14,0.312323279,685524352,0.312132,0.0,0.0,3440640,0,0,0,59,2239365376,2144,194048,0.304693,0.304693,3.596e-3,4.687313e-3
+filtering/take-all/streamly,15,0.333058776,731037090,0.333005,0.0,0.0,3440640,0,0,0,55,2399170840,2297,207776,0.325092,0.325092,3.921e-3,5.120462e-3
+filtering/take-all/streamly,16,0.350835128,770054726,0.350538,0.0,0.0,3440640,0,0,0,106,2560017152,2451,221888,0.341967,0.341967,4.094e-3,5.392293e-3
+filtering/take-all/streamly,17,0.385320161,845746616,0.385248,0.0,0.0,3440640,0,0,0,89,2719826232,2604,110304,0.375944,0.375944,4.422e-3,5.822526e-3
+filtering/take-all/streamly,18,0.404518985,887886446,0.404502,0.0,0.0,3440640,0,0,0,73,2879631640,2757,241704,0.394496,0.394496,4.852e-3,6.273978e-3
+filtering/take-all/streamly,19,0.426966703,937157388,0.426859,0.0,0.0,3440640,0,0,0,87,3039437104,2910,248088,0.416209,0.416209,5.041e-3,6.584941e-3
+filtering/take-all/streamly,20,0.43133757,946751110,0.431475,0.0,0.0,3440640,0,0,0,53,3199242568,3063,254472,0.421453,0.421453,4.991e-3,6.578253e-3
+filtering/take-all/streamly,21,0.462384724,1014897080,0.462132,0.0,0.0,3440640,1,0,0,103,3359047920,3216,165216,0.450964,0.450964,5.408e-3,7.041748e-3
+filtering/take-all/streaming,1,2.0048958e-2,44005832,2.0056e-2,1.9766e-2,0.0,3411968,1,0,0,1,215724144,209,22960,1.9361e-2,1.9361e-2,4.07e-4,4.99805e-4
+filtering/take-all/streaming,2,4.2443853e-2,93160808,4.2347e-2,0.0,0.0,3424256,0,0,0,8,431456352,418,44224,4.0912e-2,4.0912e-2,7.94e-4,9.90843e-4
+filtering/take-all/streaming,3,6.3027523e-2,138340316,6.3067e-2,0.0,0.0,3424256,0,0,0,7,647184552,627,65512,6.0986e-2,6.0986e-2,1.109e-3,1.438033e-3
+filtering/take-all/streaming,4,8.0354206e-2,176370988,8.038e-2,0.0,0.0,3424256,0,0,0,11,863944848,837,86880,7.7669e-2,7.7669e-2,1.41e-3,1.860305e-3
+filtering/take-all/streaming,5,0.103178015,226467404,0.103188,0.0,0.0,3424256,0,0,0,22,1079673056,1046,108184,9.9668e-2,9.9668e-2,1.815e-3,2.313645e-3
+filtering/take-all/streaming,6,0.12143271,266534960,0.121477,0.0,0.0,3424256,0,0,0,14,1295401240,1255,129448,0.117341,0.117341,2.162e-3,2.757023e-3
+filtering/take-all/streaming,7,0.155924354,342241352,0.155678,0.0,0.0,3424256,0,0,0,52,1511129360,1464,150712,0.150332,0.150332,2.666e-3,3.508405e-3
+filtering/take-all/streaming,8,0.174198415,382351438,0.174037,0.0,0.0,3424256,0,0,0,60,1727889688,1674,171976,0.16793,0.16793,3.079e-3,3.959066e-3
+filtering/take-all/streaming,9,0.189724959,416430950,0.189662,0.0,0.0,3424256,0,0,0,46,1943617936,1883,193312,0.183312,0.183312,3.217e-3,4.215135e-3
+filtering/take-all/streaming,10,0.21846053,479503238,0.218402,0.0,0.0,3424256,0,0,0,54,2159346056,2092,214544,0.210914,0.210914,3.832e-3,4.921703e-3
+filtering/take-all/streaming,11,0.233855489,513293712,0.233966,0.0,0.0,3424256,0,0,0,29,2375074256,2301,235848,0.226475,0.226475,3.888e-3,5.069612e-3
+filtering/take-all/streaming,12,0.257457093,565097512,0.257364,0.0,0.0,3424256,0,0,0,49,2591834632,2511,257216,0.248695,0.248695,4.304e-3,5.609957e-3
+filtering/take-all/streaming,13,0.276137719,606099974,0.276208,0.0,0.0,3424256,0,0,0,38,2807562760,2720,278520,0.26732,0.26732,4.5e-3,5.947578e-3
+filtering/take-all/streaming,14,0.308548136,677238252,0.308427,0.0,0.0,3424256,0,0,0,78,3023290944,2929,299784,0.297866,0.297866,5.369e-3,6.838326e-3
+filtering/take-all/streaming,15,0.329082518,722309504,0.328929,0.0,0.0,3424256,0,0,0,100,3239019136,3138,321016,0.317708,0.317708,5.549e-3,7.244024e-3
+filtering/take-all/streaming,16,0.353537487,775986208,0.353437,0.0,0.0,3424256,0,0,0,94,3455779520,3348,342384,0.341397,0.341397,6.065e-3,7.86876e-3
+filtering/take-all/streaming,17,0.37139039,815171892,0.370884,0.0,0.0,3424256,0,0,0,85,3671507672,3557,363688,0.357853,0.357853,6.403e-3,8.193603e-3
+filtering/take-all/streaming,18,0.393995052,864787292,0.393668,0.0,0.0,3424256,0,0,0,99,3887235840,3766,384920,0.380346,0.380346,6.649e-3,8.659067e-3
+filtering/take-all/streaming,19,0.419215356,920143820,0.419309,0.0,0.0,3424256,0,0,0,87,4103996224,3976,406288,0.40526,0.40526,7.001e-3,9.120601e-3
+filtering/take-all/streaming,20,0.440945802,967840388,0.440364,0.0,0.0,3424256,0,0,0,150,4319724344,4185,427592,0.424873,0.424873,7.523e-3,9.757692e-3
+filtering/take-all/streaming,21,0.461877858,1013784564,0.461185,0.0,0.0,3424256,0,0,0,136,4535452472,4394,448816,0.445071,0.445071,8.18e-3,1.0470267e-2
+filtering/takeWhile-true/vector,1,7.857333e-3,17246180,7.837e-3,7.686e-3,0.0,3411968,1,0,0,2,79376432,76,4248,7.42e-3,7.42e-3,2.67e-4,3.12057e-4
+filtering/takeWhile-true/vector,2,1.8109264e-2,39748403,1.8098e-2,0.0,0.0,3420160,0,0,0,7,159805392,153,6800,1.7389e-2,1.7389e-2,3.92e-4,4.85244e-4
+filtering/takeWhile-true/vector,3,2.5953277e-2,56965340,2.5905e-2,0.0,0.0,3420160,0,0,0,8,239185840,229,9304,2.4807e-2,2.4807e-2,5.33e-4,6.54294e-4
+filtering/takeWhile-true/vector,4,3.8546219e-2,84605888,3.8539e-2,0.0,0.0,3420160,0,0,0,10,319610720,306,11856,3.7122e-2,3.7122e-2,7.05e-4,8.99558e-4
+filtering/takeWhile-true/vector,5,3.911308e-2,85850020,3.9125e-2,0.0,0.0,3420160,0,0,0,9,398991216,382,14376,3.7709e-2,3.7709e-2,7.32e-4,9.27063e-4
+filtering/takeWhile-true/vector,6,4.3383013e-2,95222196,4.3404e-2,0.0,0.0,3420160,0,0,0,4,479416144,459,16928,4.1929e-2,4.1929e-2,7.81e-4,1.008941e-3
+filtering/takeWhile-true/vector,7,5.2980951e-2,116288918,5.2821e-2,0.0,0.0,3420160,0,0,0,19,559841072,536,19480,5.1022e-2,5.1022e-2,8.95e-4,1.295851e-3
+filtering/takeWhile-true/vector,8,6.140472e-2,134778434,6.1281e-2,0.0,0.0,3420160,0,0,0,23,639221416,612,22000,5.9046e-2,5.9046e-2,1.127e-3,1.428656e-3
+filtering/takeWhile-true/vector,9,6.7808715e-2,148834618,6.7673e-2,0.0,0.0,3420160,0,0,0,23,719646448,689,24552,6.5114e-2,6.5114e-2,1.277e-3,1.591178e-3
+filtering/takeWhile-true/vector,10,7.747056e-2,170041636,7.7504e-2,0.0,0.0,3420160,0,0,0,11,799026896,765,27072,7.4872e-2,7.4872e-2,1.32e-3,1.713759e-3
+filtering/takeWhile-true/vector,11,8.5914326e-2,188575004,8.5864e-2,0.0,0.0,3420160,0,0,0,24,879451824,842,29624,8.2927e-2,8.2927e-2,1.443e-3,1.876431e-3
+filtering/takeWhile-true/vector,12,9.8637459e-2,216501232,9.8618e-2,0.0,0.0,3420160,0,0,0,19,959876704,919,32176,9.5342e-2,9.5342e-2,1.612e-3,2.096208e-3
+filtering/takeWhile-true/vector,13,9.7492591e-2,213988360,9.7494e-2,0.0,0.0,3481600,9,0,0,21,1039257200,995,34696,9.4233e-2,9.4233e-2,1.576e-3,2.119854e-3
+filtering/takeWhile-true/vector,14,0.105451513,231457552,0.105461,0.0,0.0,3481600,0,0,0,22,1119682128,1072,37248,0.101897,0.101897,1.761e-3,2.312551e-3
+filtering/takeWhile-true/vector,15,0.12067309,264867680,0.120634,0.0,0.0,3481600,0,0,0,27,1199062576,1148,39768,0.116403,0.116403,2.005e-3,2.613635e-3
+filtering/takeWhile-true/vector,16,0.127257369,279319632,0.127223,0.0,0.0,3481600,0,0,0,24,1279487504,1225,42320,0.122856,0.122856,2.118e-3,2.795722e-3
+filtering/takeWhile-true/vector,17,0.13851288,304024578,0.138435,0.0,0.0,3481600,0,0,0,32,1359912408,1302,44872,0.133164,0.133164,2.378e-3,3.128941e-3
+filtering/takeWhile-true/vector,18,0.152978372,335775168,0.152842,0.0,0.0,3481600,0,0,0,39,1439292880,1378,47392,0.147486,0.147486,2.536e-3,3.332374e-3
+filtering/takeWhile-true/vector,19,0.144013527,316098086,0.143961,0.0,0.0,3481600,0,0,0,35,1519717808,1455,49944,0.139155,0.139155,2.324e-3,3.103921e-3
+filtering/takeWhile-true/vector,20,0.160537827,352367586,0.160479,0.0,0.0,3481600,0,0,0,36,1599098256,1531,52464,0.155091,0.155091,2.651e-3,3.461043e-3
+filtering/takeWhile-true/vector,21,0.164381666,360804440,0.164337,0.0,0.0,3481600,0,0,0,25,1679523080,1608,55016,0.158734,0.158734,2.804e-3,3.597174e-3
+filtering/takeWhile-true/vector,22,0.171344827,376088065,0.171353,0.0,0.0,3481600,0,0,0,30,1759948112,1685,57568,0.165716,0.165716,2.742e-3,3.658535e-3
+filtering/takeWhile-true/vector,23,0.205045255,450057740,0.203804,0.0,0.0,3481600,0,0,0,138,1839328560,1761,60088,0.196116,0.196116,3.489e-3,4.503895e-3
+filtering/takeWhile-true/vector,25,0.199876345,438712430,0.199118,0.0,0.0,3481600,0,0,0,180,1999133936,1914,65160,0.191448,0.191448,3.521e-3,4.557854e-3
+filtering/takeWhile-true/vector,26,0.209922578,460763084,0.208819,0.0,0.0,3481600,0,0,0,246,2079558816,1991,67712,0.200305,0.200305,3.765e-3,4.969681e-3
+filtering/takeWhile-true/vector,27,0.217463478,477314754,0.217279,0.0,0.0,3481600,0,0,0,63,2159983792,2068,70264,0.209817,0.209817,3.57e-3,4.736545e-3
+filtering/takeWhile-true/vector,28,0.217438227,477259334,0.217436,0.0,0.0,3481600,0,0,0,38,2239364240,2144,72784,0.21024,0.21024,3.485e-3,4.580822e-3
+filtering/takeWhile-true/vector,30,0.23896619,524511470,0.238836,0.0,0.0,3481600,0,0,0,52,2399169616,2297,77856,0.230707,0.230707,3.886e-3,5.117152e-3
+filtering/takeWhile-true/vector,31,0.230419986,505753258,0.230508,0.0,0.0,3481600,0,0,0,40,2479594544,2374,80408,0.222823,0.222823,3.642e-3,4.884016e-3
+filtering/takeWhile-true/vector,33,0.255573162,560962430,0.255407,0.0,0.0,3481600,0,0,0,49,2639399896,2527,85480,0.247058,0.247058,4.095e-3,5.404113e-3
+filtering/takeWhile-true/vector,35,0.260499681,571775746,0.260571,0.0,0.0,3481600,0,0,0,34,2799205296,2680,90552,0.25223,0.25223,4.0e-3,5.313612e-3
+filtering/takeWhile-true/vector,36,0.290180495,636922746,0.288875,0.0,0.0,3481600,0,0,0,215,2879630224,2757,93104,0.278172,0.278172,4.925e-3,6.481107e-3
+filtering/takeWhile-true/vector,38,0.306948584,673727356,0.305653,0.0,0.0,3481600,0,0,0,219,3039435600,2910,98176,0.294262,0.294262,5.25e-3,6.929033e-3
+filtering/takeWhile-true/vector,40,0.32423969,711679942,0.322865,0.0,0.0,3481600,0,0,0,318,3199240872,3063,103248,0.310419,0.310419,5.677e-3,7.44911e-3
+filtering/takeWhile-true/vector,42,0.327972271,719872594,0.327007,0.0,0.0,3481600,0,0,0,235,3359046352,3216,108320,0.314748,0.314748,5.696e-3,7.490121e-3
+filtering/takeWhile-true/streamly,1,2.3566763e-2,51727120,2.3561e-2,2.3259e-2,0.0,3411968,1,0,0,6,151966776,146,10136,2.2906e-2,2.2906e-2,3.57e-4,4.35626e-4
+filtering/takeWhile-true/streamly,2,4.782843e-2,104979512,4.77e-2,0.0,0.0,3424256,0,0,0,34,303941664,292,18576,4.6288e-2,4.6288e-2,6.9e-4,8.34603e-4
+filtering/takeWhile-true/streamly,3,6.882942e-2,151075010,6.8643e-2,0.0,0.0,3424256,0,0,0,21,455912544,438,24664,6.7073e-2,6.7073e-2,7.9e-4,1.001026e-3
+filtering/takeWhile-true/streamly,4,9.4955643e-2,208419956,9.4795e-2,0.0,0.0,3424256,0,0,0,33,607883360,584,37776,9.2334e-2,9.2334e-2,1.231e-3,1.528263e-3
+filtering/takeWhile-true/streamly,5,0.112937192,247888012,0.112865,0.0,0.0,3424256,0,0,0,25,759854280,730,48552,0.110236,0.110236,1.305e-3,1.658286e-3
+filtering/takeWhile-true/streamly,6,0.134410146,295019402,0.13445,0.0,0.0,3424256,0,0,0,19,911825136,876,56992,0.131567,0.131567,1.436e-3,1.865899e-3
+filtering/takeWhile-true/streamly,7,0.158033821,346871476,0.15792,0.0,0.0,3424256,0,0,0,34,1063795984,1022,67768,0.154395,0.154395,1.727e-3,2.233234e-3
+filtering/takeWhile-true/streamly,8,0.191541306,420417698,0.191403,0.0,0.0,3424256,0,0,0,65,1215766768,1168,72704,0.186856,0.186856,2.118e-3,2.746253e-3
+filtering/takeWhile-true/streamly,9,0.223026922,489526072,0.221505,0.0,0.0,3424256,0,0,0,171,1367737672,1314,84648,0.215505,0.215505,2.636e-3,3.354875e-3
+filtering/takeWhile-true/streamly,10,0.243581085,534640796,0.242053,0.0,0.0,3424256,0,0,0,218,1519708472,1460,95424,0.235195,0.235195,2.994e-3,3.804562e-3
+filtering/takeWhile-true/streamly,11,0.261347954,573637653,0.260754,0.0,0.0,3424256,0,0,0,171,1671679256,1606,107368,0.254032,0.254032,3.046e-3,3.925194e-3
+filtering/takeWhile-true/streamly,12,0.283996583,623349540,0.282923,0.0,0.0,3424256,0,0,0,215,1823650064,1752,109968,0.275192,0.275192,3.352e-3,4.264939e-3
+filtering/takeWhile-true/streamly,13,0.309793938,679972650,0.308821,0.0,0.0,3424256,0,0,0,127,1975620992,1898,124248,0.301587,0.301587,3.332e-3,4.343829e-3
+filtering/takeWhile-true/streamly,14,0.326039707,715630810,0.325796,0.0,0.0,3424256,0,0,0,89,2127591840,2044,135024,0.318309,0.318309,3.473e-3,4.555465e-3
+filtering/takeWhile-true/streamly,15,0.342444796,751638646,0.342138,0.0,0.0,3424256,0,0,0,76,2279562648,2190,141128,0.334835,0.334835,3.477e-3,4.587033e-3
+filtering/takeWhile-true/streamly,16,0.356820374,783191882,0.356638,0.0,0.0,3424256,0,0,0,79,2431533528,2336,147232,0.348857,0.348857,3.701e-3,4.863997e-3
+filtering/takeWhile-true/streamly,17,0.390332964,856749322,0.390165,0.0,0.0,3424256,0,0,0,86,2583504360,2482,158008,0.381306,0.381306,4.221e-3,5.489688e-3
+filtering/takeWhile-true/streamly,18,0.42488897,932596926,0.423142,0.0,0.0,3424256,0,0,0,321,2735475264,2628,171120,0.412128,0.412128,4.866e-3,6.75882e-3
+filtering/takeWhile-true/streamly,19,0.448132141,983613804,0.446593,0.0,0.0,3424256,0,0,0,291,2887446120,2774,179560,0.435405,0.435405,5.044e-3,6.480453e-3
+filtering/takeWhile-true/streamly,20,0.468402562,1028105764,0.466644,0.0,0.0,3424256,0,0,0,241,3039417000,2920,188000,0.455231,0.455231,5.061e-3,6.579146e-3
+filtering/takeWhile-true/streamly,21,0.495974614,1088624154,0.493995,0.0,0.0,3424256,0,0,0,299,3191387752,3066,196440,0.481477,0.481477,5.672e-3,7.267031e-3
+filtering/takeWhile-true/streaming,1,2.4499739e-2,53774967,2.4304e-2,2.3869e-2,0.0,3448832,1,0,0,18,207343664,198,20296,2.3404e-2,2.3404e-2,4.69e-4,5.97936e-4
+filtering/takeWhile-true/streaming,2,4.5755036e-2,100428603,4.5471e-2,0.0,0.0,3461120,0,0,0,65,415742560,397,38928,4.3613e-2,4.3613e-2,8.85e-4,1.089154e-3
+filtering/takeWhile-true/streaming,3,6.9686404e-2,152956014,6.9258e-2,0.0,0.0,3461120,0,0,0,85,623090272,595,57480,6.657e-2,6.657e-2,1.262e-3,1.611406e-3
+filtering/takeWhile-true/streaming,4,9.4675201e-2,207804453,9.3959e-2,0.0,0.0,3461120,0,0,0,136,831485144,794,76192,9.0174e-2,9.0174e-2,1.666e-3,2.148438e-3
+filtering/takeWhile-true/streaming,5,0.119531713,262362448,0.118643,0.0,0.0,3461120,0,0,0,177,1039880032,993,94744,0.11391,0.11391,2.177e-3,2.860779e-3
+filtering/takeWhile-true/streaming,6,0.139796781,306842614,0.139295,0.0,0.0,3461120,0,0,0,98,1247227744,1191,113312,0.134359,0.134359,2.404e-3,3.112668e-3
+filtering/takeWhile-true/streaming,7,0.150558711,330464200,0.150552,0.0,0.0,3461120,0,0,0,35,1455622656,1390,131944,0.145788,0.145788,2.401e-3,3.073461e-3
+filtering/takeWhile-true/streaming,8,0.180378763,395916818,0.180118,0.0,0.0,3461120,0,0,0,75,1662970248,1588,150672,0.174114,0.174114,2.903e-3,3.753869e-3
+filtering/takeWhile-true/streaming,9,0.198363147,435391092,0.19839,0.0,0.0,3461120,0,0,0,37,1871365280,1787,169144,0.192113,0.192113,3.038e-3,4.02037e-3
+filtering/takeWhile-true/streaming,10,0.243244735,533902538,0.240231,0.0,0.0,3461120,0,0,0,467,2079760208,1986,187816,0.22936,0.22936,4.726e-3,6.130544e-3
+filtering/takeWhile-true/streaming,11,0.252835971,554954500,0.252497,0.0,0.0,3461120,0,0,0,99,2287107904,2184,206384,0.244036,0.244036,4.03e-3,5.163185e-3
+filtering/takeWhile-true/streaming,12,0.2851581,625898980,0.283735,0.0,0.0,3461120,0,0,0,305,2495502768,2383,225272,0.273336,0.273336,4.764e-3,6.070811e-3
+filtering/takeWhile-true/streaming,13,0.299715786,657851912,0.298947,0.0,0.0,3461120,0,0,0,167,2703897744,2582,243736,0.289012,0.289012,4.829e-3,6.154287e-3
+filtering/takeWhile-true/streaming,14,0.465235212,1021154650,0.447256,0.0,0.0,3461120,0,0,0,1337,2911245456,2780,262304,0.424333,0.424333,9.801e-3,1.2255685e-2
+filtering/takeWhile-true/streaming,15,0.366370213,804152976,0.36405,0.0,0.0,3461120,0,0,0,211,3119640368,2979,280984,0.351373,0.351373,6.101e-3,7.736416e-3
+filtering/takeWhile-true/streaming,16,0.369647508,811346402,0.368627,0.0,0.0,3461120,0,0,0,264,3326988080,3177,299552,0.355716,0.355716,6.123e-3,7.880242e-3
+filtering/takeWhile-true/streaming,17,0.435338894,955533700,0.429859,0.0,0.0,3461120,0,0,0,844,3535382952,3376,318304,0.41023,0.41023,8.282e-3,1.0335279e-2
+filtering/takeWhile-true/streaming,18,0.423732,930057484,0.422669,0.0,0.0,3461120,0,0,0,244,3743777904,3575,336864,0.407576,0.407576,7.253e-3,9.234207e-3
+filtering/takeWhile-true/streaming,19,0.449016529,985554978,0.448056,0.0,0.0,3461120,0,0,0,180,3951125616,3773,355432,0.433345,0.433345,7.302e-3,9.331682e-3
+filtering/takeWhile-true/streaming,20,0.459848566,1009330432,0.459857,0.0,0.0,3461120,0,0,0,108,4159520528,3972,374064,0.445243,0.445243,7.233e-3,9.334636e-3
+filtering/drop-all/vector,1,7.027612e-3,15425046,7.038e-3,6.907e-3,0.0,3407872,1,0,0,1,79376432,76,4248,6.701e-3,6.701e-3,2.07e-4,2.72879e-4
+filtering/drop-all/vector,2,1.3351922e-2,29306412,1.3356e-2,0.0,0.0,3416064,0,0,0,1,159805392,153,6800,1.2829e-2,1.2829e-2,2.97e-4,3.66248e-4
+filtering/drop-all/vector,3,2.0571494e-2,45152768,2.0581e-2,0.0,0.0,3416064,0,0,0,2,239185840,229,9304,1.9832e-2,1.9832e-2,4.09e-4,5.07583e-4
+filtering/drop-all/vector,4,3.1723113e-2,69629676,3.1678e-2,0.0,0.0,3416064,0,0,0,13,319610696,306,11856,3.03e-2,3.03e-2,6.42e-4,8.05653e-4
+filtering/drop-all/vector,5,3.7682007e-2,82708960,3.7636e-2,0.0,0.0,3416064,0,0,0,10,398991216,382,14376,3.6155e-2,3.6155e-2,7.2e-4,9.19876e-4
+filtering/drop-all/vector,6,4.3237519e-2,94902872,4.3096e-2,0.0,0.0,3416064,0,0,0,24,479416144,459,16928,4.1251e-2,4.1251e-2,8.73e-4,1.10161e-3
+filtering/drop-all/vector,7,5.397494e-2,118470618,5.3871e-2,0.0,0.0,3416064,0,0,0,25,559841072,536,19480,5.1668e-2,5.1668e-2,1.1e-3,1.383299e-3
+filtering/drop-all/vector,8,5.8224526e-2,127798112,5.8112e-2,0.0,0.0,3416064,0,0,0,25,639221416,612,22000,5.5846e-2,5.5846e-2,1.109e-3,1.436103e-3
+filtering/drop-all/vector,9,6.6815327e-2,146654240,6.6773e-2,0.0,0.0,3416064,0,0,0,26,719646448,689,24552,6.4238e-2,6.4238e-2,1.245e-3,1.613044e-3
+filtering/drop-all/vector,10,7.5040057e-2,164706884,7.4903e-2,0.0,0.0,3416064,0,0,0,28,799026896,765,27072,7.2001e-2,7.2001e-2,1.455e-3,1.832448e-3
+filtering/drop-all/vector,11,8.9393815e-2,196212207,8.9129e-2,0.0,0.0,3416064,0,0,0,62,879451824,842,29624,8.5399e-2,8.5399e-2,1.728e-3,2.219094e-3
+filtering/drop-all/vector,12,9.1851003e-2,201605522,9.154e-2,0.0,0.0,3416064,0,0,0,36,959876704,919,32176,8.7968e-2,8.7968e-2,1.751e-3,2.257026e-3
+filtering/drop-all/vector,13,9.1933421e-2,201786438,9.1867e-2,0.0,0.0,3477504,9,0,0,26,1039257200,995,34696,8.8586e-2,8.8586e-2,1.599e-3,2.123825e-3
+filtering/drop-all/vector,14,0.103413089,226983388,0.10334,0.0,0.0,3477504,0,0,0,19,1119682128,1072,37248,9.9606e-2,9.9606e-2,1.847e-3,2.453404e-3
+filtering/drop-all/vector,15,0.110928133,243478330,0.110889,0.0,0.0,3477504,0,0,0,30,1199062576,1148,39768,0.106962,0.106962,1.897e-3,2.513041e-3
+filtering/drop-all/vector,16,0.127792614,280494444,0.127431,0.0,0.0,3477504,0,0,0,100,1279487504,1225,42320,0.1222,0.1222,2.353e-3,3.114809e-3
+filtering/drop-all/vector,17,0.126148627,276886010,0.125831,0.0,0.0,3477504,0,0,0,81,1359912408,1302,44872,0.120732,0.120732,2.315e-3,2.990437e-3
+filtering/drop-all/vector,18,0.138800718,304656384,0.138708,0.0,0.0,3477504,0,0,0,50,1439292880,1378,47392,0.133235,0.133235,2.518e-3,3.296086e-3
+filtering/drop-all/vector,19,0.142891839,313636020,0.142802,0.0,0.0,3477504,0,0,0,45,1519717808,1455,49944,0.137525,0.137525,2.565e-3,3.311097e-3
+filtering/drop-all/vector,20,0.146066867,320604988,0.145871,0.0,0.0,3477504,0,0,0,71,1599098256,1531,52464,0.140399,0.140399,2.678e-3,3.492578e-3
+filtering/drop-all/vector,21,0.161852865,355253966,0.161747,0.0,0.0,3477504,0,0,0,40,1679523080,1608,55016,0.156079,0.156079,2.728e-3,3.59824e-3
+filtering/drop-all/vector,22,0.162154011,355914916,0.161594,0.0,0.0,3477504,0,0,0,87,1759948112,1685,57568,0.15529,0.15529,2.984e-3,3.92029e-3
+filtering/drop-all/vector,23,0.167746039,368189008,0.167489,0.0,0.0,3477504,0,0,0,79,1839328560,1761,60088,0.161088,0.161088,2.982e-3,3.907198e-3
+filtering/drop-all/vector,25,0.180401988,395967816,0.180417,0.0,0.0,3477504,0,0,0,31,1999133936,1914,65160,0.174208,0.174208,3.077e-3,4.075032e-3
+filtering/drop-all/vector,26,0.189912618,416842832,0.189865,0.0,0.0,3477504,0,0,0,34,2079558816,1991,67712,0.183289,0.183289,3.236e-3,4.249367e-3
+filtering/drop-all/vector,27,0.195207504,428464680,0.195099,0.0,0.0,3477504,0,0,0,48,2159983792,2068,70264,0.187756,0.187756,3.515e-3,4.563979e-3
+filtering/drop-all/vector,28,0.207083093,454530652,0.206926,0.0,0.0,3477504,0,0,0,57,2239364240,2144,72784,0.199379,0.199379,3.609e-3,4.786288e-3
+filtering/drop-all/vector,30,0.235436557,516764222,0.234668,0.0,0.0,3477504,0,0,0,132,2399169616,2297,77856,0.225569,0.225569,4.245e-3,5.553323e-3
+filtering/drop-all/vector,31,0.233798213,513168158,0.233332,0.0,0.0,3477504,0,0,0,95,2479594544,2374,80408,0.224766,0.224766,3.96e-3,5.291824e-3
+filtering/drop-all/vector,33,0.244983536,537719074,0.244891,0.0,0.0,3477504,0,0,0,54,2639399896,2527,85480,0.236063,0.236063,4.234e-3,5.562393e-3
+filtering/drop-all/vector,35,0.238712795,523955290,0.238807,0.0,0.0,3477504,0,0,0,32,2799205296,2680,90552,0.230743,0.230743,3.935e-3,5.246417e-3
+filtering/drop-all/vector,36,0.269974879,592573056,0.269969,0.0,0.0,3481600,0,0,0,53,2879630224,2757,93104,0.260206,0.260206,4.632e-3,6.111269e-3
+filtering/drop-all/vector,38,0.275319863,604304837,0.275035,0.0,0.0,3481600,0,0,0,71,3039435600,2910,98176,0.26501,0.26501,4.771e-3,6.203181e-3
+filtering/drop-all/vector,40,0.287001952,629946046,0.28686,0.0,0.0,3481600,0,0,0,51,3199240872,3063,103248,0.276608,0.276608,4.841e-3,6.459963e-3
+filtering/drop-all/vector,42,0.288043932,632233150,0.288159,0.0,0.0,3481600,0,0,0,51,3359046352,3216,108320,0.278221,0.278221,4.848e-3,6.422073e-3
+filtering/drop-all/vector,44,0.318333749,698716826,0.318149,0.0,0.0,3481600,0,0,0,65,3519896208,3370,113424,0.307116,0.307116,5.299e-3,7.062524e-3
+filtering/drop-all/streamly,1,1.9052208e-2,41818078,1.905e-2,1.8763e-2,0.0,3411968,1,0,0,5,135778336,130,9240,1.8441e-2,1.8441e-2,3.25e-4,4.0234e-4
+filtering/drop-all/streamly,2,3.3538348e-2,73613968,3.3539e-2,0.0,0.0,3424256,0,0,0,5,271564800,260,21984,3.2585e-2,3.2585e-2,4.97e-4,6.44497e-4
+filtering/drop-all/streamly,3,4.4893665e-2,98537982,4.4824e-2,0.0,0.0,3424256,0,0,0,6,407347152,390,29512,4.357e-2,4.357e-2,6.41e-4,8.45949e-4
+filtering/drop-all/streamly,4,6.1572e-2,135145552,6.1576e-2,0.0,0.0,3424256,0,0,0,8,543129488,520,42256,5.99e-2,5.99e-2,8.5e-4,1.099153e-3
+filtering/drop-all/streamly,5,8.2083251e-2,180166114,8.1963e-2,0.0,0.0,3424256,0,0,0,20,679956416,651,49856,7.9557e-2,7.9557e-2,1.222e-3,1.554011e-3
+filtering/drop-all/streamly,6,9.3780285e-2,205840146,9.3821e-2,0.0,0.0,3424256,0,0,0,10,815738768,781,57400,9.1278e-2,9.1278e-2,1.318e-3,1.692886e-3
+filtering/drop-all/streamly,7,0.104466131,229294712,0.104507,0.0,0.0,3424256,0,0,0,18,951521168,911,70144,0.101615,0.101615,1.444e-3,1.876938e-3
+filtering/drop-all/streamly,8,0.130809126,287115462,0.130823,0.0,0.0,3424256,0,0,0,19,1087303448,1041,77688,0.127234,0.127234,1.804e-3,2.360718e-3
+filtering/drop-all/streamly,9,0.151018964,331474422,0.150986,0.0,0.0,3424256,0,0,0,26,1223086000,1171,85232,0.146858,0.146858,2.023e-3,2.686536e-3
+filtering/drop-all/streamly,10,0.155204416,340661164,0.155167,0.0,0.0,3424256,0,0,0,37,1359912808,1302,92832,0.15084,0.15084,2.173e-3,2.827083e-3
+filtering/drop-all/streamly,11,0.181832475,399107622,0.181756,0.0,0.0,3424256,0,0,0,35,1495695232,1432,100376,0.176684,0.176684,2.479e-3,3.285287e-3
+filtering/drop-all/streamly,12,0.195155543,428350675,0.195083,0.0,0.0,3424256,0,0,0,59,1631477584,1562,113120,0.189349,0.189349,2.84e-3,3.661418e-3
+filtering/drop-all/streamly,13,0.212678746,466812593,0.21277,0.0,0.0,3424256,0,0,0,25,1767260016,1692,120664,0.206853,0.206853,2.891e-3,3.767362e-3
+filtering/drop-all/streamly,14,0.226635406,497446410,0.226658,0.0,0.0,3424256,0,0,0,34,1903042368,1822,128208,0.220585,0.220585,2.873e-3,3.815733e-3
+filtering/drop-all/streamly,15,0.239038884,524671032,0.239025,0.0,0.0,3424256,0,0,0,42,2039869248,1953,141048,0.232503,0.232503,3.179e-3,4.182265e-3
+filtering/drop-all/streamly,16,0.250183712,549133026,0.250242,0.0,0.0,3424256,0,0,0,32,2175651632,2083,148592,0.243638,0.243638,3.184e-3,4.254512e-3
+filtering/drop-all/streamly,17,0.274301271,602069118,0.274039,0.0,0.0,3424256,0,0,0,50,2311433960,2213,156136,0.266485,0.266485,3.681e-3,4.778994e-3
+filtering/drop-all/streamly,18,0.280187686,614989326,0.280301,0.0,0.0,3424256,0,0,0,50,2447216384,2343,168880,0.272777,0.272777,3.678e-3,4.87504e-3
+filtering/drop-all/streamly,19,0.3086857,677540148,0.308627,0.0,0.0,3424256,0,0,0,61,2582998768,2473,176424,0.300144,0.300144,4.068e-3,5.326572e-3
+filtering/drop-all/streamly,20,0.315033123,691472224,0.314993,0.0,0.0,3424256,0,0,0,62,2719825600,2604,184024,0.306389,0.306389,4.173e-3,5.532111e-3
+filtering/drop-all/streamly,21,0.338968341,744008110,0.338873,0.0,0.0,3424256,0,0,0,51,2855607896,2734,196768,0.32977,0.32977,4.484e-3,5.906372e-3
+filtering/drop-all/streamly,22,0.346002708,759447976,0.346097,0.0,0.0,3424256,0,0,0,53,2991390384,2864,204312,0.336858,0.336858,4.466e-3,5.978578e-3
+filtering/drop-all/streamly,23,0.382781212,840173832,0.38245,0.0,0.0,3424256,0,0,0,64,3127172736,2994,211856,0.372152,0.372152,4.955e-3,6.529665e-3
+filtering/drop-all/streamly,25,0.419005,919682129,0.418273,0.0,0.0,3424256,0,0,0,165,3399782000,3255,232240,0.40611,0.40611,5.69e-3,7.408686e-3
+filtering/drop-all/streamly,26,0.436342949,957737499,0.435284,0.0,0.0,3424256,0,0,0,165,3535564304,3385,239784,0.422181,0.422181,6.103e-3,7.926897e-3
+filtering/drop-all/streaming,1,1.4420591e-2,31652056,1.4346e-2,1.4034e-2,0.0,3407872,1,0,0,11,143470752,139,8488,1.3634e-2,1.3634e-2,4.04e-4,4.70439e-4
+filtering/drop-all/streaming,2,3.1782771e-2,69760590,3.163e-2,0.0,0.0,3420160,0,0,0,30,287981760,279,15296,3.0298e-2,3.0298e-2,6.42e-4,8.05171e-4
+filtering/drop-all/streaming,3,4.2770802e-2,93878430,4.2604e-2,0.0,0.0,3420160,0,0,0,31,431456560,418,22040,4.0789e-2,4.0789e-2,8.87e-4,1.125645e-3
+filtering/drop-all/streaming,4,5.9898951e-2,131473352,5.9637e-2,0.0,0.0,3420160,0,0,0,71,575963536,558,28848,5.7131e-2,5.7131e-2,1.161e-3,1.459173e-3
+filtering/drop-all/streaming,5,7.3126239e-2,160506176,7.28e-2,0.0,0.0,3420160,0,0,0,66,719438352,697,35608,6.9928e-2,6.9928e-2,1.366e-3,1.742741e-3
+filtering/drop-all/streaming,6,9.0865389e-2,199442182,9.0893e-2,0.0,0.0,3420160,0,0,0,23,863945344,837,42416,8.7732e-2,8.7732e-2,1.503e-3,1.999903e-3
+filtering/drop-all/streaming,7,0.101798159,223438730,0.101851,0.0,0.0,3420160,0,0,0,13,1007420144,976,49176,9.8482e-2,9.8482e-2,1.667e-3,2.198394e-3
+filtering/drop-all/streaming,8,0.108127089,237330220,0.10811,0.0,0.0,3420160,0,0,0,15,1151927080,1116,55984,0.104531,0.104531,1.712e-3,2.2714e-3
+filtering/drop-all/streaming,9,0.130480684,286394566,0.130382,0.0,0.0,3420160,0,0,0,26,1295401936,1255,62744,0.12602,0.12602,2.128e-3,2.771149e-3
+filtering/drop-all/streaming,10,0.140694091,308812180,0.140664,0.0,0.0,3420160,0,0,0,23,1439908928,1395,69552,0.136003,0.136003,2.271e-3,3.002857e-3
+filtering/drop-all/streaming,11,0.163160621,358124384,0.162979,0.0,0.0,3420160,0,0,0,76,1583383728,1534,76312,0.156478,0.156478,3.445e-3,4.275741e-3
+filtering/drop-all/streaming,12,0.166080277,364532790,0.166002,0.0,0.0,3420160,0,0,0,27,1727890720,1674,83120,0.160623,0.160623,2.68e-3,3.483732e-3
+filtering/drop-all/streaming,13,0.178181135,391093214,0.178216,0.0,0.0,3420160,0,0,0,26,1871365520,1813,89880,0.172544,0.172544,2.805e-3,3.657753e-3
+filtering/drop-all/streaming,14,0.197280867,433015535,0.197123,0.0,0.0,3420160,0,0,0,33,2015872512,1953,96688,0.190687,0.190687,3.138e-3,4.127383e-3
+filtering/drop-all/streaming,15,0.215312098,472592684,0.215258,0.0,0.0,3420160,0,0,0,49,2159347312,2092,103448,0.208212,0.208212,3.441e-3,4.509751e-3
+filtering/drop-all/streaming,16,0.245474141,538795858,0.243885,0.0,0.0,3420160,0,0,0,232,2303854304,2232,110256,0.23453,0.23453,4.278e-3,5.507976e-3
+filtering/drop-all/streaming,17,0.245712823,539319791,0.245254,0.0,0.0,3420160,0,0,0,111,2447329128,2371,117016,0.23678,0.23678,3.93e-3,5.228986e-3
+filtering/drop-all/streaming,18,0.250928945,550768730,0.250944,0.0,0.0,3420160,0,0,0,32,2591836096,2511,123824,0.243027,0.243027,3.909e-3,5.202443e-3
+filtering/drop-all/streaming,19,0.277728861,609592450,0.277073,0.0,0.0,3420160,0,0,0,196,2735310896,2650,130584,0.267237,0.267237,4.537e-3,6.05831e-3
+filtering/drop-all/streaming,20,0.295531606,648667944,0.293754,0.0,0.0,3420160,0,0,0,203,2879817888,2790,137392,0.282774,0.282774,5.098e-3,6.551824e-3
+filtering/drop-all/streaming,21,0.290986829,638692574,0.291025,0.0,0.0,3420160,0,0,0,36,3023292632,2929,144152,0.281909,0.281909,4.413e-3,5.892166e-3
+filtering/drop-all/streaming,22,0.302441352,663834320,0.302224,0.0,0.0,3420160,0,0,0,48,3167799680,3069,150960,0.292584,0.292584,4.622e-3,6.255323e-3
+filtering/drop-all/streaming,23,0.327014116,717769582,0.326927,0.0,0.0,3420160,0,0,0,58,3311274480,3208,157720,0.316117,0.316117,5.147e-3,6.798627e-3
+filtering/drop-all/streaming,25,0.359527474,789133722,0.359337,0.0,0.0,3420160,0,0,0,71,3599256272,3487,171288,0.34768,0.34768,5.63e-3,7.48612e-3
+filtering/drop-all/streaming,26,0.38716163,849788482,0.385223,0.0,0.0,3420160,0,0,0,277,3743763264,3627,178096,0.370933,0.370933,6.56e-3,8.558669e-3
+filtering/drop-all/streaming,27,0.396772204,870882870,0.396033,0.388661,0.0,3420160,0,0,0,183,3887238064,3766,184856,0.382311,0.382311,6.354e-3,8.374541e-3
+filtering/dropWhile-true/vector,1,8.032956e-3,17631692,8.025e-3,7.889e-3,0.0,3432448,1,0,0,3,79376432,76,4248,7.676e-3,7.676e-3,2.16e-4,2.59737e-4
+filtering/dropWhile-true/vector,2,1.5504934e-2,34032072,1.5412e-2,0.0,0.0,3440640,0,0,0,18,159805392,153,6800,1.4703e-2,1.4703e-2,3.61e-4,4.32655e-4
+filtering/dropWhile-true/vector,3,2.2525396e-2,49441432,2.2437e-2,0.0,0.0,3440640,0,0,0,21,239185840,229,9304,2.1516e-2,2.1516e-2,4.53e-4,5.7294e-4
+filtering/dropWhile-true/vector,4,3.179765e-2,69793283,3.1733e-2,0.0,0.0,3440640,0,0,0,19,319610720,306,11856,3.0473e-2,3.0473e-2,6.08e-4,7.92771e-4
+filtering/dropWhile-true/vector,5,3.9973771e-2,87739222,3.9886e-2,0.0,0.0,3440640,0,0,0,20,398991216,382,14376,3.8426e-2,3.8426e-2,7.19e-4,9.24356e-4
+filtering/dropWhile-true/vector,6,4.6164162e-2,101326604,4.6133e-2,0.0,0.0,3440640,0,0,0,16,479416144,459,16928,4.4505e-2,4.4505e-2,7.99e-4,1.028235e-3
+filtering/dropWhile-true/vector,7,5.2526215e-2,115290798,5.2527e-2,0.0,0.0,3440640,0,0,0,10,559841072,536,19480,5.0667e-2,5.0667e-2,8.85e-4,1.157497e-3
+filtering/dropWhile-true/vector,8,6.1625126e-2,135262160,6.1625e-2,0.0,0.0,3440640,0,0,0,7,639221416,612,22000,5.9551e-2,5.9551e-2,1.06e-3,1.376053e-3
+filtering/dropWhile-true/vector,9,7.0089536e-2,153840870,7.0013e-2,0.0,0.0,3440640,0,0,0,22,719646448,689,24552,6.751e-2,6.751e-2,1.228e-3,1.63915e-3
+filtering/dropWhile-true/vector,10,9.0595072e-2,198848858,9.0522e-2,0.0,0.0,3440640,0,0,0,32,799026896,765,27072,8.7372e-2,8.7372e-2,1.563e-3,1.973932e-3
+filtering/dropWhile-true/vector,11,7.8192118e-2,171625368,7.8235e-2,0.0,0.0,3440640,0,0,0,7,879451824,842,29624,7.5733e-2,7.5733e-2,1.253e-3,1.638837e-3
+filtering/dropWhile-true/vector,12,9.9060963e-2,217430798,9.9011e-2,0.0,0.0,3440640,0,0,0,25,959876704,919,32176,9.5663e-2,9.5663e-2,1.633e-3,2.104227e-3
+filtering/dropWhile-true/vector,13,0.106566229,233904272,0.106459,0.0,0.0,3502080,9,0,0,39,1039257200,995,34696,0.102805,0.102805,1.752e-3,2.296639e-3
+filtering/dropWhile-true/vector,14,0.118904557,260985898,0.118645,0.0,0.0,3502080,0,0,0,67,1119682128,1072,37248,0.114449,0.114449,2.016e-3,2.598708e-3
+filtering/dropWhile-true/vector,15,0.132522059,290875196,0.132363,0.0,0.0,3502080,0,0,0,38,1199062576,1148,39768,0.127736,0.127736,2.181e-3,2.853414e-3
+filtering/dropWhile-true/vector,16,0.133974408,294063000,0.133946,0.0,0.0,3502080,0,0,0,41,1279487504,1225,42320,0.129352,0.129352,2.162e-3,2.850261e-3
+filtering/dropWhile-true/vector,17,0.133733977,293535300,0.133596,0.0,0.0,3502080,0,0,0,27,1359912408,1302,44872,0.129076,0.129076,2.122e-3,2.831792e-3
+filtering/dropWhile-true/vector,18,0.139843663,306945502,0.13977,0.0,0.0,3502080,0,0,0,24,1439292880,1378,47392,0.135177,0.135177,2.271e-3,3.000765e-3
+filtering/dropWhile-true/vector,19,0.143310099,314554096,0.143247,0.0,0.0,3502080,0,0,0,25,1519717808,1455,49944,0.138634,0.138634,2.248e-3,3.003219e-3
+filtering/dropWhile-true/vector,20,0.147427667,323591822,0.147401,0.0,0.0,3502080,0,0,0,27,1599098256,1531,52464,0.142585,0.142585,2.357e-3,3.099434e-3
+filtering/dropWhile-true/vector,21,0.162737276,357195177,0.162729,0.0,0.0,3502080,0,0,0,38,1679523064,1608,55016,0.157171,0.157171,2.641e-3,3.438562e-3
+filtering/dropWhile-true/vector,22,0.169263036,371518673,0.169271,0.0,0.0,3502080,0,0,0,29,1759948112,1685,57568,0.163713,0.163713,2.732e-3,3.550035e-3
+filtering/dropWhile-true/vector,23,0.190786425,418760786,0.189773,0.0,0.0,3502080,0,0,0,117,1839328560,1761,60088,0.182876,0.182876,3.23e-3,4.194717e-3
+filtering/dropWhile-true/vector,25,0.196923217,432230564,0.196471,0.0,0.0,3502080,0,0,0,101,1999133936,1914,65160,0.189186,0.189186,3.404e-3,4.462833e-3
+filtering/dropWhile-true/vector,26,0.202147628,443697704,0.201856,0.0,0.0,3502080,0,0,0,93,2079558816,1991,67712,0.194819,0.194819,3.306e-3,4.332527e-3
+filtering/dropWhile-true/vector,27,0.229237312,503157402,0.228296,0.0,0.0,3502080,0,0,0,153,2159983792,2068,70264,0.219788,0.219788,3.856e-3,5.058029e-3
+filtering/dropWhile-true/vector,28,0.226260528,496623536,0.226008,0.0,0.0,3502080,0,0,0,57,2239364240,2144,72784,0.218366,0.218366,3.71e-3,4.91909e-3
+filtering/dropWhile-true/vector,30,0.239623287,525953794,0.238638,0.0,0.0,3502080,0,0,0,147,2399169616,2297,77856,0.229975,0.229975,3.98e-3,5.244879e-3
+filtering/dropWhile-true/vector,31,0.252903082,555101852,0.251996,0.0,0.0,3502080,0,0,0,188,2479594544,2374,80408,0.242561,0.242561,4.181e-3,5.604701e-3
+filtering/dropWhile-true/vector,33,0.264248101,580003276,0.263371,0.0,0.0,3502080,0,0,0,177,2639399896,2527,85480,0.253413,0.253413,4.527e-3,5.870739e-3
+filtering/dropWhile-true/vector,35,0.276104109,606026184,0.275566,0.0,0.0,3502080,0,0,0,129,2799205296,2680,90552,0.265969,0.265969,4.419e-3,5.87478e-3
+filtering/dropWhile-true/vector,36,0.300525113,659628344,0.298545,0.0,0.0,3502080,0,0,0,257,2879630288,2757,93104,0.287413,0.287413,5.09e-3,6.586851e-3
+filtering/dropWhile-true/vector,38,0.316546017,694792912,0.311584,0.0,0.0,3502080,0,0,0,109,3039435600,2910,98176,0.301036,0.301036,4.967e-3,6.501522e-3
+filtering/dropWhile-true/vector,40,0.326251647,716096006,0.324007,0.0,0.0,3502080,0,0,0,308,3199240872,3063,103248,0.311908,0.311908,5.454e-3,7.193065e-3
+filtering/dropWhile-true/streamly,1,1.7669419e-2,38782944,1.7544e-2,1.7231e-2,0.0,3428352,1,0,0,28,95989872,93,3560,1.6964e-2,1.6964e-2,2.7e-4,3.4225e-4
+filtering/dropWhile-true/streamly,2,3.43153e-2,75319310,3.4225e-2,0.0,0.0,3440640,0,0,0,30,191987864,186,5424,3.3364e-2,3.3364e-2,4.26e-4,5.2336e-4
+filtering/dropWhile-true/streamly,3,5.3575348e-2,117593558,5.3123e-2,0.0,0.0,3440640,0,0,0,75,287981792,279,7272,5.1553e-2,5.1553e-2,6.6e-4,8.21751e-4
+filtering/dropWhile-true/streamly,4,7.1460739e-2,156850532,7.1123e-2,0.0,0.0,3440640,0,0,0,83,383975728,372,9136,6.915e-2,6.915e-2,7.7e-4,9.8259e-4
+filtering/dropWhile-true/streamly,5,8.4574418e-2,185634036,8.4411e-2,0.0,0.0,3440640,0,0,0,45,479969648,465,11000,8.2365e-2,8.2365e-2,8.67e-4,1.09421e-3
+filtering/dropWhile-true/streamly,6,0.103058587,226205236,0.102967,0.0,0.0,3440640,0,0,0,36,575963576,558,12864,0.100841,0.100841,1.025e-3,1.329925e-3
+filtering/dropWhile-true/streamly,7,0.138644826,304314194,0.135879,0.0,0.0,3440640,0,0,0,147,671957504,651,14728,0.13215,0.13215,1.514e-3,1.872553e-3
+filtering/dropWhile-true/streamly,8,0.148364072,325647154,0.146933,0.0,0.0,3440640,0,0,0,233,767951376,744,16592,0.142268,0.142268,1.797e-3,2.24895e-3
+filtering/dropWhile-true/streamly,9,0.165588922,363454896,0.163143,0.0,0.0,3440640,0,0,0,390,863945360,837,18456,0.157328,0.157328,1.914e-3,2.425867e-3
+filtering/dropWhile-true/streamly,10,0.177574615,389761902,0.175865,0.0,0.0,3440640,0,0,0,291,959939288,930,20320,0.170728,0.170728,1.905e-3,2.415156e-3
+filtering/dropWhile-true/streamly,11,0.198290114,435230754,0.196635,0.0,0.0,3440640,0,0,0,343,1055933216,1023,22184,0.190526,0.190526,2.195e-3,2.889609e-3
+filtering/dropWhile-true/streamly,12,0.212521758,466468062,0.211175,0.0,0.0,3440640,0,0,0,200,1151927144,1116,24048,0.205647,0.205647,2.193e-3,2.784208e-3
+filtering/dropWhile-true/streamly,13,0.2311229,507296084,0.230432,0.0,0.0,3440640,0,0,0,167,1247921072,1209,25912,0.224721,0.224721,2.226e-3,2.858965e-3
+filtering/dropWhile-true/streamly,14,0.265742955,583284316,0.260436,0.0,0.0,3440640,0,0,0,494,1343915000,1302,27776,0.251158,0.251158,2.999e-3,3.77619e-3
+filtering/dropWhile-true/streamly,15,0.270727497,594224976,0.269563,0.0,0.0,3440640,0,0,0,162,1439908928,1395,29640,0.263061,0.263061,2.496e-3,3.326989e-3
+filtering/dropWhile-true/streamly,16,0.277815523,609782620,0.276134,0.0,0.0,3440640,0,0,0,169,1535902856,1488,31504,0.269812,0.269812,2.629e-3,3.387888e-3
+filtering/dropWhile-true/streamly,17,0.299591015,657578062,0.298367,0.0,0.0,3440640,0,0,0,130,1631896808,1581,33368,0.29214,0.29214,2.754e-3,3.53595e-3
+filtering/dropWhile-true/streamly,18,0.313040409,687098392,0.31132,0.0,0.0,3440640,0,0,0,225,1727890712,1674,35232,0.303961,0.303961,3.017e-3,3.852946e-3
+filtering/dropWhile-true/streamly,19,0.318153864,698322002,0.317938,0.0,0.0,3440640,0,0,0,103,1823884640,1767,37096,0.311737,0.311737,2.778e-3,3.625697e-3
+filtering/dropWhile-true/streamly,20,0.342873958,752580634,0.342636,0.0,0.0,3440640,0,0,0,121,1919878568,1860,38960,0.335559,0.335559,3.04e-3,3.914292e-3
+filtering/dropWhile-true/streamly,21,0.365873988,803063838,0.36545,0.0,0.0,3440640,0,0,0,95,2015872440,1953,40824,0.358614,0.358614,3.09e-3,4.106908e-3
+filtering/dropWhile-true/streamly,22,0.376592049,826589098,0.376457,0.0,0.0,3440640,0,0,0,74,2111866424,2046,42688,0.369639,0.369639,3.073e-3,4.15995e-3
+filtering/dropWhile-true/streamly,23,0.398512276,874702222,0.39819,0.0,0.0,3440640,0,0,0,109,2207860352,2139,44552,0.390635,0.390635,3.381e-3,4.518625e-3
+filtering/dropWhile-true/streamly,25,0.418736153,919092006,0.418534,0.0,0.0,3440640,0,0,0,85,2399848208,2325,48280,0.410751,0.410751,3.416e-3,4.566693e-3
+filtering/dropWhile-true/streaming,1,1.6932535e-2,37165554,1.6808e-2,1.6161e-2,0.0,3428352,1,0,0,26,143470768,139,8520,1.5757e-2,1.5757e-2,4.08e-4,5.07955e-4
+filtering/dropWhile-true/streaming,2,2.9419122e-2,64572596,2.9407e-2,0.0,0.0,3440640,0,0,0,8,287981792,279,15360,2.8419e-2,2.8419e-2,4.97e-4,6.3667e-4
+filtering/dropWhile-true/streaming,3,4.9248848e-2,108097272,4.9274e-2,0.0,0.0,3440640,0,0,0,8,431456608,418,22136,4.7708e-2,4.7708e-2,7.77e-4,1.007635e-3
+filtering/dropWhile-true/streaming,4,5.9888114e-2,131449550,5.9913e-2,0.0,0.0,3440640,0,0,0,9,575963624,558,28976,5.8077e-2,5.8077e-2,9.31e-4,1.194202e-3
+filtering/dropWhile-true/streaming,5,7.9099066e-2,173616060,7.9081e-2,0.0,0.0,3440640,0,0,0,11,719438432,697,35768,7.6638e-2,7.6638e-2,1.244e-3,1.594401e-3
+filtering/dropWhile-true/streaming,6,8.8857946e-2,195035988,8.8657e-2,0.0,0.0,3440640,0,0,0,54,863945440,837,42608,8.5725e-2,8.5725e-2,1.45e-3,1.868337e-3
+filtering/dropWhile-true/streaming,7,0.119905581,263183058,0.119445,0.0,0.0,3440640,0,0,0,49,1007420256,976,49400,0.115534,0.115534,1.863e-3,2.398914e-3
+filtering/dropWhile-true/streaming,8,0.136124464,298782214,0.134241,0.0,0.0,3440640,0,0,0,185,1151927208,1116,56240,0.12916,0.12916,2.246e-3,2.907993e-3
+filtering/dropWhile-true/streaming,9,0.152573615,334886758,0.151072,0.0,0.0,3440640,0,0,0,113,1295402080,1255,63032,0.145202,0.145202,2.399e-3,3.147859e-3
+filtering/dropWhile-true/streaming,10,0.166140388,364664720,0.164205,0.0,0.0,3440640,0,0,0,138,1439909088,1395,69872,0.157718,0.157718,2.686e-3,3.579781e-3
+filtering/dropWhile-true/streaming,11,0.177632887,389889850,0.176568,0.0,0.0,3440640,0,0,0,95,1583383904,1534,76664,0.170747,0.170747,2.674e-3,3.581701e-3
+filtering/dropWhile-true/streaming,12,0.200962251,441095890,0.200255,0.0,0.0,3440640,0,0,0,102,1727890912,1674,83504,0.193432,0.193432,3.231e-3,4.387014e-3
+filtering/dropWhile-true/streaming,13,0.214250464,470262453,0.21283,0.0,0.0,3440640,0,0,0,125,1871365728,1813,90296,0.20543,0.20543,3.338e-3,4.75082e-3
+filtering/dropWhile-true/streaming,14,0.225231788,494365529,0.223495,0.0,0.0,3440640,0,0,0,159,2015872736,1953,97136,0.215875,0.215875,3.478e-3,4.601353e-3
+filtering/dropWhile-true/streaming,15,0.246191301,540370010,0.24528,0.0,0.0,3440640,0,0,0,150,2159347552,2092,103928,0.237185,0.237185,3.78e-3,4.983339e-3
+filtering/dropWhile-true/streaming,16,0.249808002,548308384,0.249074,0.0,0.0,3440640,0,0,0,124,2303854560,2232,110768,0.240635,0.240635,3.834e-3,5.038188e-3
+filtering/dropWhile-true/streaming,17,0.273256216,599775282,0.272805,0.0,0.0,3440640,0,0,0,90,2447329400,2371,117560,0.26411,0.26411,4.128e-3,5.482732e-3
+filtering/dropWhile-true/streaming,18,0.290250509,637076438,0.28809,0.0,0.0,3440640,0,0,0,366,2591836384,2511,124400,0.27709,0.27709,4.753e-3,6.225357e-3
+filtering/dropWhile-true/streaming,19,0.314090189,689402537,0.312393,0.0,0.0,3440640,0,0,0,353,2735311200,2650,131192,0.300665,0.300665,5.267e-3,6.783161e-3
+filtering/dropWhile-true/streaming,20,0.318102993,698210366,0.317543,0.0,0.0,3440640,0,0,0,171,2879818208,2790,138032,0.306427,0.306427,5.144e-3,6.615736e-3
+filtering/dropWhile-true/streaming,21,0.350682727,769720942,0.347746,0.0,0.0,3440640,0,0,0,428,3023292968,2929,144824,0.333257,0.333257,6.209e-3,7.92674e-3
+filtering/dropWhile-true/streaming,22,0.375537866,824275268,0.373243,0.0,0.0,3440640,0,0,0,435,3167800032,3069,151664,0.359603,0.359603,6.053e-3,7.863205e-3
+filtering/dropWhile-true/streaming,23,0.375159632,823445064,0.373422,0.0,0.0,3440640,0,0,0,291,3311274848,3208,158456,0.36031,0.36031,6.129e-3,7.929318e-3
+filtering/dropWhile-true/streaming,25,0.401538841,881345330,0.400968,0.0,0.0,3440640,0,0,0,180,3599256672,3487,172088,0.388089,0.388089,6.03e-3,7.86039e-3
+filtering/dropWhile-true/streaming,26,0.4183663,918280176,0.417768,0.0,0.0,3440640,0,0,0,184,3743763680,3627,178928,0.403892,0.403892,6.56e-3,8.60353e-3
+zip/vector,1,7.683847e-3,16865405,7.638e-3,7.482e-3,0.0,3416064,1,0,0,8,79376432,76,4248,7.23e-3,7.23e-3,2.55e-4,2.96903e-4
+zip/vector,2,1.3111107e-2,28777850,1.3074e-2,0.0,0.0,3424256,0,0,0,10,159805392,153,6800,1.2474e-2,1.2474e-2,3.29e-4,4.05886e-4
+zip/vector,3,2.1681572e-2,47589298,2.1576e-2,0.0,0.0,3424256,0,0,0,24,239185840,229,9304,2.0462e-2,2.0462e-2,5.76e-4,6.84846e-4
+zip/vector,4,2.5786131e-2,56598474,2.5787e-2,0.0,0.0,3424256,0,0,0,4,319610632,306,11856,2.4737e-2,2.4737e-2,5.74e-4,7.23188e-4
+zip/vector,5,3.5036937e-2,76903267,3.5027e-2,0.0,0.0,3424256,0,0,0,12,398991216,382,14376,3.3528e-2,3.3528e-2,7.98e-4,9.81704e-4
+zip/vector,6,4.0740862e-2,89422883,4.0713e-2,0.0,0.0,3424256,0,0,0,14,479416144,459,16928,3.9002e-2,3.9002e-2,8.8e-4,1.147453e-3
+zip/vector,7,4.8290545e-2,105993842,4.8322e-2,0.0,0.0,3424256,0,0,0,10,559841072,536,19480,4.6327e-2,4.6327e-2,1.021e-3,1.339783e-3
+zip/vector,8,5.9135622e-2,129797912,5.9126e-2,0.0,0.0,3424256,0,0,0,11,639221416,612,22000,5.6675e-2,5.6675e-2,1.295e-3,1.679461e-3
+zip/vector,9,6.1745167e-2,135525652,6.1734e-2,0.0,0.0,3424256,0,0,0,16,719646448,689,24552,5.9231e-2,5.9231e-2,1.299e-3,1.684874e-3
+zip/vector,10,6.7464504e-2,148079126,6.7474e-2,0.0,0.0,3424256,0,0,0,17,799026896,765,27072,6.4602e-2,6.4602e-2,1.456e-3,1.839912e-3
+zip/vector,11,7.9088661e-2,173593228,7.9056e-2,0.0,0.0,3424256,0,0,0,28,879451824,842,29624,7.5608e-2,7.5608e-2,1.772e-3,2.258178e-3
+zip/vector,12,8.701393e-2,190988536,8.6913e-2,0.0,0.0,3424256,0,0,0,34,959876704,919,32176,8.3306e-2,8.3306e-2,1.812e-3,2.332001e-3
+zip/vector,13,8.9756413e-2,197008062,8.9688e-2,0.0,0.0,3424256,0,0,0,30,1039257200,995,34696,8.602e-2,8.602e-2,1.855e-3,2.383956e-3
+zip/vector,14,0.10221722,224358558,0.10222,0.0,0.0,3424256,0,0,0,23,1119682128,1072,37248,9.8051e-2,9.8051e-2,2.11e-3,2.692575e-3
+zip/vector,15,0.104529212,229433193,0.104453,0.0,0.0,3424256,0,0,0,31,1199062576,1148,39768,0.10004,0.10004,2.132e-3,2.810485e-3
+zip/vector,16,0.113145631,248345490,0.113031,0.0,0.0,3424256,0,0,0,32,1279487504,1225,42320,0.108375,0.108375,2.317e-3,3.009606e-3
+zip/vector,17,0.118522569,260147482,0.118456,0.0,0.0,3424256,0,0,0,32,1359912408,1302,44872,0.113589,0.113589,2.391e-3,3.106356e-3
+zip/vector,18,0.127740941,280381026,0.126686,0.0,0.0,3424256,0,0,0,145,1439292880,1378,47392,0.120795,0.120795,2.834e-3,3.623444e-3
+zip/vector,19,0.134654417,295555586,0.134266,0.0,0.0,3424256,0,0,0,102,1519717808,1455,49944,0.128309,0.128309,2.857e-3,3.666448e-3
+zip/vector,20,0.129043353,283239720,0.129001,0.0,0.0,3424256,0,0,0,20,1599098256,1531,52464,0.12409,0.12409,2.481e-3,3.281233e-3
+zip/vector,21,0.142491187,312756664,0.142449,0.0,0.0,3424256,0,0,0,45,1679523080,1608,55016,0.136786,0.136786,2.827e-3,3.683298e-3
+zip/vector,22,0.153955306,337919444,0.152937,0.0,0.0,3424256,0,0,0,132,1759948112,1685,57568,0.14613,0.14613,3.24e-3,4.209458e-3
+zip/vector,23,0.160516397,352320536,0.159598,0.0,0.0,3424256,0,0,0,180,1839328560,1761,60088,0.152086,0.152086,3.577e-3,4.627923e-3
+zip/vector,25,0.173465461,380742657,0.172544,0.0,0.0,3424256,0,0,0,219,1999133936,1914,65160,0.164409,0.164409,3.78e-3,4.954557e-3
+zip/vector,26,0.18455826,405090454,0.183898,0.0,0.0,3424256,0,0,0,146,2079558816,1991,67712,0.175819,0.175819,3.889e-3,5.008686e-3
+zip/vector,27,0.188463595,413662366,0.188129,0.0,0.0,3485696,9,0,0,83,2159983792,2068,70264,0.180378,0.180378,3.77e-3,4.967054e-3
+zip/vector,28,0.191100259,419449624,0.191079,0.0,0.0,3485696,0,0,0,35,2239364240,2144,72784,0.1838,0.1838,3.661e-3,4.776023e-3
+zip/vector,30,0.20456733,449008766,0.204476,0.0,0.0,3485696,0,0,0,52,2399169616,2297,77856,0.196414,0.196414,3.974e-3,5.194934e-3
+zip/vector,31,0.227664478,499705120,0.226462,0.0,0.0,3485696,0,0,0,240,2479594544,2374,80408,0.215487,0.215487,5.046e-3,6.492565e-3
+zip/vector,33,0.240540111,527966736,0.239188,0.0,0.0,3485696,0,0,0,272,2639399896,2527,85480,0.227956,0.227956,5.043e-3,6.546969e-3
+zip/vector,35,0.269672247,591908782,0.265038,0.0,0.0,3485696,0,0,0,863,2799205296,2680,90552,0.24979,0.24979,6.241e-3,8.150542e-3
+zip/vector,36,0.254952197,559599444,0.253315,0.0,0.0,3485696,0,0,0,340,2879630224,2757,93104,0.241036,0.241036,5.497e-3,7.063438e-3
+zip/vector,38,0.272966071,599138462,0.271473,0.0,0.0,3485696,0,0,0,217,3039435600,2910,98176,0.259161,0.259161,5.58e-3,7.317127e-3
+zip/vector,40,0.275339807,604348626,0.274336,0.0,0.0,3485696,0,0,0,142,3199240872,3063,103248,0.262727,0.262727,5.521e-3,7.18571e-3
+zip/vector,42,0.303734506,666672703,0.30238,0.0,0.0,3485696,0,0,0,218,3359046352,3216,108320,0.289412,0.289412,5.985e-3,7.886957e-3
+zip/vector,44,0.308358453,676821866,0.307307,0.0,0.0,3485696,0,0,0,186,3519896208,3370,113424,0.294147,0.294147,6.389e-3,8.275378e-3
+zip/streamly,1,4.3709192e-2,95938136,4.3734e-2,4.3043e-2,0.0,3416064,1,0,0,6,391368744,375,50024,4.2252e-2,4.2252e-2,7.94e-4,1.016534e-3
+zip/streamly,2,8.7827104e-2,192773376,8.77e-2,0.0,0.0,3424256,0,0,0,37,783789192,751,98448,8.4377e-2,8.4377e-2,1.619e-3,2.04824e-3
+zip/streamly,3,0.124911256,274170106,0.124693,0.0,0.0,3424256,0,0,0,53,1175161952,1126,146760,0.120259,0.120259,2.273e-3,2.87454e-3
+zip/streamly,4,0.167549891,367758483,0.167443,0.0,0.0,3424256,0,0,0,52,1567578320,1502,195208,0.161764,0.161764,2.918e-3,3.724146e-3
+zip/streamly,5,0.210313336,461620764,0.210035,0.0,0.0,3424256,0,0,0,93,1959994872,1878,243696,0.201997,0.201997,3.895e-3,4.947848e-3
+zip/streamly,6,0.25560384,561029764,0.253249,0.0,0.0,3424256,0,0,0,327,2351367616,2253,292024,0.242387,0.242387,5.062e-3,6.429098e-3
+zip/streamly,7,0.307278389,674451208,0.305478,0.0,0.0,3424256,0,0,0,394,2743784040,2629,340512,0.292627,0.292627,5.841e-3,7.366196e-3
+zip/streamly,8,0.333791012,732644282,0.332871,0.0,0.0,3424256,0,0,0,244,3135156696,3004,388760,0.320399,0.320399,6.226e-3,7.905119e-3
+zip/streamly,9,0.375116759,823350976,0.374352,0.0,0.0,3424256,0,0,0,135,3527573208,3380,437288,0.36133,0.36133,6.688e-3,8.550062e-3
+zip/streamly,10,0.420252683,922420662,0.418252,0.0,0.0,3424256,0,0,0,307,3919989704,3756,485736,0.40236,0.40236,7.686e-3,9.722504e-3
+zip/streamly,11,0.483540727,1061332814,0.481934,0.0,0.0,3424256,0,0,0,352,4311362464,4131,534064,0.4625,0.4625,9.133e-3,1.1582087e-2
+zip/streamly,12,0.520588604,1142649930,0.51928,0.0,0.0,3424256,0,0,0,322,4703778840,4507,582472,0.499551,0.499551,9.747e-3,1.2373537e-2
+zip/streamly,13,0.574940958,1261948932,0.574058,0.0,0.0,3424256,0,0,0,280,5095151648,4882,630864,0.552797,0.552797,1.0211e-2,1.3014991e-2
+zip/streamly,14,0.583141677,1279948834,0.582553,0.0,0.0,3424256,0,0,0,204,5487568056,5258,679288,0.562187,0.562187,9.861e-3,1.2849564e-2
+zip/streamly,15,0.646907793,1419910331,0.645088,0.0,0.0,3424256,0,0,0,358,5879984552,5634,727712,0.621249,0.621249,1.1511e-2,1.4631089e-2
+zip/streaming,1,3.0845058e-2,67702408,3.0834e-2,3.0432e-2,0.0,3399680,1,0,0,8,247831952,239,26168,2.9934e-2,2.9934e-2,5.01e-4,6.18679e-4
+zip/streaming,2,6.0442e-2,132665326,6.0398e-2,0.0,0.0,3407872,0,0,0,23,495672112,478,50528,5.8674e-2,5.8674e-2,8.73e-4,1.098866e-3
+zip/streaming,3,9.4871654e-2,208235624,9.4872e-2,0.0,0.0,3407872,0,0,0,34,743508096,717,74952,9.2131e-2,9.2131e-2,1.371e-3,1.765677e-3
+zip/streaming,4,0.123065382,270118560,0.12295,0.0,0.0,3407872,0,0,0,39,991343984,956,99360,0.119426,0.119426,1.753e-3,2.216481e-3
+zip/streaming,5,0.159554987,350210312,0.15939,0.0,0.0,3407872,0,0,0,47,1239180056,1195,123720,0.154642,0.154642,2.313e-3,2.949625e-3
+zip/streaming,6,0.187367409,411256309,0.187194,0.0,0.0,3407872,0,0,0,51,1487016120,1434,148120,0.181819,0.181819,2.707e-3,3.423179e-3
+zip/streaming,7,0.216049864,474212028,0.21598,0.0,0.0,3407872,0,0,0,43,1735889072,1674,172624,0.21009,0.21009,2.899e-3,3.749832e-3
+zip/streaming,8,0.246711359,541511470,0.246637,0.0,0.0,3407872,0,0,0,30,1983724976,1913,197112,0.24029,0.24029,3.243e-3,4.214351e-3
+zip/streaming,9,0.271791645,596560692,0.271804,0.0,0.0,3407872,0,0,0,38,2231561032,2152,221432,0.264834,0.264834,3.562e-3,4.593992e-3
+zip/streaming,10,0.308732336,677642522,0.308607,0.0,0.0,3407872,0,0,0,56,2479397016,2391,245832,0.300297,0.300297,4.206e-3,5.469876e-3
+zip/streaming,11,0.347452523,762630220,0.347011,0.0,0.0,3407872,0,0,0,114,2727233000,2630,270272,0.336984,0.336984,4.825e-3,6.195578e-3
+zip/streaming,12,0.386086847,847429428,0.385794,0.0,0.0,3407872,0,0,0,113,2975068960,2869,294720,0.374617,0.374617,5.467e-3,6.96345e-3
+zip/streaming,13,0.417773294,916978597,0.416788,0.0,0.0,3469312,9,0,0,260,3223942016,3109,319144,0.403799,0.403799,6.044e-3,7.698823e-3
+zip/streaming,14,0.445305768,977410176,0.443878,0.0,0.0,3469312,0,0,0,294,3471777992,3348,343512,0.429543,0.429543,6.474e-3,8.234822e-3
+zip/streaming,15,0.461385698,1012704302,0.46082,0.0,0.0,3469312,0,0,0,107,3719613976,3587,367912,0.448424,0.448424,5.997e-3,7.920114e-3
+zip/streaming,16,0.515070066,1130537210,0.514064,0.0,0.0,3469312,0,0,0,168,3967449960,3826,392352,0.499407,0.499407,7.063e-3,9.060524e-3
+zip/streaming,17,0.549496817,1206101088,0.547391,0.0,0.0,3469312,0,0,0,422,4215285944,4065,416832,0.529865,0.529865,8.175e-3,1.0383137e-2
+zip/streaming,18,0.567828414,1246337470,0.565722,0.0,0.0,3469312,0,0,0,500,4463121920,4304,441120,0.547877,0.547877,8.062e-3,1.0468191e-2
+compose/mapM/vector,1,6.700557e-3,14707154,6.701e-3,6.589e-3,0.0,3420160,1,0,0,4,79376432,76,4248,6.382e-3,6.382e-3,2.11e-4,2.46602e-4
+compose/mapM/vector,2,1.3238821e-2,29058130,1.3234e-2,0.0,0.0,3428352,0,0,0,2,159805392,153,6800,1.2648e-2,1.2648e-2,3.37e-4,4.32773e-4
+compose/mapM/vector,3,1.9545534e-2,42900851,1.9544e-2,0.0,0.0,3428352,0,0,0,4,239185840,229,9304,1.872e-2,1.872e-2,4.37e-4,5.64047e-4
+compose/mapM/vector,4,2.6807754e-2,58840852,2.6799e-2,0.0,0.0,3428352,0,0,0,5,319610672,306,11856,2.5756e-2,2.5756e-2,5.46e-4,7.18857e-4
+compose/mapM/vector,5,3.2416679e-2,71151988,3.237e-2,0.0,0.0,3428352,0,0,0,9,398991216,382,14376,3.1021e-2,3.1021e-2,6.85e-4,8.66709e-4
+compose/mapM/vector,6,4.3459813e-2,95390780,4.3433e-2,0.0,0.0,3428352,0,0,0,10,479416144,459,16928,4.153e-2,4.153e-2,8.96e-4,1.196184e-3
+compose/mapM/vector,7,5.0939721e-2,111808585,5.0869e-2,0.0,0.0,3428352,0,0,0,10,559841072,536,19480,4.8954e-2,4.8954e-2,9.71e-4,1.277143e-3
+compose/mapM/vector,8,5.8488559e-2,128377662,5.79e-2,0.0,0.0,3428352,0,0,0,40,639221416,612,22000,5.5358e-2,5.5358e-2,1.219e-3,1.564837e-3
+compose/mapM/vector,9,6.3949817e-2,140364664,6.3541e-2,0.0,0.0,3428352,0,0,0,97,719646448,689,24552,6.0401e-2,6.0401e-2,1.37e-3,1.779771e-3
+compose/mapM/vector,10,7.0363129e-2,154441382,7.0074e-2,0.0,0.0,3428352,0,0,0,68,799026896,765,27072,6.6914e-2,6.6914e-2,1.426e-3,1.835973e-3
+compose/mapM/vector,11,7.3548242e-2,161432446,7.3302e-2,0.0,0.0,3428352,0,0,0,68,879451824,842,29624,7.0174e-2,7.0174e-2,1.462e-3,1.915977e-3
+compose/mapM/vector,12,8.3440971e-2,183146180,8.2667e-2,0.0,0.0,3428352,0,0,0,91,959876704,919,32176,7.8945e-2,7.8945e-2,1.67e-3,2.155194e-3
+compose/mapM/vector,13,8.8992701e-2,195331766,8.8676e-2,0.0,0.0,3489792,9,0,0,71,1039257200,995,34696,8.4839e-2,8.4839e-2,1.813e-3,2.331199e-3
+compose/mapM/vector,14,9.6074151e-2,210874988,9.5612e-2,0.0,0.0,3489792,0,0,0,105,1119682128,1072,37248,9.1484e-2,9.1484e-2,1.916e-3,2.494877e-3
+compose/mapM/vector,15,0.102660209,225330884,0.102416,0.0,0.0,3489792,0,0,0,81,1199062576,1148,39768,9.8146e-2,9.8146e-2,1.992e-3,2.627634e-3
+compose/mapM/vector,16,0.113777632,249732670,0.113427,0.0,0.0,3489792,0,0,0,83,1279487504,1225,42320,0.108678,0.108678,2.243e-3,2.937652e-3
+compose/mapM/vector,17,0.118325176,259714202,0.11821,0.0,0.0,3489792,0,0,0,44,1359912408,1302,44872,0.113468,0.113468,2.302e-3,2.973605e-3
+compose/mapM/vector,18,0.132006547,289743719,0.131766,0.0,0.0,3489792,0,0,0,50,1439292880,1378,47392,0.126719,0.126719,2.432e-3,3.176799e-3
+compose/mapM/vector,19,0.12893488,283001630,0.128892,0.0,0.0,3489792,0,0,0,33,1519717808,1455,49944,0.123847,0.123847,2.424e-3,3.164226e-3
+compose/mapM/vector,20,0.133665627,293385248,0.133511,0.0,0.0,3489792,0,0,0,31,1599098256,1531,52464,0.128495,0.128495,2.5e-3,3.274011e-3
+compose/mapM/vector,21,0.138401251,303779562,0.13824,0.0,0.0,3489792,0,0,0,20,1679523080,1608,55016,0.133076,0.133076,2.541e-3,3.375699e-3
+compose/mapM/vector,22,0.154835545,339851524,0.154681,0.0,0.0,3489792,0,0,0,31,1759948112,1685,57568,0.148825,0.148825,2.802e-3,3.731382e-3
+compose/mapM/vector,23,0.145861644,320154498,0.145874,0.0,0.0,3489792,0,0,0,24,1839328560,1761,60088,0.140352,0.140352,2.656e-3,3.597203e-3
+compose/mapM/vector,25,0.162139459,355883006,0.162115,0.0,0.0,3489792,0,0,0,20,1999133936,1914,65160,0.156134,0.156134,2.906e-3,3.86922e-3
+compose/mapM/vector,26,0.176128511,386587860,0.17571,0.0,0.0,3489792,0,0,0,37,2079558816,1991,67712,0.16873,0.16873,3.455e-3,4.574818e-3
+compose/mapM/vector,27,0.191084991,419416117,0.189932,0.0,0.0,3489792,0,0,0,148,2159983792,2068,70264,0.18212,0.18212,3.577e-3,4.770154e-3
+compose/mapM/vector,28,0.193847659,425479923,0.19349,0.0,0.0,3489792,0,0,0,67,2239364240,2144,72784,0.186201,0.186201,3.394e-3,4.610276e-3
+compose/mapM/vector,30,0.212231523,465831042,0.21164,0.0,0.0,3489792,0,0,0,77,2399169616,2297,77856,0.203532,0.203532,3.863e-3,5.141573e-3
+compose/mapM/vector,31,0.21835368,479268668,0.217222,0.0,0.0,3489792,0,0,0,99,2479594544,2374,80408,0.20886,0.20886,3.954e-3,5.365333e-3
+compose/mapM/vector,33,0.219777479,482393800,0.219411,0.0,0.0,3489792,0,0,0,71,2639399896,2527,85480,0.211286,0.211286,3.94e-3,5.24372e-3
+compose/mapM/vector,35,0.230801474,506590578,0.230783,0.0,0.0,3489792,0,0,0,50,2799205296,2680,90552,0.222102,0.222102,4.251e-3,5.577326e-3
+compose/mapM/vector,36,0.244083369,535743289,0.243961,0.0,0.0,3489792,0,0,0,63,2879630224,2757,93104,0.234317,0.234317,4.488e-3,5.974547e-3
+compose/mapM/vector,38,0.25413122,557797478,0.254012,0.0,0.0,3489792,0,0,0,85,3039435600,2910,98176,0.244236,0.244236,4.6e-3,6.115526e-3
+compose/mapM/vector,40,0.273093701,599418633,0.272971,0.0,0.0,3489792,0,0,0,84,3199240872,3063,103248,0.262282,0.262282,5.099e-3,6.720139e-3
+compose/mapM/vector,42,0.29429296,645949249,0.293802,0.0,0.0,3489792,0,0,0,89,3359046352,3216,108320,0.282377,0.282377,5.445e-3,7.08815e-3
+compose/mapM/vector,44,0.301666584,662133776,0.301683,0.0,0.0,3489792,0,0,0,63,3519896208,3370,113424,0.290087,0.290087,5.481e-3,7.264931e-3
+compose/mapM/vector,47,0.31467212,690679880,0.314573,0.0,0.0,3489792,0,0,0,71,3759082032,3599,121016,0.302747,0.302747,5.658e-3,7.465793e-3
+compose/mapM/streamly,1,6.1008774e-2,133909314,6.0996e-2,6.0369e-2,0.0,3399680,1,0,0,15,327687096,314,40704,5.9709e-2,5.9709e-2,6.64e-4,8.38348e-4
+compose/mapM/streamly,2,0.119605074,262523482,0.119461,0.0,0.0,3407872,0,0,0,36,655382288,628,79728,0.116884,0.116884,1.258e-3,1.634395e-3
+compose/mapM/streamly,3,0.169873385,372858336,0.169813,0.0,0.0,3407872,0,0,0,37,983073440,942,118720,0.166165,0.166165,1.742e-3,2.213669e-3
+compose/mapM/streamly,4,0.227604808,499574190,0.227655,0.0,0.0,3407872,0,0,0,31,1311808016,1257,157920,0.22327,0.22327,2.264e-3,2.825084e-3
+compose/mapM/streamly,5,0.29540245,648384483,0.295363,0.0,0.0,3407872,0,0,0,45,1639499208,1571,196928,0.289699,0.289699,2.84e-3,3.666172e-3
+compose/mapM/streamly,6,0.346538689,760624408,0.346486,0.0,0.0,3407872,0,0,0,72,1967190320,1885,235936,0.339884,0.339884,3.316e-3,4.240697e-3
+compose/mapM/streamly,7,0.409246536,898263072,0.409341,0.0,0.0,3407872,0,0,0,63,2295925000,2200,275080,0.401466,0.401466,3.992e-3,5.07e-3
+compose/mapM/streamly,8,0.465893256,1022598026,0.465845,0.0,0.0,3407872,0,0,0,106,2623615992,2514,314144,0.456284,0.456284,4.638e-3,5.895963e-3
+compose/mapM/streamly,9,0.531551825,1166713300,0.531037,0.0,0.0,3407872,0,0,0,145,2951307232,2828,353152,0.52048,0.52048,5.046e-3,6.538213e-3
+compose/mapM/streamly,10,0.581957611,1277349914,0.581783,0.0,0.0,3407872,0,0,0,118,3278998320,3142,392216,0.570606,0.570606,5.627e-3,7.228385e-3
+compose/mapM/streamly,11,0.651837441,1430730508,0.651118,0.0,0.0,3407872,0,0,0,204,3607733064,3457,431360,0.637948,0.637948,6.452e-3,8.242446e-3
+compose/mapM/streamly,12,0.738358678,1620637628,0.736789,0.0,0.0,3407872,0,0,0,317,3935424176,3771,470296,0.721177,0.721177,7.506e-3,9.502696e-3
+compose/mapM/streamly,13,0.789202983,1732236780,0.786129,0.0,0.0,3469312,9,0,0,566,4263115360,4085,509392,0.767499,0.767499,8.606e-3,1.0827259e-2
+compose/mapM/streaming,1,0.172159404,377875956,0.171182,0.168358,0.0,3395584,1,0,0,136,1247037616,1201,222928,0.165681,0.165681,2.681e-3,3.32324e-3
+compose/mapM/streaming,2,0.332334641,729447682,0.331773,0.0,0.0,3403776,0,0,0,168,2495121536,2403,434704,0.321991,0.321991,4.84e-3,6.219932e-3
+compose/mapM/streaming,3,0.494471934,1085325912,0.493966,0.0,0.0,3403776,0,0,0,206,3743201536,3605,646456,0.479931,0.479931,6.652e-3,8.681676e-3
+compose/mapM/streaming,4,0.672759167,1476652000,0.672094,0.0,0.0,3403776,0,0,0,255,4991281472,4807,944784,0.652056,0.652056,9.556e-3,1.2170553e-2
+compose/mapM/streaming,5,0.855894848,1878619990,0.850866,0.0,0.0,3403776,0,0,0,702,6239361536,6009,1079608,0.824202,0.824202,1.1859e-2,1.5634991e-2
+compose/mapM/streaming,6,0.994919793,2183768520,0.990081,0.0,0.0,3403776,0,0,0,838,7487441536,7211,1300992,0.959,0.959,1.4198e-2,1.8196907e-2
+compose/mapM/streaming,7,1.135981562,2493387698,1.133844,0.0,0.0,3403776,0,0,0,564,8735521536,8413,1512760,1.101398,1.101398,1.5667e-2,2.0283792e-2
+compose/mapM/streaming,8,1.302170033,2858157970,1.299041,0.0,0.0,3403776,0,0,0,566,9983601456,9615,1888016,1.262216,1.262216,1.7599e-2,2.3034616e-2
+compose/map-with-all-in-filter/vector,1,7.956241e-3,17463306,7.962e-3,7.833e-3,0.0,3391488,1,0,0,2,79376432,76,4248,7.639e-3,7.639e-3,1.96e-4,2.43868e-4
+compose/map-with-all-in-filter/vector,2,1.5904962e-2,34910117,1.5875e-2,0.0,0.0,3403776,0,0,0,8,159805392,153,6800,1.53e-2,1.53e-2,3.07e-4,3.85241e-4
+compose/map-with-all-in-filter/vector,3,2.4560247e-2,53907758,2.4528e-2,0.0,0.0,3403776,0,0,0,12,239185840,229,9304,2.3601e-2,2.3601e-2,5.03e-4,6.33052e-4
+compose/map-with-all-in-filter/vector,4,3.2036725e-2,70318020,3.2e-2,0.0,0.0,3403776,0,0,0,14,319610744,306,11856,3.0838e-2,3.0838e-2,5.88e-4,7.46663e-4
+compose/map-with-all-in-filter/vector,5,4.1419085e-2,90911546,4.129e-2,0.0,0.0,3403776,0,0,0,37,398991216,382,14376,3.964e-2,3.964e-2,8.06e-4,1.015475e-3
+compose/map-with-all-in-filter/vector,6,5.0972501e-2,111880549,5.0674e-2,0.0,0.0,3403776,0,0,0,56,479416144,459,16928,4.8635e-2,4.8635e-2,9.49e-4,1.207807e-3
+compose/map-with-all-in-filter/vector,7,5.7417175e-2,126026040,5.7325e-2,0.0,0.0,3403776,0,0,0,36,559841072,536,19480,5.5098e-2,5.5098e-2,1.076e-3,1.377955e-3
+compose/map-with-all-in-filter/vector,8,6.4796851e-2,142223888,6.469e-2,0.0,0.0,3403776,0,0,0,23,639221416,612,22000,6.2223e-2,6.2223e-2,1.231e-3,1.551182e-3
+compose/map-with-all-in-filter/vector,9,8.2167823e-2,180351724,8.1803e-2,0.0,0.0,3403776,0,0,0,60,719646448,689,24552,7.8415e-2,7.8415e-2,1.715e-3,2.089558e-3
+compose/map-with-all-in-filter/vector,10,9.0597213e-2,198853562,8.9747e-2,0.0,0.0,3403776,0,0,0,124,799026896,765,27072,8.5575e-2,8.5575e-2,1.845e-3,2.281812e-3
+compose/map-with-all-in-filter/vector,11,8.9352707e-2,196121958,8.9083e-2,0.0,0.0,3403776,0,0,0,58,879451824,842,29624,8.5789e-2,8.5789e-2,1.491e-3,1.962265e-3
+compose/map-with-all-in-filter/vector,12,9.6337715e-2,211453500,9.5952e-2,0.0,0.0,3403776,0,0,0,21,959876704,919,32176,9.2762e-2,9.2762e-2,1.554e-3,2.020267e-3
+compose/map-with-all-in-filter/vector,13,0.103014708,226108956,0.103029,0.0,0.0,3403776,0,0,0,18,1039257200,995,34696,9.9731e-2,9.9731e-2,1.608e-3,2.129064e-3
+compose/map-with-all-in-filter/vector,14,0.111828144,245453813,0.111777,0.0,0.0,3403776,0,0,0,28,1119682128,1072,37248,0.107884,0.107884,1.721e-3,2.350308e-3
+compose/map-with-all-in-filter/vector,15,0.121611214,266926724,0.121399,0.0,0.0,3403776,0,0,0,59,1199062576,1148,39768,0.117006,0.117006,2.051e-3,2.696317e-3
+compose/map-with-all-in-filter/vector,16,0.139343278,305847249,0.138956,0.0,0.0,3403776,0,0,0,102,1279487504,1225,42320,0.133768,0.133768,2.365e-3,3.072534e-3
+compose/map-with-all-in-filter/vector,17,0.141331963,310212228,0.140605,0.0,0.0,3403776,0,0,0,114,1359912408,1302,44872,0.135279,0.135279,2.472e-3,3.15718e-3
+compose/map-with-all-in-filter/vector,18,0.151549401,332638690,0.151172,0.0,0.0,3403776,0,0,0,87,1439292880,1378,47392,0.145712,0.145712,2.485e-3,3.244704e-3
+compose/map-with-all-in-filter/vector,19,0.153442083,336792962,0.15324,0.0,0.0,3403776,0,0,0,61,1519717808,1455,49944,0.148112,0.148112,2.409e-3,3.243087e-3
+compose/map-with-all-in-filter/vector,20,0.167848284,368413418,0.167505,0.0,0.0,3403776,0,0,0,81,1599098256,1531,52464,0.16183,0.16183,2.639e-3,3.530251e-3
+compose/map-with-all-in-filter/vector,21,0.171418285,376249278,0.171111,0.0,0.0,3403776,0,0,0,93,1679523080,1608,55016,0.164889,0.164889,2.872e-3,3.767586e-3
+compose/map-with-all-in-filter/vector,22,0.184150991,404196548,0.18346,0.0,0.0,3403776,0,0,0,170,1759948112,1685,57568,0.176231,0.176231,3.138e-3,4.02483e-3
+compose/map-with-all-in-filter/vector,23,0.200563731,440221180,0.19999,0.0,0.0,3403776,0,0,0,144,1839328560,1761,60088,0.192092,0.192092,3.485e-3,4.525851e-3
+compose/map-with-all-in-filter/vector,25,0.21520075,472348284,0.214983,0.0,0.0,3403776,0,0,0,91,1999133936,1914,65160,0.207142,0.207142,3.566e-3,4.674793e-3
+compose/map-with-all-in-filter/vector,26,0.220870022,484791814,0.220501,0.0,0.0,3403776,0,0,0,108,2079558816,1991,67712,0.212898,0.212898,3.54e-3,4.673492e-3
+compose/map-with-all-in-filter/vector,27,0.223612647,490811674,0.223531,0.0,0.0,3403776,0,0,0,59,2159983792,2068,70264,0.216182,0.216182,3.515e-3,4.614708e-3
+compose/map-with-all-in-filter/vector,28,0.222949046,489355148,0.223011,0.0,0.0,3403776,0,0,0,29,2239364240,2144,72784,0.216174,0.216174,3.355e-3,4.499013e-3
+compose/map-with-all-in-filter/vector,30,0.239375633,525410178,0.239286,0.0,0.0,3403776,0,0,0,39,2399169616,2297,77856,0.231693,0.231693,3.741e-3,4.938069e-3
+compose/map-with-all-in-filter/vector,31,0.259743411,570115818,0.258953,0.0,0.0,3403776,0,0,0,168,2479594544,2374,80408,0.249277,0.249277,4.273e-3,5.582421e-3
+compose/map-with-all-in-filter/vector,33,0.276686548,607304582,0.276456,0.0,0.0,3403776,0,0,0,82,2639399896,2527,85480,0.267291,0.267291,4.31e-3,5.713197e-3
+compose/map-with-all-in-filter/vector,35,0.280792005,616315748,0.28079,0.0,0.0,3403776,0,0,0,48,2799205296,2680,90552,0.271821,0.271821,4.26e-3,5.754274e-3
+compose/map-with-all-in-filter/vector,36,0.291672342,640197235,0.291696,0.0,0.0,3403776,0,0,0,45,2879630224,2757,93104,0.282497,0.282497,4.392e-3,5.901463e-3
+compose/map-with-all-in-filter/vector,38,0.311762237,684292890,0.311695,0.0,0.0,3407872,1,0,0,72,3039435600,2910,98176,0.301372,0.301372,4.866e-3,6.471216e-3
+compose/map-with-all-in-filter/vector,40,0.326029796,715609058,0.325973,0.0,0.0,3407872,0,0,0,62,3199240872,3063,103248,0.315579,0.315579,5.0e-3,6.711226e-3
+compose/map-with-all-in-filter/streamly,1,0.137474939,301746348,0.137295,0.135137,0.0,3411968,1,0,0,75,959873000,919,325448,0.132877,0.132877,2.264e-3,2.77529e-3
+compose/map-with-all-in-filter/streamly,2,0.275753118,605255808,0.275158,0.0,0.0,3424256,0,0,0,184,1919754264,1838,502160,0.266075,0.266075,4.246e-3,5.271178e-3
+compose/map-with-all-in-filter/streamly,3,0.408866857,897429704,0.406915,0.0,0.0,3424256,0,0,0,272,2879631280,2757,855304,0.394243,0.394243,5.887e-3,7.441543e-3
+compose/map-with-all-in-filter/streamly,4,0.526813913,1156313984,0.526507,0.0,0.0,3424256,0,0,0,107,3839508312,3676,1149648,0.512417,0.512417,7.196e-3,9.093696e-3
+compose/map-with-all-in-filter/streamly,5,0.648347049,1423069362,0.648153,0.0,0.0,3424256,0,0,0,167,4799385480,4595,1355768,0.630924,0.630924,8.696e-3,1.1132466e-2
+compose/map-with-all-in-filter/streamly,6,0.785377569,1723840284,0.785351,0.0,0.0,3424256,0,0,0,153,5759262512,5514,1708928,0.764371,0.764371,1.0539e-2,1.3433408e-2
+compose/map-with-all-in-filter/streamly,7,0.903841025,1983857994,0.90386,0.0,0.0,3424256,0,0,0,155,6719139544,6433,1922400,0.880299,0.880299,1.1917e-2,1.5276505e-2
+compose/map-with-all-in-filter/streamly,8,1.019366143,2237426300,1.019449,0.0,0.0,3424256,0,0,0,169,7679016608,7352,2327024,0.992997,0.992997,1.3608e-2,1.7378217e-2
+compose/map-with-all-in-filter/streamly,9,1.172360203,2573235898,1.17222,0.0,0.0,3424256,0,0,0,231,8639938208,8272,2562936,1.140513,1.140513,1.5785e-2,2.0137811e-2
+compose/map-with-all-in-filter/streaming,1,9.822344e-2,215592512,9.8181e-2,9.6635e-2,0.0,3399680,1,0,0,28,719466656,697,164624,9.5112e-2,9.5112e-2,1.527e-3,1.901456e-3
+compose/map-with-all-in-filter/streaming,2,0.196473536,431243582,0.195901,0.0,0.0,3407872,0,0,0,89,1439908032,1395,327712,0.189881,0.189881,3.063e-3,3.821833e-3
+compose/map-with-all-in-filter/streaming,3,0.316309306,694273386,0.314783,0.0,0.0,3407872,0,0,0,241,2159345968,2092,490648,0.30379,0.30379,5.273e-3,6.431425e-3
+compose/map-with-all-in-filter/streaming,4,0.386912136,849240876,0.385454,0.0,0.0,3407872,0,0,0,319,2879816128,2790,653968,0.372815,0.372815,5.962e-3,7.601015e-3
+compose/map-with-all-in-filter/streaming,5,0.487571635,1070180330,0.486573,0.0,0.0,3407872,0,0,0,255,3599254032,3487,816760,0.471519,0.471519,7.389e-3,9.319954e-3
+compose/map-with-all-in-filter/streaming,6,0.579062187,1270994673,0.577147,0.0,0.0,3407872,0,0,0,363,4319724160,4185,979952,0.559437,0.559437,8.715e-3,1.1033781e-2
+compose/map-with-all-in-filter/streaming,7,0.665123972,1459893366,0.66312,0.0,0.0,3407872,0,0,0,377,5039162096,4882,1142872,0.643099,0.643099,9.729e-3,1.2435827e-2
+compose/map-with-all-in-filter/streaming,8,0.753817656,1654568818,0.752677,0.0,0.0,3407872,0,0,0,306,5759632168,5580,1305968,0.731147,0.731147,1.0743e-2,1.3684681e-2
+compose/map-with-all-in-filter/streaming,9,0.853533606,1873437266,0.852354,0.0,0.0,3407872,0,0,0,244,6479070160,6277,1468840,0.828012,0.828012,1.2129e-2,1.5488516e-2
+compose/map-with-all-in-filter/streaming,10,0.932050619,2045775752,0.930001,0.0,0.0,3407872,0,0,0,558,7199540288,6975,1631952,0.902168,0.902168,1.3606e-2,1.7359048e-2
+compose/all-in-filters/vector,1,7.390099e-3,16220654,7.4e-3,7.282e-3,0.0,3387392,1,0,0,1,79376432,76,4248,7.099e-3,7.099e-3,1.85e-4,2.29295e-4
+compose/all-in-filters/vector,2,1.4917219e-2,32742090,1.4914e-2,0.0,0.0,3395584,0,0,0,5,159805392,153,6800,1.4331e-2,1.4331e-2,3.38e-4,4.07415e-4
+compose/all-in-filters/vector,3,2.3758057e-2,52147054,2.3716e-2,0.0,0.0,3395584,0,0,0,7,239185840,229,9304,2.2918e-2,2.2918e-2,4.14e-4,5.56122e-4
+compose/all-in-filters/vector,4,3.035953e-2,66636712,3.0375e-2,0.0,0.0,3395584,0,0,0,4,319610712,306,11856,2.9295e-2,2.9295e-2,5.53e-4,7.2551e-4
+compose/all-in-filters/vector,5,3.8394153e-2,84272052,3.8405e-2,0.0,0.0,3395584,0,0,0,5,398991216,382,14376,3.7087e-2,3.7087e-2,7.03e-4,8.84391e-4
+compose/all-in-filters/vector,6,4.4492034e-2,97656422,4.4497e-2,0.0,0.0,3395584,0,0,0,8,479416144,459,16928,4.3015e-2,4.3015e-2,7.9e-4,9.98825e-4
+compose/all-in-filters/vector,7,6.0648909e-2,133119464,6.0654e-2,0.0,0.0,3395584,0,0,0,11,559841072,536,19480,5.8624e-2,5.8624e-2,1.016e-3,1.317304e-3
+compose/all-in-filters/vector,8,6.4638253e-2,141875752,6.4679e-2,0.0,0.0,3395584,0,0,0,10,639221416,612,22000,6.2421e-2,6.2421e-2,1.032e-3,1.361678e-3
+compose/all-in-filters/vector,9,7.3408837e-2,161126510,7.3454e-2,0.0,0.0,3395584,0,0,0,11,719646448,689,24552,7.0931e-2,7.0931e-2,1.297e-3,1.626198e-3
+compose/all-in-filters/vector,10,8.0408721e-2,176490646,8.034e-2,0.0,0.0,3395584,0,0,0,27,799026896,765,27072,7.7611e-2,7.7611e-2,1.337e-3,1.776755e-3
+compose/all-in-filters/vector,11,9.513627e-2,208816424,9.5094e-2,0.0,0.0,3395584,0,0,0,22,879451824,842,29624,9.188e-2,9.188e-2,1.562e-3,2.060321e-3
+compose/all-in-filters/vector,12,0.107074095,235019004,0.106036,0.0,0.0,3395584,0,0,0,108,959876704,919,32176,0.101745,0.101745,1.955e-3,2.49334e-3
+compose/all-in-filters/vector,13,0.112541887,247020317,0.112389,0.0,0.0,3457024,9,0,0,46,1039257200,995,34696,0.108389,0.108389,1.898e-3,2.490819e-3
+compose/all-in-filters/vector,14,0.115854977,254292334,0.115867,0.0,0.0,3457024,0,0,0,18,1119682128,1072,37248,0.112083,0.112083,1.935e-3,2.498779e-3
+compose/all-in-filters/vector,15,0.130014242,285370735,0.129225,0.0,0.0,3457024,0,0,0,72,1199062576,1148,39768,0.12442,0.12442,2.244e-3,2.91614e-3
+compose/all-in-filters/vector,16,0.131646226,288952774,0.131175,0.0,0.0,3457024,0,0,0,112,1279487504,1225,42320,0.125989,0.125989,2.318e-3,3.072604e-3
+compose/all-in-filters/vector,17,0.145137848,318565852,0.144492,0.0,0.0,3457024,0,0,0,69,1359912408,1302,44872,0.139119,0.139119,2.501e-3,3.223871e-3
+compose/all-in-filters/vector,18,0.15210762,333863872,0.151819,0.0,0.0,3457024,0,0,0,85,1439292880,1378,47392,0.14596,0.14596,2.736e-3,3.520078e-3
+compose/all-in-filters/vector,19,0.155483362,341273408,0.155238,0.0,0.0,3457024,0,0,0,77,1519717808,1455,49944,0.149469,0.149469,2.619e-3,3.395819e-3
+compose/all-in-filters/vector,20,0.172841122,379372326,0.172635,0.0,0.0,3457024,0,0,0,74,1599098256,1531,52464,0.166444,0.166444,2.899e-3,3.769698e-3
+compose/all-in-filters/vector,21,0.180654379,396521778,0.179158,0.0,0.0,3457024,0,0,0,203,1679523080,1608,55016,0.1713,0.1713,3.448e-3,4.335397e-3
+compose/all-in-filters/vector,22,0.190406013,417925800,0.188927,0.0,0.0,3457024,0,0,0,295,1759948112,1685,57568,0.18054,0.18054,3.544e-3,4.660661e-3
+compose/all-in-filters/vector,23,0.192310728,422106476,0.191859,0.0,0.0,3457024,0,0,0,124,1839328560,1761,60088,0.184356,0.184356,3.549e-3,4.581456e-3
+compose/all-in-filters/vector,25,0.207945136,456422776,0.206972,0.0,0.0,3457024,0,0,0,189,1999133936,1914,65160,0.198903,0.198903,3.708e-3,4.903915e-3
+compose/all-in-filters/vector,26,0.213212764,467984782,0.212371,0.0,0.0,3457024,0,0,0,206,2079558816,1991,67712,0.204202,0.204202,3.8e-3,4.913432e-3
+compose/all-in-filters/vector,27,0.218593651,479795384,0.218687,0.0,0.0,3457024,0,0,0,39,2159983792,2068,70264,0.211506,0.211506,3.528e-3,4.625458e-3
+compose/all-in-filters/vector,28,0.238856122,524269862,0.237936,0.0,0.0,3457024,0,0,0,198,2239364240,2144,72784,0.228585,0.228585,4.175e-3,5.369279e-3
+compose/all-in-filters/vector,30,0.240642757,528191432,0.240409,0.0,0.0,3457024,0,0,0,93,2399169616,2297,77856,0.231921,0.231921,4.064e-3,5.402117e-3
+compose/all-in-filters/vector,31,0.264781915,581174898,0.264092,0.0,0.0,3457024,0,0,0,176,2479594544,2374,80408,0.253663,0.253663,4.863e-3,6.216078e-3
+compose/all-in-filters/vector,33,0.273023622,599264776,0.271639,0.0,0.0,3457024,0,0,0,224,2639399896,2527,85480,0.260955,0.260955,4.94e-3,6.353152e-3
+compose/all-in-filters/vector,35,0.291548601,639925614,0.290229,0.0,0.0,3457024,0,0,0,243,2799205296,2680,90552,0.278956,0.278956,4.948e-3,6.528658e-3
+compose/all-in-filters/vector,36,0.309039034,678315702,0.307955,0.0,0.0,3457024,0,0,0,253,2879630224,2757,93104,0.296433,0.296433,5.227e-3,6.847903e-3
+compose/all-in-filters/vector,38,0.316486047,694661302,0.315752,0.0,0.0,3457024,0,0,0,172,3039435600,2910,98176,0.304815,0.304815,5.082e-3,6.706312e-3
+compose/all-in-filters/vector,40,0.333241355,731437840,0.33227,0.0,0.0,3457024,0,0,0,224,3199240872,3063,103248,0.320167,0.320167,5.518e-3,7.230326e-3
+compose/all-in-filters/streamly,1,5.378957e-2,118063758,5.3741e-2,5.2907e-2,0.0,3395584,1,0,0,20,511700992,488,146408,5.1978e-2,5.1978e-2,9.32e-4,1.17826e-3
+compose/all-in-filters/streamly,2,0.118789237,260732812,0.118702,0.0,0.0,3407872,0,0,0,34,1023410136,976,228656,0.114936,0.114936,1.965e-3,2.477927e-3
+compose/all-in-filters/streamly,3,0.166886511,366302372,0.166598,0.0,0.0,3407872,0,0,0,94,1535115216,1464,318696,0.161002,0.161002,2.864e-3,3.668389e-3
+compose/all-in-filters/streamly,4,0.226437238,497011478,0.226307,0.0,0.0,3407872,0,0,0,57,2047868808,1953,389376,0.219194,0.219194,3.589e-3,4.630572e-3
+compose/all-in-filters/streamly,5,0.277173432,608373259,0.277147,0.0,0.0,3407872,0,0,0,42,2559573952,2441,440392,0.268791,0.268791,4.28e-3,5.515104e-3
+compose/all-in-filters/streamly,6,0.335425866,736232654,0.335243,0.0,0.0,3407872,0,0,0,66,3071279040,2929,526544,0.325222,0.325222,5.025e-3,6.471602e-3
+compose/all-in-filters/streamly,7,0.374482359,821958498,0.374483,0.0,0.0,3407872,0,0,0,68,3582984128,3417,632216,0.36333,0.36333,5.686e-3,7.435426e-3
+compose/all-in-filters/streamly,8,0.440008797,965783722,0.440039,0.0,0.0,3407872,0,0,0,80,4095737624,3906,777224,0.426835,0.426835,6.53e-3,8.612156e-3
+compose/all-in-filters/streamly,9,0.485324718,1065248528,0.485383,0.0,0.0,3407872,0,0,0,78,4607442808,4394,894608,0.470587,0.470587,7.524e-3,9.754424e-3
+compose/all-in-filters/streamly,10,0.546653024,1199859216,0.546584,0.0,0.0,3407872,0,0,0,98,5119147864,4882,1004184,0.52951,0.52951,8.431e-3,1.0896544e-2
+compose/all-in-filters/streamly,11,0.611813666,1342881548,0.611527,0.0,0.0,3407872,0,0,0,105,5631901520,5371,1094424,0.592635,0.592635,9.665e-3,1.2446523e-2
+compose/all-in-filters/streamly,12,0.671333869,1473524148,0.67095,0.0,0.0,3407872,0,0,0,163,6143606536,5859,1164960,0.649734,0.649734,1.0427e-2,1.3451044e-2
+compose/all-in-filters/streamly,13,0.724975882,1591263462,0.724334,0.0,0.0,3407872,0,0,0,158,6655311632,6347,1251112,0.70183,0.70183,1.1255e-2,1.4597346e-2
+compose/all-in-filters/streaming,1,4.5056664e-2,98895736,4.5063e-2,4.4474e-2,0.0,3395584,1,0,0,8,399765584,384,59160,4.3754e-2,4.3754e-2,7.22e-4,9.00646e-4
+compose/all-in-filters/streaming,2,9.5889151e-2,210468920,9.5465e-2,0.0,0.0,3407872,0,0,0,68,799539232,768,130928,9.2319e-2,9.2319e-2,1.566e-3,2.074757e-3
+compose/all-in-filters/streaming,3,0.136124427,298782170,0.136165,0.0,0.0,3407872,0,0,0,20,1199308848,1152,195512,0.132288,0.132288,2.032e-3,2.631936e-3
+compose/all-in-filters/streaming,4,0.188350409,413413938,0.188393,0.0,0.0,3407872,0,0,0,26,1599078432,1536,231440,0.182958,0.182958,2.787e-3,3.552356e-3
+compose/all-in-filters/streaming,5,0.231732177,508633388,0.2316,0.0,0.0,3407872,0,0,0,49,1999889088,1921,317720,0.224745,0.224745,3.479e-3,4.444563e-3
+compose/all-in-filters/streaming,6,0.282110891,619210614,0.282173,0.0,0.0,3407872,0,0,0,44,2399658704,2305,375152,0.274011,0.274011,4.118e-3,5.301732e-3
+compose/all-in-filters/streaming,7,0.319565808,701421122,0.319496,0.0,0.0,3407872,0,0,0,47,2799428336,2689,432584,0.310444,0.310444,4.713e-3,6.045167e-3
+compose/all-in-filters/streaming,8,0.384109323,843088953,0.384147,0.0,0.0,3407872,0,0,0,71,3199197864,3073,490008,0.373093,0.373093,5.629e-3,7.284248e-3
+compose/all-in-filters/streaming,9,0.410519896,901057971,0.410493,0.0,0.0,3407872,0,0,0,66,3600008640,3458,547624,0.398959,0.398959,6.065e-3,7.796391e-3
+compose/all-in-filters/streaming,10,0.461052244,1011972446,0.461004,0.0,0.0,3407872,0,0,0,88,3999778256,3842,605056,0.447832,0.447832,6.776e-3,8.646904e-3
+compose/all-in-filters/streaming,11,0.514451429,1129179326,0.514445,0.0,0.0,3407872,0,0,0,100,4399547888,4226,662488,0.499612,0.499612,7.536e-3,9.767522e-3
+compose/all-in-filters/streaming,12,0.584479414,1282885076,0.582651,0.0,0.0,3407872,0,0,0,297,4799317472,4610,748576,0.563999,0.563999,8.873e-3,1.1527247e-2
+compose/all-in-filters/streaming,13,0.624918455,1371645488,0.622276,0.0,0.0,3407872,0,0,0,500,5199087120,4994,777352,0.601325,0.601325,1.0063e-2,1.2743569e-2
+compose/all-in-filters/streaming,14,0.676167098,1484132188,0.673918,0.0,0.0,3407872,0,0,0,412,5599897808,5379,834896,0.652234,0.652234,1.022e-2,1.3231245e-2
+compose/all-in-filters/streaming,15,0.718845862,1577808622,0.716905,0.0,0.0,3407872,0,0,0,362,5999667440,5763,892328,0.694381,0.694381,1.0989e-2,1.4057011e-2
+compose/all-out-filters/vector,1,7.730727e-3,16968224,7.75e-3,7.553e-3,0.0,3387392,1,0,0,1,79376432,76,4248,7.369e-3,7.369e-3,1.86e-4,2.2926e-4
+compose/all-out-filters/vector,2,1.5490622e-2,34000664,1.5478e-2,0.0,0.0,3395584,0,0,0,4,159805392,153,6800,1.4898e-2,1.4898e-2,3.21e-4,3.93278e-4
+compose/all-out-filters/vector,3,2.6262228e-2,57643470,2.625e-2,0.0,0.0,3395584,0,0,0,8,239185840,229,9304,2.5322e-2,2.5322e-2,4.87e-4,6.13548e-4
+compose/all-out-filters/vector,4,3.3172277e-2,72810492,3.3129e-2,0.0,0.0,3395584,0,0,0,12,319610712,306,11856,3.1888e-2,3.1888e-2,5.92e-4,7.74187e-4
+compose/all-out-filters/vector,5,3.937098e-2,86416132,3.9375e-2,0.0,0.0,3395584,0,0,0,6,398991216,382,14376,3.8098e-2,3.8098e-2,6.71e-4,8.7321e-4
+compose/all-out-filters/vector,6,5.0746681e-2,111384872,5.0736e-2,0.0,0.0,3395584,0,0,0,10,479416144,459,16928,4.9048e-2,4.9048e-2,8.71e-4,1.139164e-3
+compose/all-out-filters/vector,7,5.8358659e-2,128092538,5.8291e-2,0.0,0.0,3395584,0,0,0,26,559841072,536,19480,5.6327e-2,5.6327e-2,9.69e-4,1.251349e-3
+compose/all-out-filters/vector,8,6.5091537e-2,142870670,6.4973e-2,0.0,0.0,3395584,0,0,0,19,639221416,612,22000,6.2833e-2,6.2833e-2,1.083e-3,1.408902e-3
+compose/all-out-filters/vector,9,7.3115207e-2,160482003,7.317e-2,0.0,0.0,3395584,0,0,0,13,719646448,689,24552,7.0672e-2,7.0672e-2,1.225e-3,1.574769e-3
+compose/all-out-filters/vector,10,8.8441873e-2,194122771,8.8443e-2,0.0,0.0,3395584,0,0,0,23,799026896,765,27072,8.544e-2,8.544e-2,1.509e-3,1.946187e-3
+compose/all-out-filters/vector,11,9.2701753e-2,203472823,9.258e-2,0.0,0.0,3395584,0,0,0,33,879451824,842,29624,8.944e-2,8.944e-2,1.535e-3,1.997129e-3
+compose/all-out-filters/vector,12,0.105517057,231601410,0.105194,0.0,0.0,3395584,0,0,0,76,959876704,919,32176,0.101311,0.101311,1.785e-3,2.313573e-3
+compose/all-out-filters/vector,13,0.108501441,238151892,0.108035,0.0,0.0,3457024,9,0,0,92,1039257200,995,34696,0.103883,0.103883,1.898e-3,2.457486e-3
+compose/all-out-filters/vector,14,0.11744785,257788548,0.117243,0.0,0.0,3457024,0,0,0,61,1119682128,1072,37248,0.113042,0.113042,1.961e-3,2.531308e-3
+compose/all-out-filters/vector,15,0.124308238,272846548,0.124034,0.0,0.0,3457024,0,0,0,65,1199062576,1148,39768,0.11965,0.11965,2.097e-3,2.727202e-3
+compose/all-out-filters/vector,16,0.132364675,290529740,0.132011,0.0,0.0,3457024,0,0,0,82,1279487504,1225,42320,0.12706,0.12706,2.313e-3,2.956372e-3
+compose/all-out-filters/vector,17,0.148933181,326896312,0.147954,0.0,0.0,3457024,0,0,0,135,1359912408,1302,44872,0.142227,0.142227,2.64e-3,3.416877e-3
+compose/all-out-filters/vector,18,0.1524229,334555934,0.151857,0.0,0.0,3457024,0,0,0,143,1439292880,1378,47392,0.145999,0.145999,2.727e-3,3.525373e-3
+compose/all-out-filters/vector,19,0.159249706,349540243,0.158833,0.0,0.0,3457024,0,0,0,123,1519717808,1455,49944,0.153027,0.153027,2.625e-3,3.407973e-3
+compose/all-out-filters/vector,20,0.168379547,369579478,0.167652,0.0,0.0,3457024,0,0,0,174,1599098256,1531,52464,0.161346,0.161346,2.864e-3,3.825998e-3
+compose/all-out-filters/vector,21,0.176940266,388369606,0.176696,0.0,0.0,3457024,0,0,0,90,1679523080,1608,55016,0.170345,0.170345,2.9e-3,3.749597e-3
+compose/all-out-filters/vector,22,0.182014588,399507302,0.18177,0.0,0.0,3457024,0,0,0,70,1759948112,1685,57568,0.175423,0.175423,2.899e-3,3.832159e-3
+compose/all-out-filters/vector,23,0.192254073,421982168,0.19219,0.0,0.0,3457024,0,0,0,45,1839328560,1761,60088,0.186104,0.186104,2.93e-3,3.845749e-3
+compose/all-out-filters/vector,25,0.216430003,475046370,0.215523,0.0,73014.449397,3457024,0,0,0,192,1999133936,1914,65160,0.206388,0.206388,3.796e-3,4.87859e-3
+compose/all-out-filters/vector,26,0.217099226,476515222,0.217077,0.0,0.0,3457024,0,0,0,52,2079558816,1991,67712,0.210152,0.210152,3.322e-3,4.349046e-3
+compose/all-out-filters/vector,27,0.232498216,510314764,0.230662,0.0,0.0,3457024,0,0,0,301,2159983792,2068,70264,0.221054,0.221054,4.047e-3,5.168461e-3
+compose/all-out-filters/vector,28,0.226722899,497638434,0.226484,0.0,0.0,3457024,0,0,0,76,2239364240,2144,72784,0.21898,0.21898,3.418e-3,4.522135e-3
+compose/all-out-filters/vector,30,0.261245982,573413814,0.260866,0.0,0.0,3457024,0,0,0,138,2399169616,2297,77856,0.251478,0.251478,4.244e-3,5.508969e-3
+compose/all-out-filters/vector,31,0.259860445,570372646,0.259646,0.0,0.0,3457024,0,0,0,81,2479594544,2374,80408,0.251168,0.251168,4.078e-3,5.344425e-3
+compose/all-out-filters/vector,33,0.276601947,607118920,0.275193,0.0,0.0,3457024,0,0,0,192,2639399896,2527,85480,0.26559,0.26559,4.354e-3,5.849814e-3
+compose/all-out-filters/vector,35,0.288167176,632503656,0.287924,0.0,0.0,3457024,0,0,0,113,2799205296,2680,90552,0.278531,0.278531,4.441e-3,5.89393e-3
+compose/all-out-filters/vector,36,0.299028803,656344066,0.297393,0.0,0.0,3457024,0,0,0,217,2879630224,2757,93104,0.286893,0.286893,4.815e-3,6.290496e-3
+compose/all-out-filters/vector,38,0.311717497,684194710,0.310924,0.0,0.0,3457024,0,0,0,216,3039435600,2910,98176,0.299796,0.299796,5.101e-3,6.670657e-3
+compose/all-out-filters/vector,40,0.340554971,747490634,0.339675,0.0,0.0,3457024,0,0,0,235,3199240872,3063,103248,0.327635,0.327635,5.401e-3,7.100115e-3
+compose/all-out-filters/streamly,1,1.6680363e-2,36611953,1.6641e-2,1.6428e-2,0.0,3399680,2,0,0,15,95989912,93,3896,1.6177e-2,1.6177e-2,2.54e-4,3.10782e-4
+compose/all-out-filters/streamly,2,3.2965671e-2,72356973,3.2904e-2,0.0,0.0,3411968,0,0,0,18,191987752,186,6096,3.2108e-2,3.2108e-2,4.07e-4,5.02056e-4
+compose/all-out-filters/streamly,3,4.8640599e-2,106762182,4.8549e-2,0.0,0.0,3411968,0,0,0,29,287981720,279,8280,4.7401e-2,4.7401e-2,5.72e-4,7.06087e-4
+compose/all-out-filters/streamly,4,6.7344774e-2,147816316,6.7102e-2,0.0,0.0,3411968,0,0,0,55,383975592,372,10480,6.5314e-2,6.5314e-2,7.91e-4,9.82696e-4
+compose/all-out-filters/streamly,5,8.3021145e-2,182224732,8.2169e-2,0.0,0.0,3411968,0,0,0,107,479969464,465,12680,7.9961e-2,7.9961e-2,8.76e-4,1.105163e-3
+compose/all-out-filters/streamly,6,9.6406849e-2,211605243,9.6066e-2,0.0,0.0,3411968,0,0,0,72,575963336,558,14880,9.3705e-2,9.3705e-2,1.025e-3,1.285411e-3
+compose/all-out-filters/streamly,7,0.112615939,247182860,0.112532,0.0,0.0,3411968,0,0,0,38,671957208,651,17080,0.11003,0.11003,1.237e-3,1.574722e-3
+compose/all-out-filters/streamly,8,0.137609612,302041970,0.135608,0.0,0.0,3411968,0,0,0,197,767951120,744,19280,0.131659,0.131659,1.521e-3,1.945724e-3
+compose/all-out-filters/streamly,9,0.203518364,446706968,0.193351,0.0,0.0,3411968,0,0,0,1046,863945048,837,21480,0.183338,0.183338,3.012e-3,3.70836e-3
+compose/all-out-filters/streamly,10,0.305020736,669495862,0.279979,0.0,0.0,3411968,0,0,0,1827,959938920,930,23680,0.261174,0.261174,4.779e-3,6.257291e-3
+compose/all-out-filters/streamly,11,0.186649324,409680150,0.185436,0.0,0.0,3411968,0,0,0,163,1055932792,1023,25880,0.180671,0.180671,1.949e-3,2.472753e-3
+compose/all-out-filters/streamly,12,0.198372847,435412368,0.198151,0.0,0.0,3411968,0,0,0,72,1151926664,1116,28080,0.19351,0.19351,2.006e-3,2.697636e-3
+compose/all-out-filters/streamly,13,0.214888748,471663438,0.214052,0.0,0.0,3411968,0,0,0,121,1247920632,1209,30280,0.208884,0.208884,2.203e-3,2.853066e-3
+compose/all-out-filters/streamly,14,0.228781284,502156424,0.228439,0.0,0.0,3411968,0,0,0,129,1343914504,1302,32480,0.222723,0.222723,2.386e-3,3.103437e-3
+compose/all-out-filters/streamly,15,0.250245828,549269366,0.248897,0.0,0.0,3411968,0,0,0,171,1439908376,1395,34680,0.242502,0.242502,2.663e-3,3.369582e-3
+compose/all-out-filters/streamly,16,0.271975516,596964298,0.269162,0.0,0.0,3411968,0,0,0,192,1535902248,1488,36880,0.261434,0.261434,2.787e-3,3.616638e-3
+compose/all-out-filters/streamly,17,0.284393351,624220426,0.283253,0.0,0.0,3411968,0,0,0,188,1631896144,1581,39080,0.275778,0.275778,2.94e-3,3.821314e-3
+compose/all-out-filters/streamly,18,0.294679242,646797083,0.294023,0.0,0.0,3411968,0,0,0,142,1727889992,1674,41280,0.287138,0.287138,2.904e-3,3.747509e-3
+compose/all-out-filters/streamly,19,0.312777288,686520870,0.311677,0.0,0.0,3411968,0,0,0,217,1823883864,1767,43480,0.304005,0.304005,3.231e-3,4.094706e-3
+compose/all-out-filters/streamly,20,0.32655441,716760530,0.325925,0.0,0.0,3411968,0,0,0,161,1919877736,1860,45680,0.318515,0.318515,3.086e-3,4.096388e-3
+compose/all-out-filters/streamly,21,0.34402245,755101472,0.343456,0.0,0.0,3411968,0,0,0,130,2015871552,1953,47880,0.336313,0.336313,3.102e-3,4.113713e-3
+compose/all-out-filters/streamly,22,0.362147562,794884626,0.361917,0.0,0.0,3411968,0,0,0,90,2111865480,2046,50080,0.354753,0.354753,3.219e-3,4.237658e-3
+compose/all-out-filters/streamly,23,0.388437455,852588818,0.388252,0.0,0.0,3411968,0,0,0,109,2207859448,2139,52280,0.38014,0.38014,3.439e-3,4.594529e-3
+compose/all-out-filters/streamly,25,0.40642693,892074262,0.40626,0.0,0.0,3411968,1,0,0,82,2399847288,2325,56680,0.398435,0.398435,3.609e-3,4.829918e-3
+compose/all-out-filters/streaming,1,1.5385486e-2,33769912,1.5355e-2,1.507e-2,0.0,3399680,1,0,0,8,143470752,139,8488,1.4739e-2,1.4739e-2,3.34e-4,4.0372e-4
+compose/all-out-filters/streaming,2,3.3238247e-2,72955254,3.1824e-2,0.0,0.0,3411968,0,0,0,30,287981760,279,15296,3.0535e-2,3.0535e-2,6.6e-4,8.27169e-4
+compose/all-out-filters/streaming,3,4.8553894e-2,106571872,4.8515e-2,0.0,0.0,3411968,0,0,0,17,431456560,418,22040,4.6844e-2,4.6844e-2,8.34e-4,1.069386e-3
+compose/all-out-filters/streaming,4,6.0156955e-2,132039676,6.0181e-2,0.0,0.0,3411968,0,0,0,12,575963560,558,28848,5.8212e-2,5.8212e-2,1.005e-3,1.293746e-3
+compose/all-out-filters/streaming,5,7.4925216e-2,164454798,7.4779e-2,0.0,0.0,3411968,0,0,0,31,719438352,697,35608,7.225e-2,7.225e-2,1.226e-3,1.575818e-3
+compose/all-out-filters/streaming,6,9.6124299e-2,210985101,9.6069e-2,0.0,0.0,3411968,0,0,0,28,863945344,837,42416,9.2843e-2,9.2843e-2,1.584e-3,2.061242e-3
+compose/all-out-filters/streaming,7,0.10167015,223157757,0.101692,0.0,0.0,3411968,0,0,0,17,1007420144,976,49176,9.8489e-2,9.8489e-2,1.62e-3,2.106739e-3
+compose/all-out-filters/streaming,8,0.121020575,265630374,0.12102,0.0,0.0,3411968,0,0,0,29,1151927080,1116,55984,0.117056,0.117056,1.908e-3,2.483e-3
+compose/all-out-filters/streaming,9,0.137658379,302149033,0.1376,0.0,0.0,3411968,0,0,0,42,1295401936,1255,62744,0.13304,0.13304,2.179e-3,2.852096e-3
+compose/all-out-filters/streaming,10,0.147719249,324231811,0.147632,0.0,0.0,3411968,0,0,0,43,1439908928,1395,69552,0.142907,0.142907,2.29e-3,3.0696e-3
+compose/all-out-filters/streaming,11,0.176896683,388273916,0.174766,0.0,0.0,3411968,0,0,0,94,1583383728,1534,76312,0.168312,0.168312,2.964e-3,4.310897e-3
+compose/all-out-filters/streaming,12,0.181062988,397418626,0.180487,0.0,0.0,3411968,0,0,0,63,1727890720,1674,83120,0.174581,0.174581,2.815e-3,3.698093e-3
+compose/all-out-filters/streaming,13,0.196957936,432306763,0.196914,0.0,0.0,3411968,0,0,0,39,1871365520,1813,89880,0.190838,0.190838,2.948e-3,3.910859e-3
+compose/all-out-filters/streaming,14,0.201510324,442298868,0.20119,0.0,0.0,3411968,0,0,0,113,2015872512,1953,96688,0.1939,0.1939,3.228e-3,4.253677e-3
+compose/all-out-filters/streaming,15,0.235299473,516463340,0.234185,0.0,0.0,3411968,0,0,0,148,2159347312,2092,103448,0.225013,0.225013,3.744e-3,4.91524e-3
+compose/all-out-filters/streaming,16,0.249332103,547263798,0.24918,0.0,0.0,3411968,0,0,0,70,2303854304,2232,110256,0.240652,0.240652,4.014e-3,5.204102e-3
+compose/all-out-filters/streaming,17,0.252765585,554800030,0.252086,0.0,0.0,3411968,0,0,0,116,2447329128,2371,117016,0.243259,0.243259,3.99e-3,5.2662e-3
+compose/all-out-filters/streaming,18,0.274657557,602851142,0.273961,0.0,0.0,3411968,0,0,0,154,2591836096,2511,123824,0.264477,0.264477,4.356e-3,5.679769e-3
+compose/all-out-filters/streaming,19,0.297590111,653186248,0.296139,0.0,0.0,3411968,0,0,0,231,2735310896,2650,130584,0.284959,0.284959,4.939e-3,6.354002e-3
+compose/all-out-filters/streaming,20,0.317025306,695844908,0.31445,0.0,0.0,3411968,0,0,0,475,2879817888,2790,137392,0.300026,0.300026,5.631e-3,7.246541e-3
+compose/all-out-filters/streaming,21,0.320101855,702597690,0.318893,0.0,0.0,3411968,0,0,0,269,3023292632,2929,144152,0.306755,0.306755,5.308e-3,7.067925e-3
+compose/all-out-filters/streaming,22,0.332728244,730311616,0.331451,0.0,0.0,3411968,0,0,0,280,3167799680,3069,150960,0.319716,0.319716,5.357e-3,7.046762e-3
+compose/all-out-filters/streaming,23,0.357976391,785729758,0.357083,0.0,0.0,3411968,0,0,0,238,3311274480,3208,157720,0.344908,0.344908,5.619e-3,7.455737e-3
+compose/all-out-filters/streaming,25,0.37901185,831900376,0.377076,0.0,0.0,3411968,0,0,0,349,3599256272,3487,171288,0.362502,0.362502,6.115e-3,8.102694e-3
+compose/all-out-filters/streaming,26,0.396086551,869377940,0.393189,0.0,0.0,3411968,0,0,0,339,3743763264,3627,178096,0.37866,0.37866,6.593e-3,8.551711e-3