From 38f829060c6c32799904d7f3a987e862e205c66d Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Tue, 13 Feb 2024 16:39:29 +0100 Subject: [PATCH 1/9] instead of having the data compiled into the website it's now downloaded with a get request --- elm.json | 1 + src/Main.elm | 27 +++++++++++++++++++++------ src/TeachingMaterial.elm | 11 ++++------- 3 files changed, 26 insertions(+), 13 deletions(-) diff --git a/elm.json b/elm.json index f58ff2c..0a58a1c 100644 --- a/elm.json +++ b/elm.json @@ -13,6 +13,7 @@ "elm/core": "1.0.5", "elm/file": "1.0.5", "elm/html": "1.0.0", + "elm/http": "2.0.0", "elm/svg": "1.0.1", "elm/virtual-dom": "1.0.3", "elm-community/maybe-extra": "5.3.0", diff --git a/src/Main.elm b/src/Main.elm index 7986bc6..7f4344e 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -3,8 +3,7 @@ module Main exposing (..) import MapOfComputionalArchaeology exposing (comparchmap) import TeachingMaterial exposing ( TeachingResource, Difficulty (..), - makeDummyResource, teachingResources, - difficultyToString) + makeDummyResource, difficultyToString, parseTeachingResources) import Bootstrap.Alert as Alert import Bootstrap.Button as Button @@ -27,6 +26,7 @@ import FontAwesome.Styles as Icon import Html as H exposing (Html, a, br, button, div, h1, input, p, span, text) import Html.Attributes as HA exposing (href, placeholder, style) import Html.Events as HE exposing (onInput) +import Http as Http import List exposing (map, concat, sort, any, member) import Maybe.Extra exposing (values) import Select as Select @@ -102,15 +102,15 @@ type Dragging = -- INIT init : Int -> List TeachingResource -> ( Model, Cmd Msg ) -init wW elements = +init wW resources = let model = { windowWidth = wW -- table and data - , elements = teachingResources + , elements = resources , tableState = Table.sortBy "ID" True , multiQueryContent = [ ] , multiQuery = { id = "exampleMulti" - , available = (map .tags teachingResources |> concat) ++ (map .programmingLanguage teachingResources |> concat) |> sort + , available = (map .tags resources |> concat) ++ (map .programmingLanguage resources |> concat) |> sort , itemToLabel = identity , selected = [ ] , selectState = Select.init "" @@ -154,6 +154,9 @@ filter minChars toLabel query items = type Msg = SetWindowWidth Int + -- download data + | SendHttpRequest + | DataReceived (Result Http.Error String) -- table and data | SetMultiQuery (MultiQueryMsg String) | ButtonAddToQuery String @@ -179,6 +182,11 @@ update msg model = case msg of SetWindowWidth w -> ({ model | windowWidth = w }, Cmd.none) + -- download data + SendHttpRequest -> ( model, getTeachingResources ) + DataReceived res -> case res of + Err x -> (model, Cmd.none) + Ok x -> ({ model | elements = parseTeachingResources x }, Cmd.none) -- map OnMouseClick closestPoint -> case (List.head (filterClosestPointToRealEntries closestPoint)) of @@ -252,7 +260,14 @@ update msg model = ({ model | modalVisibility = Modal.shown, selectedElement = element } , Cmd.none) -- welcome CloseWelcome -> - ({ model | welcomeVisibility = Modal.hidden } , Cmd.none) + ({ model | welcomeVisibility = Modal.hidden }, getTeachingResources ) + +getTeachingResources : Cmd Msg +getTeachingResources = + Http.get { + url = "https://raw.githubusercontent.com/sslarch/MapofComputationalArchaeology/main/data/teachingmaterial.tsv" + , expect = Http.expectString DataReceived + } updateMultiQuery : MultiQueryMsg String -> QueryModel -> ( QueryModel, Cmd (MultiQueryMsg String) ) updateMultiQuery msg model = diff --git a/src/TeachingMaterial.elm b/src/TeachingMaterial.elm index 9fd2e88..00d2961 100644 --- a/src/TeachingMaterial.elm +++ b/src/TeachingMaterial.elm @@ -1,9 +1,6 @@ module TeachingMaterial exposing ( TeachingResource, Difficulty (..), - makeDummyResource, teachingResources, - difficultyToString) - -import TeachingMaterialData exposing (teachingMaterialString) + makeDummyResource, difficultyToString, parseTeachingResources) import Csv.Decode as Decode exposing (Decoder) import String exposing (split, trim) @@ -95,11 +92,11 @@ decodeTeachingResource = |> Decode.pipeline (Decode.field "Link" Decode.string) |> Decode.pipeline (Decode.field "Citation" Decode.string) -teachingResources : List TeachingResource -teachingResources = +parseTeachingResources : String -> List TeachingResource +parseTeachingResources teachingMaterialString = case Decode.decodeCustom {fieldSeparator = '\t'} Decode.FieldNamesFromFirstRow decodeTeachingResource teachingMaterialString of Err x -> -- for debugging of .tsv file and parsing --let _ = Debug.log "Parsing error" (Decode.errorToString x) --in [] [] - Ok x -> x \ No newline at end of file + Ok x -> x From b13b8d35d418b22e890bd5faf645bc952c096163 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Tue, 13 Feb 2024 18:53:35 +0100 Subject: [PATCH 2/9] if we have get requests, then we need error handling - the app is no longer self-contained --- src/Main.elm | 50 +++++++++++++++++++++++++++++++++++----- src/TeachingMaterial.elm | 9 +++----- 2 files changed, 47 insertions(+), 12 deletions(-) diff --git a/src/Main.elm b/src/Main.elm index 7f4344e..e89b549 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -15,6 +15,7 @@ import Bootstrap.Modal as Modal import Bootstrap.Utilities.Spacing as Spacing import Browser import Browser.Events as E +import Browser.Navigation as Navigation import Chart as C import Chart.Attributes as CA import Chart.Events as CE @@ -77,6 +78,9 @@ type alias Model = { , selectedElement : Maybe TeachingResource -- welcome , welcomeVisibility : Modal.Visibility + -- error + , errorVisibility : Modal.Visibility + , errorMessage : String } type alias QueryModel = @@ -138,6 +142,9 @@ init wW resources = , selectedElement = Nothing -- welcome , welcomeVisibility = Modal.shown + -- error + , errorVisibility = Modal.hidden + , errorMessage = "" } in ( model, Cmd.none ) @@ -176,6 +183,9 @@ type Msg = | ShowModal (Maybe TeachingResource) -- welcome | CloseWelcome + -- error + | CloseError + | ShowError String update : Msg -> Model -> ( Model, Cmd Msg ) update msg model = @@ -185,8 +195,11 @@ update msg model = -- download data SendHttpRequest -> ( model, getTeachingResources ) DataReceived res -> case res of - Err x -> (model, Cmd.none) - Ok x -> ({ model | elements = parseTeachingResources x }, Cmd.none) + Err e -> update (ShowError "Failed to download data from GitHub.") model + Ok x -> + case parseTeachingResources x of + Err e -> update (ShowError ("Can't parse data. " ++ e)) model + Ok y -> ({ model | elements = y }, Cmd.none) -- map OnMouseClick closestPoint -> case (List.head (filterClosestPointToRealEntries closestPoint)) of @@ -260,12 +273,18 @@ update msg model = ({ model | modalVisibility = Modal.shown, selectedElement = element } , Cmd.none) -- welcome CloseWelcome -> - ({ model | welcomeVisibility = Modal.hidden }, getTeachingResources ) + ({ model | welcomeVisibility = Modal.hidden }, getTeachingResources) + -- error + CloseError -> + ({ model | errorVisibility = Modal.hidden }, Navigation.reload) + ShowError e -> + ({ model | errorVisibility = Modal.shown, errorMessage = e }, Cmd.none) getTeachingResources : Cmd Msg getTeachingResources = Http.get { url = "https://raw.githubusercontent.com/sslarch/MapofComputationalArchaeology/main/data/teachingmaterial.tsv" + --url = "https://raw.githubusercontent.com/poseidon-framework/community-archive/07879ea4828b8e6d3b39cfbbf5bd51f6133a971f/2019_Jeong_InnerEurasia/POSEIDON.yml" , expect = Http.expectString DataReceived } @@ -321,7 +340,9 @@ view devel closestPoint, modalVisibility, selectedElement, - welcomeVisibility + welcomeVisibility, + errorVisibility, + errorMessage } = let -- general helper functions and settings @@ -691,10 +712,27 @@ view devel text "Made by the " , a [ href "https://sslarch.github.io" ] [ text "SIG for Scripting languages in Archaeology" ] , text " - see the code on " - , a [ href "https://github.com/sslarch/MapofComputationalArchaeology" ] [ text "Github" ] + , a [ href "https://github.com/sslarch/MapofComputationalArchaeology" ] [ text "GitHub" ] ] ] |> Modal.view welcomeVisibility + -- error + detailsError = + Modal.config CloseError + |> Modal.large + |> Modal.hideOnBackdropClick False + |> Modal.scrollableBody True + |> Modal.h3 [] [ text "Error" ] + |> Modal.body [] [ + p [] [ H.pre [] [text errorMessage] ], + p [] [ + text "Please report this error on " + , a [ href "https://github.com/sslarch/MapofComputationalArchaeology" ] [ text "GitHub" ] + , text "." + ] + ] + |> Modal.view errorVisibility + in -- main layout div [] [ @@ -758,7 +796,7 @@ view devel ] ] ]) - , detailsModal, detailsWelcome + , detailsModal, detailsWelcome, detailsError ] filterClosestPointToRealEntries : List (CI.One TeachingResource CI.Dot) -> List (CI.One TeachingResource CI.Dot) diff --git a/src/TeachingMaterial.elm b/src/TeachingMaterial.elm index 00d2961..07f8c6c 100644 --- a/src/TeachingMaterial.elm +++ b/src/TeachingMaterial.elm @@ -92,11 +92,8 @@ decodeTeachingResource = |> Decode.pipeline (Decode.field "Link" Decode.string) |> Decode.pipeline (Decode.field "Citation" Decode.string) -parseTeachingResources : String -> List TeachingResource +parseTeachingResources : String -> Result String (List TeachingResource) parseTeachingResources teachingMaterialString = case Decode.decodeCustom {fieldSeparator = '\t'} Decode.FieldNamesFromFirstRow decodeTeachingResource teachingMaterialString of - Err x -> -- for debugging of .tsv file and parsing - --let _ = Debug.log "Parsing error" (Decode.errorToString x) - --in [] - [] - Ok x -> x + Err e -> Err (Decode.errorToString e) + Ok x -> Ok x From cc898f31b9a1b06bc172a489a98cbbe912e06dd9 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Wed, 14 Feb 2024 22:24:08 +0100 Subject: [PATCH 3/9] added a little testing workflow for input validation --- .github/dependabot.yml | 10 ++++++++ .../validateTeachingMaterialTable.yml | 25 +++++++++++++++++++ elm-tooling.json | 6 +++++ elm.json | 8 ++++-- tests/Tests.elm | 16 ++++++++++++ 5 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/validateTeachingMaterialTable.yml create mode 100644 elm-tooling.json create mode 100644 tests/Tests.elm diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..de5f6ff --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every month + interval: "monthly" \ No newline at end of file diff --git a/.github/workflows/validateTeachingMaterialTable.yml b/.github/workflows/validateTeachingMaterialTable.yml new file mode 100644 index 0000000..06f84f0 --- /dev/null +++ b/.github/workflows/validateTeachingMaterialTable.yml @@ -0,0 +1,25 @@ +name: validate data/teachingmaterial.tsv + +# Trigger the workflow on push or pull request, but only for the main branch +on: + pull_request: + push: + branches: [main] + +jobs: + validate: + name: validate file + runs-on: ubuntu-latest + steps: + + - name: Install elm and elm-test-rs as defined in elm-tooling.json + uses: mpizenberg/elm-tooling-action@v1.6 + + - name: Clone repo + uses: actions/checkout@v3 + + - name: Create module TeachingMaterialData with teachingMaterialString + run: ./script_teachingmaterial_tsv2elm.sh + + - name: Try parsing teachingMaterialString by running the pseudo-test + run: elm-test-rs diff --git a/elm-tooling.json b/elm-tooling.json new file mode 100644 index 0000000..ce84d5f --- /dev/null +++ b/elm-tooling.json @@ -0,0 +1,6 @@ +{ + "tools": { + "elm": "0.19.1", + "elm-test-rs": "3.0.0" + } +} \ No newline at end of file diff --git a/elm.json b/elm.json index 0a58a1c..f4ac428 100644 --- a/elm.json +++ b/elm.json @@ -40,7 +40,11 @@ } }, "test-dependencies": { - "direct": {}, - "indirect": {} + "direct": { + "elm-explorations/test": "2.2.0" + }, + "indirect": { + "elm/random": "1.0.0" + } } } diff --git a/tests/Tests.elm b/tests/Tests.elm new file mode 100644 index 0000000..399c582 --- /dev/null +++ b/tests/Tests.elm @@ -0,0 +1,16 @@ +module Tests exposing (..) + +import TeachingMaterial exposing (parseTeachingResources) +import TeachingMaterialData exposing (teachingMaterialString) + +import Expect +import Test exposing (Test, describe, test) + +suite : Test +suite = + describe "Pseudo-test for teaching material list validation" + [ test "if the .tsv table can be parsed" <| + \_ -> + let res = parseTeachingResources teachingMaterialString + in Expect.ok res + ] From 02c1e96326bba58e2972c549a87b0946d0c2b8db Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Wed, 14 Feb 2024 22:25:37 +0100 Subject: [PATCH 4/9] wrong order of events --- .github/workflows/validateTeachingMaterialTable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validateTeachingMaterialTable.yml b/.github/workflows/validateTeachingMaterialTable.yml index 06f84f0..ea35d52 100644 --- a/.github/workflows/validateTeachingMaterialTable.yml +++ b/.github/workflows/validateTeachingMaterialTable.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - - name: Install elm and elm-test-rs as defined in elm-tooling.json - uses: mpizenberg/elm-tooling-action@v1.6 - - name: Clone repo uses: actions/checkout@v3 + - name: Install elm and elm-test-rs as defined in elm-tooling.json + uses: mpizenberg/elm-tooling-action@v1.6 + - name: Create module TeachingMaterialData with teachingMaterialString run: ./script_teachingmaterial_tsv2elm.sh From d633fbcfe9dd964cc5b31d4541c0e36cd5aa38e2 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Wed, 14 Feb 2024 22:27:52 +0100 Subject: [PATCH 5/9] validation test 1 --- data/teachingmaterial.tsv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/teachingmaterial.tsv b/data/teachingmaterial.tsv index dc74431..34beb73 100644 --- a/data/teachingmaterial.tsv +++ b/data/teachingmaterial.tsv @@ -1,5 +1,5 @@ ID Source X_map Y_map Name Author Year Topic Language Programming_language Tools Level_of_difficulty Description Material_type Tags Tags_openarchaeo Link Citation -SIG-T0001 81 50 Tidyverse for archaeologists Ben Marwick 2020 introduction to the tidyverse of R en Rstats RStudio beginner Slide deck with an introduction to the tidyverse, example code and tasks. slides tidyverse, data import, data wrangling, visualisation, programming Educational resources and practical guides https://benmarwick.github.io/tidyverse-for-archaeology/tidyverse-for-archaeology.html#1 +SIG-T0001 81t 50 Tidyverse for archaeologists Ben Marwick 2020 introduction to the tidyverse of R en Rstats RStudio beginner Slide deck with an introduction to the tidyverse, example code and tasks. slides tidyverse, data import, data wrangling, visualisation, programming Educational resources and practical guides https://benmarwick.github.io/tidyverse-for-archaeology/tidyverse-for-archaeology.html#1 SIG-T0002 79 40 Skriptsammlung Statistik für die Archäologie Sophie Schmidt 2020 basic R introduction, plotting, statistical tests de RStats RStudio beginner Scripts in md format including code and example tasks. tutorial data import, data wrangling, statistical tests, visualisation Educational resources and practical guides, Data management https://scschmidt.github.io/lehre/ SIG-T0003 93 70 The Open Digital Archaeology Textbook Shawn Graham, Neha Gupta, Jolene Smith, Andreas Angourakis, Andrew Reinhard, Kate Ellenberger, Zack Batist, Joel Rivard, Ben Marwick, Michael Carter, Beth Compton, Rob Blades, Cristina Wood, Gary Nobles 2018 introduction to various digital archaeology practices, including project management, database management, data cleaning, visualization, photogrammetry, 3D printing, NLP, among other things en RStats Open Refine, GitHub, Meshlab, Excel, Jupyter beginner An overview of various tools, methods and workflows commonly applied in digital archaeology, including practical examples demonstrated through well-documented jupyter notebooks. textbook data management, 3D methods, visualisation, spatial statistics, data wrangling, LOD https://o-date.github.io/draft/book/ SIG-T0004 171 35 3DHOP integration Thomas Huet 2021 Web3d fr RStats, JavaScript, HTML5 RStudio, GitHub, 3DHOP, Blender, Meshlab, Meshroom intermediate A multi-paradigm approach (cartography, web3D, etc.) and multi-scalar presentation (macro, meso, micro) of portable tools and ancient iconography with open-source softwares (GitHub, 3DHOP, Blender, R, JavaScript, etc.) for data management within the frame of Linked-Open data (LOD). tutorial 3D methods, data management, archiving, LOD Educational resources and practical guides, 3D modelling, https://zoometh.github.io/reveal.js/#/5 From 973dcf27e09655f2e356ca2ea6f8def66887f2f9 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Wed, 14 Feb 2024 22:29:59 +0100 Subject: [PATCH 6/9] validation test 2 --- data/teachingmaterial.tsv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/teachingmaterial.tsv b/data/teachingmaterial.tsv index 34beb73..dc74431 100644 --- a/data/teachingmaterial.tsv +++ b/data/teachingmaterial.tsv @@ -1,5 +1,5 @@ ID Source X_map Y_map Name Author Year Topic Language Programming_language Tools Level_of_difficulty Description Material_type Tags Tags_openarchaeo Link Citation -SIG-T0001 81t 50 Tidyverse for archaeologists Ben Marwick 2020 introduction to the tidyverse of R en Rstats RStudio beginner Slide deck with an introduction to the tidyverse, example code and tasks. slides tidyverse, data import, data wrangling, visualisation, programming Educational resources and practical guides https://benmarwick.github.io/tidyverse-for-archaeology/tidyverse-for-archaeology.html#1 +SIG-T0001 81 50 Tidyverse for archaeologists Ben Marwick 2020 introduction to the tidyverse of R en Rstats RStudio beginner Slide deck with an introduction to the tidyverse, example code and tasks. slides tidyverse, data import, data wrangling, visualisation, programming Educational resources and practical guides https://benmarwick.github.io/tidyverse-for-archaeology/tidyverse-for-archaeology.html#1 SIG-T0002 79 40 Skriptsammlung Statistik für die Archäologie Sophie Schmidt 2020 basic R introduction, plotting, statistical tests de RStats RStudio beginner Scripts in md format including code and example tasks. tutorial data import, data wrangling, statistical tests, visualisation Educational resources and practical guides, Data management https://scschmidt.github.io/lehre/ SIG-T0003 93 70 The Open Digital Archaeology Textbook Shawn Graham, Neha Gupta, Jolene Smith, Andreas Angourakis, Andrew Reinhard, Kate Ellenberger, Zack Batist, Joel Rivard, Ben Marwick, Michael Carter, Beth Compton, Rob Blades, Cristina Wood, Gary Nobles 2018 introduction to various digital archaeology practices, including project management, database management, data cleaning, visualization, photogrammetry, 3D printing, NLP, among other things en RStats Open Refine, GitHub, Meshlab, Excel, Jupyter beginner An overview of various tools, methods and workflows commonly applied in digital archaeology, including practical examples demonstrated through well-documented jupyter notebooks. textbook data management, 3D methods, visualisation, spatial statistics, data wrangling, LOD https://o-date.github.io/draft/book/ SIG-T0004 171 35 3DHOP integration Thomas Huet 2021 Web3d fr RStats, JavaScript, HTML5 RStudio, GitHub, 3DHOP, Blender, Meshlab, Meshroom intermediate A multi-paradigm approach (cartography, web3D, etc.) and multi-scalar presentation (macro, meso, micro) of portable tools and ancient iconography with open-source softwares (GitHub, 3DHOP, Blender, R, JavaScript, etc.) for data management within the frame of Linked-Open data (LOD). tutorial 3D methods, data management, archiving, LOD Educational resources and practical guides, 3D modelling, https://zoometh.github.io/reveal.js/#/5 From fde6d1af59a1cb456335b6ab1989638065f22860 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Thu, 15 Feb 2024 16:42:39 +0100 Subject: [PATCH 7/9] update of the README --- README.md | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0195291..b200d7c 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,29 @@ # MapofComputationalArchaeology -## Data +This repo stores code and data for a small web app to list teaching material in the field of Computational Archaeology: https://sslarch.github.io/MapofComputationalArchaeology -Raw data lives in `data`. +The teaching material table is stored in `data/teachingmaterial.tsv` and the web app queries it directly from the master branch on GitHub. **To add new material or modify the existing entries, just edit this file and submit a pull request with your changes.** The file will then be structurally validated by a GitHub action and can be merged if it is sound. -The original version of the base map (`data/Archaeologia.map`) was created with this [Fantasy-Map-Generator](https://azgaar.github.io/Fantasy-Map-Generator) and can theoretically still be edited with it. The derived file `data/comparchmap.svg` replaced it, though, for all means and purposes, as several manual steps have to be performed to wrangle the output of the map generator into a .svg file usable with the elm-charts library (simplifying layers, merging objects, replacing labels). Ideally future changes should be performed on the .svg file only. For more complex changes (coastlines) it may be necessary to go back to the .map file. +## Developer notes -Elm can not read the .svg file on the fly. Instead the drawing has to be converted to Elm code with the [svg2elm](https://github.com/pinata-llc/svg2elm) tool which directly creates a dedicated Elm module for it. Running `script_map_svg2elm.sh` executes the relevant bash command. This takes a minute, because the .svg file is fairly large. The resulting module `src/MapOfComputionalArchaeology.elm` is a derived data product and therefore not logged with Git to safe space. +This web app was written in [Elm](https://elm-lang.org). See the `src` directory for the code and look [here](https://guide.elm-lang.org/install/elm.html) for instructions on how to run and test it locally with `elm reactor`. -The teaching material table is stored in `data/teachingmaterial.tsv`. Just as the map is has to be translated to Elm code to make it accessible for the webapp. The script `script_teachingmaterial_tsv2elm.sh` creates a module `src/TeachingMaterialData.elm` with a string ready to be parsed. Just as the map module this is a derived data product and not logged by Git. +### Deploying the app -## Elm +To prepare the app for deployment on GitHub run `script_build_elmjs.sh`, which will transpile the Elm code in `src` to a single, large `.js` file, and then reduce its size with [uglifyjs](https://github.com/mishoo/UglifyJS) to produce the minified script `elm.min.js`. This file stores the entire app. The `index.html` file finally calls this script. This is what GitHub detects and shows as the website. -The webapp was written in [Elm](https://elm-lang.org/) and exists in a single file `src/Main.elm`. See the instructions [here](https://guide.elm-lang.org/install/elm.html) on how to run and explore the app with `elm reactor`. +### Validating `data/teachingmaterial.tsv` -To prepare the app for deployment on GitHub run `script_build_elmjs.sh`, which will transpile the Elm code in `src` to a single, large `.js` file and then reduce its size with [uglifyjs](https://github.com/mishoo/UglifyJS) to produce the script `elm.min.js`. This file stores the entire app with all data and code. The `index.html` file finally runs this script. This is what GitHub detects and shows as the website. +To allow for convenient, yet safe editing of the input data in `data/teachingmaterial.tsv` an automatic GitHub action workflow runs upon every push to the main branch. This workflow is specified in `.github/workflows/validateTeachingMaterialTable.yml` and involves the following main steps: + +1. The Elm compiler and the testing tool elm-test-rs are installed as specified in `elm-tooling.json`. +2. The script `script_teachingmaterial_tsv2elm.sh` is run to create a module `src/TeachingMaterialData.elm` with a string-representation of the table. +3. elm-test-rs triggers the pseudo-test in `tests/Tests.elm`, which runs the parsing code in `src/TeachingMaterial.elm` on the string-representation in `src/TeachingMaterialData.elm`. + +If the parsing fails in any way, then the GitHub action will fail, reporting the specific parsing issue. If it does not fail, then the new version of `data/teachingmaterial.tsv` can be read by the app and is safe to merge. + +### Changing the fantasy map + +The original version of the base map (`data/Archaeologia.map`) was created with this [Fantasy-Map-Generator](https://azgaar.github.io/Fantasy-Map-Generator) and can theoretically still be edited with it. The derived file `data/comparchmap.svg` replaced it, though, for all means and purposes, as several manual steps have to be performed to wrangle the output of the map generator into a .svg file usable with the elm-charts library (simplifying layers, merging objects, replacing labels). Ideally future changes should be performed on the .svg file only. Only for more complex changes (coastlines) it may be necessary to go back to the .map file. + +If the `data/comparchmap.svg` is changed then it has to be transformed to Elm code by running `script_map_svg2elm.sh`. Elm can not read the .svg file on the fly. Instead the drawing has to be converted to Elm code with the [svg2elm](https://github.com/pinata-llc/svg2elm) tool which directly creates a dedicated Elm module (`src/MapOfComputionalArchaeology.elm`) for it. This takes a minute, because the .svg file is fairly large. From aa82bb3b79cad5694fd55e5ed97be61818d46be0 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Thu, 15 Feb 2024 16:43:26 +0100 Subject: [PATCH 8/9] pushed the current version of the map module --- .gitignore | 1 - src/MapOfComputionalArchaeology.elm | 8 ++++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/MapOfComputionalArchaeology.elm diff --git a/.gitignore b/.gitignore index d8a73e7..415dfed 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ elm-stuff repl-temp-* # rendered, intermediate data products -src/MapOfComputionalArchaeology.elm src/TeachingMaterialData.elm src/TeachingMaterialEdges.elm elm.js \ No newline at end of file diff --git a/src/MapOfComputionalArchaeology.elm b/src/MapOfComputionalArchaeology.elm new file mode 100644 index 0000000..8e17a53 --- /dev/null +++ b/src/MapOfComputionalArchaeology.elm @@ -0,0 +1,8 @@ +module MapOfComputionalArchaeology exposing (..) + +import Svg +import VirtualDom exposing (Attribute, attribute) + + +comparchmap : List (Attribute msg) -> Svg.Svg msg +comparchmap attrs = Svg.node "svg" ([attribute "xmlns:xhtml" "http://www.w3.org/1999/xhtml", attribute "xmlns:dc" "http://purl.org/dc/elements/1.1/", attribute "xmlns:cc" "http://creativecommons.org/ns#", attribute "xmlns:rdf" "http://www.w3.org/1999/02/22-rdf-syntax-ns#", attribute "xmlns:svg" "http://www.w3.org/2000/svg", attribute "xmlns" "http://www.w3.org/2000/svg", attribute "xmlns:xlink" "http://www.w3.org/1999/xlink", attribute "xmlns:sodipodi" "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", attribute "xmlns:inkscape" "http://www.inkscape.org/namespaces/inkscape", attribute "id" "fantasyMap", attribute "width" "100%", attribute "height" "100%", attribute "viewBox" "0 0 2000 1000", attribute "version" "1.1", attribute "background-color" "#000000", attribute "sodipodi:docname" "comparchmap.svg", attribute "inkscape:version" "0.92.3 (2405546, 2018-03-11)"] ++ attrs) [ Svg.node "metadata" ([attribute "id" "metadata393"]) [ Svg.node "rdf:RDF" ([]) [ Svg.node "cc:Work" ([attribute "rdf:about" ""]) [ Svg.node "dc:format" ([]) [ Svg.text("image/svg+xml")], Svg.node "dc:type" ([attribute "rdf:resource" "http://purl.org/dc/dcmitype/StillImage"]) []]]], Svg.node "sodipodi:namedview" ([attribute "id" "namedview1962", attribute "pagecolor" "#ffffff", attribute "bordercolor" "#666666", attribute "borderopacity" "1.0", attribute "inkscape:showpageshadow" "2", attribute "inkscape:pageopacity" "0.0", attribute "inkscape:pagecheckerboard" "0", attribute "inkscape:deskcolor" "#d1d1d1", attribute "showgrid" "false", attribute "inkscape:zoom" "0.67048425", attribute "inkscape:cx" "799.31644", attribute "inkscape:cy" "394.06479", attribute "inkscape:window-width" "1920", attribute "inkscape:window-height" "1021", attribute "inkscape:window-x" "0", attribute "inkscape:window-y" "36", attribute "inkscape:window-maximized" "1", attribute "inkscape:current-layer" "layer1"]) [], Svg.node "defs" ([attribute "id" "defs198"]) [ Svg.node "g" ([attribute "id" "filters"]) [ Svg.node "filter" ([attribute "id" "dropShadow", attribute "name" "Shadow 2", attribute "x" "-0.0021458333", attribute "y" "-0.0044831713", attribute "width" "1.0047083", attribute "height" "1.0107236"]) [ Svg.node "feGaussianBlur" ([attribute "in" "SourceAlpha", attribute "stdDeviation" "2", attribute "id" "feGaussianBlur2"]) [], Svg.node "feOffset" ([attribute "dx" "1", attribute "dy" "2", attribute "id" "feOffset4"]) [], Svg.node "feMerge" ([attribute "id" "feMerge10"]) [ Svg.node "feMergeNode" ([attribute "id" "feMergeNode6"]) [], Svg.node "feMergeNode" ([attribute "in" "SourceGraphic", attribute "id" "feMergeNode8"]) []]], Svg.node "filter" ([attribute "id" "dropShadow05", attribute "name" "Shadow 0.5", attribute "x" "-0.0012632986", attribute "y" "-0.0027448815", attribute "width" "1.0027051", attribute "height" "1.0055948"]) [ Svg.node "feGaussianBlur" ([attribute "in" "SourceAlpha", attribute "stdDeviation" ".5", attribute "id" "feGaussianBlur13"]) [], Svg.node "feOffset" ([attribute "dx" ".5", attribute "dy" ".7", attribute "id" "feOffset15"]) [], Svg.node "feMerge" ([attribute "id" "feMerge21"]) [ Svg.node "feMergeNode" ([attribute "id" "feMergeNode17"]) [], Svg.node "feMergeNode" ([attribute "in" "SourceGraphic", attribute "id" "feMergeNode19"]) []]], Svg.node "filter" ([attribute "id" "paper", attribute "name" "Paper", attribute "x" "-0.014160214", attribute "y" "-0.15921271", attribute "width" "1.0283717", attribute "height" "1.316945", attribute "filterUnits" "objectBoundingBox", attribute "primitiveUnits" "userSpaceOnUse", attribute "color-interpolation-filters" "sRGB"]) [ Svg.node "feGaussianBlur" ([attribute "stdDeviation" "1 1", attribute "x" "0%", attribute "y" "0%", attribute "width" "100%", attribute "height" "100%", attribute "in" "SourceGraphic", attribute "edgeMode" "none", attribute "result" "blur", attribute "id" "feGaussianBlur24"]) [], Svg.node "feTurbulence" ([attribute "type" "fractalNoise", attribute "baseFrequency" "0.05 0.05", attribute "numOctaves" "4", attribute "seed" "1", attribute "stitchTiles" "stitch", attribute "result" "turbulence", attribute "id" "feTurbulence26"]) [], Svg.node "feDiffuseLighting" ([attribute "surfaceScale" "2", attribute "diffuseConstant" "1", attribute "lighting-color" "#707070", attribute "in" "turbulence", attribute "result" "diffuseLighting", attribute "id" "feDiffuseLighting30"]) [ Svg.node "feDistantLight" ([attribute "azimuth" "45", attribute "elevation" "20", attribute "id" "feDistantLight28"]) []], Svg.node "feComposite" ([attribute "in" "diffuseLighting", attribute "in2" "blur", attribute "operator" "lighter", attribute "result" "composite", attribute "id" "feComposite32"]) [], Svg.node "feComposite" ([attribute "in" "composite", attribute "in2" "SourceGraphic", attribute "operator" "in", attribute "x" "0%", attribute "y" "0%", attribute "width" "100%", attribute "height" "100%", attribute "result" "composite1", attribute "id" "feComposite34"]) []], Svg.node "filter" ([attribute "id" "filter-sepia", attribute "name" "Sepia", attribute "x" "0", attribute "y" "0", attribute "width" "1", attribute "height" "1"]) [ Svg.node "feColorMatrix" ([attribute "values" "0.393 0.769 0.189 0 0 0.349 0.686 0.168 0 0 0.272 0.534 0.131 0 0 0 0 0 1 0", attribute "id" "feColorMatrix37"]) []]], Svg.node "g" ([attribute "id" "deftemp"]) [ Svg.node "mask" ([attribute "id" "land"]) [ Svg.node "path" ([attribute "d" "m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2", attribute "fill" "#ffffff", attribute "id" "land_2"]) [], Svg.node "path" ([attribute "d" "m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9", attribute "fill" "#ffffff", attribute "id" "land_3"]) [], Svg.node "path" ([attribute "d" "m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2", attribute "fill" "#ffffff", attribute "id" "land_4"]) [], Svg.node "path" ([attribute "d" "m 905,166.3 c -1.3,0.7 -2.7,0.7 -3.7,0.4 -1,-0.4 -1.6,-1 -1.6,-3 0,-2 0.6,-5.4 1.8,-7.4 1.2,-2 2.8,-2.6 4.2,-1.3 1.3,1.3 2.3,4.7 2.1,7 -0.1,2.3 -1.5,3.7 -2.8,4.3", attribute "fill" "#000000", attribute "id" "land_5"]) [], Svg.node "path" ([attribute "d" "m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3", attribute "fill" "#ffffff", attribute "id" "land_6"]) [], Svg.node "path" ([attribute "d" "m 916.8,227.7 c -1.5,1 -4.1,2.6 -6,3.5 -1.8,0.8 -2.8,0.8 -4,0 -1.1,-0.9 -2.5,-2.5 -2.3,-4.7 0.2,-2.2 1.8,-4.8 4.3,-5.7 2.5,-0.8 5.9,0.2 7.7,1.4 1.8,1.1 2.2,2.5 2.2,3.3 0,0.8 -0.4,1.2 -1.9,2.2", attribute "fill" "#000000", attribute "id" "land_7"]) [], Svg.node "path" ([attribute "d" "m 1311,270.2 c -0.3,2.8 -1.7,4.8 -2.7,5.8 -1,1 -1.6,1 -3.3,0 -1.7,-1 -4.3,-3 -5,-5.8 -0.7,-2.9 0.7,-6.5 1.7,-8.5 1,-2 1.6,-2.4 3,-2.4 1.3,0 3.3,0.4 4.6,2.4 1.4,2 2,5.6 1.7,8.5", attribute "fill" "#000000", attribute "id" "land_10"]) [], Svg.node "path" ([attribute "d" "m 669.3,294.4 c -0.5,1.8 -1.6,2.9 -2.8,4.1 -1.2,1.2 -2.3,2.3 -3.9,1.4 -1.6,-0.9 -3.6,-3.9 -4.1,-6.6 -0.5,-2.6 0.5,-5 2.5,-5.8 2,-0.8 5,-0.2 6.7,1.3 1.6,1.5 2,3.9 1.6,5.6", attribute "fill" "#000000", attribute "id" "land_11"]) [], Svg.node "path" ([attribute "d" "m 897.3,300.8 c 1,1.2 1.4,3.2 0.5,4.9 -0.8,1.6 -2.8,3 -4.6,3 -1.9,0 -3.5,-1.4 -4.4,-2.5 -0.8,-1.2 -0.8,-2.2 0,-3.4 0.9,-1.1 2.5,-2.5 4.2,-3 1.7,-0.5 3.3,-0.1 4.3,1", attribute "fill" "#000000", attribute "id" "land_12"]) [], Svg.node "path" ([attribute "d" "m 741.2,343.5 c 0.5,1.5 0.1,2.5 -1.7,3.7 -1.8,1.1 -5.2,2.5 -7.3,2.8 -2.2,0.3 -3.2,-0.3 -3.7,-1.2 -0.5,-0.8 -0.5,-1.8 0.8,-3.8 1.4,-2 4,-5 5.7,-6.3 1.7,-1.4 2.3,-1 3.3,0.1 1,1.2 2.4,3.2 2.9,4.7", attribute "fill" "#000000", attribute "id" "land_13"]) [], Svg.node "path" ([attribute "d" "m 697.2,382.3 c -2.2,1.7 -5.2,1.7 -7,0.5 -1.9,-1.1 -2.5,-3.5 -2.4,-5.8 0.2,-2.3 1.2,-4.7 2.9,-6 1.6,-1.3 4,-1.7 6,-1 2,0.7 3.6,2.3 3.8,4.8 0.2,2.5 -1.2,5.9 -3.3,7.5", attribute "fill" "#000000", attribute "id" "land_14"]) [], Svg.node "path" ([attribute "d" "m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6", attribute "fill" "#ffffff", attribute "id" "land_15"]) [], Svg.node "path" ([attribute "d" "m 332.2,391.5 c 2.1,0.2 4.5,0.8 6.3,2.5 1.8,1.7 3.2,4.3 3.2,7.2 0,2.8 -1.4,5.8 -2,8 -0.7,2.1 -0.7,3.5 -0.2,4.5 0.5,1 1.5,1.6 4,2.3 2.5,0.7 6.5,1.3 8.8,1.8 2.4,0.5 3,0.9 4.4,1 1.3,0.2 3.3,0.2 4.6,0 1.4,-0.1 2,-0.5 3.9,-0.6 1.8,-0.2 4.8,-0.2 6.6,-0.4 1.9,-0.1 2.5,-0.5 4.4,-0.6 1.8,-0.2 4.8,-0.2 6.8,-0.4 2,-0.1 3,-0.5 4.5,-0.5 1.5,0 3.5,0.4 4.9,0.5 1.4,0 2.3,-0.1 3.1,-0.3 0.8,-0.2 1.7,-0.3 3.6,-1.6 1.9,-1.2 4.9,-3.6 6.3,-5.2 1.4,-1.7 1.3,-2.7 1.1,-3.7 -0.2,-1 -0.3,-2 -0.6,-3.8 -0.2,-1.9 -0.6,-4.5 0.2,-6.1 0.7,-1.6 2.6,-2.1 4.4,-2.6 1.8,-0.5 3.7,-1 4.9,-0.6 1.3,0.4 1.9,1.8 2.9,2.8 1,1 2.4,1.6 3.9,1.8 1.5,0.2 3.1,-0.2 5,0.4 1.8,0.6 3.8,2.1 5.8,3.6 2,1.5 4,3 4.5,5.1 0.5,2.1 -0.5,4.7 -0.8,6.6 -0.4,1.8 0,2.8 -0.4,4.6 -0.3,1.9 -1.3,4.5 -1.8,6.2 -0.5,1.7 -0.5,2.3 -0.7,3.7 -0.1,1.3 -0.5,3.3 -1.1,5 -0.7,1.6 -1.7,3 -2.4,3.8 -0.6,0.8 -1,1.2 -1.6,1.8 -0.7,0.7 -1.7,1.7 -3.5,2.5 -1.9,0.9 -4.5,1.5 -6.4,3 -1.8,1.5 -2.8,3.9 -2.6,5.9 0.1,2 1.5,3.6 1.3,5.6 -0.2,2 -1.8,4.4 -3.8,5.2 -2,0.8 -4.4,0.2 -6.2,-1.5 -1.8,-1.7 -3.2,-4.3 -5.2,-5.8 -2,-1.5 -4.6,-1.9 -6.8,-1 -2.2,0.8 -3.8,2.8 -4.7,5 -0.8,2.1 -0.8,4.5 -1.5,6.6 -0.6,2.2 -2,4.2 -3.3,5.4 -1.3,1.1 -2.7,1.5 -4.8,3 -2.2,1.5 -5.2,4.1 -6.9,6 -1.6,1.8 -2,2.8 -4.3,4.1 -2.3,1.4 -6.7,3 -9.2,3.9 -2.5,0.8 -3.1,0.8 -5,1.1 -1.8,0.4 -4.8,1 -7,1.4 -2.1,0.3 -3.5,0.3 -5.1,0.6 -1.7,0.4 -3.7,1 -5.9,1.2 -2.1,0.2 -4.5,-0.2 -6.5,0.2 -2,0.3 -3.6,1.3 -6,1.6 -2.3,0.4 -5.3,0 -7.1,-1.5 -1.9,-1.5 -2.5,-4.1 -2.4,-6.5 0.2,-2.3 1.2,-4.3 1.3,-6.2 0.1,-1.9 -0.8,-3.8 -1.6,-5.6 -0.8,-1.8 -1.7,-3.7 -2.2,-4.6 -0.6,-0.9 -1,-0.9 -2.8,-0.1 -1.8,0.9 -5.2,2.5 -7,3.5 -1.8,1 -2.2,1.4 -3.5,1.9 -1.3,0.5 -3.7,1.1 -5.8,2.6 -2.2,1.5 -4.2,3.9 -5.5,5 -1.4,1.2 -2,1.2 -3,1.9 -1,0.6 -2.4,2 -4.9,2.1 -2.5,0.2 -6.1,-0.8 -8.1,-1.6 -2,-0.9 -2.4,-1.5 -2.7,-2.4 -0.3,-0.8 -0.7,-1.8 -1.7,-3 -1,-1.1 -2.6,-2.5 -3.5,-3.8 -0.8,-1.3 -0.8,-2.7 -1.5,-3.8 -0.6,-1.2 -2,-2.2 -4.3,-2.5 -2.3,-0.4 -5.7,0 -7.5,0.3 -1.8,0.3 -2.2,0.7 -3.3,0.8 -1.2,0.2 -3.2,0.2 -4.9,0.5 -1.6,0.4 -3,1 -4.6,0.9 -1.7,-0.2 -3.7,-1.2 -5.7,-1.4 -2,-0.1 -4,0.5 -6.3,0 -2.4,-0.5 -5,-2.1 -5.9,-4 -0.8,-1.8 0.2,-3.8 0.2,-6 0,-2.1 -1,-4.5 -1.2,-6.3 -0.1,-1.8 0.5,-3.2 0.2,-4.8 -0.3,-1.7 -1.7,-3.7 -1.7,-5.7 0,-2 1.4,-4 3,-4.8 1.7,-0.9 3.7,-0.5 5.7,-1.2 2,-0.7 4,-2.3 5.7,-2.8 1.6,-0.5 3,0.1 5,0 2,-0.2 4.6,-1.2 6.5,-2.4 1.8,-1.1 2.8,-2.5 4.1,-3.3 1.4,-0.8 3,-1.2 4.7,-2.2 1.7,-1 3.3,-2.6 4.3,-3.8 1,-1.2 1.4,-1.8 3,-3.8 1.7,-2 4.7,-5.4 6.2,-7.7 1.5,-2.3 1.5,-3.7 1.7,-4.8 0.1,-1.2 0.5,-2.2 1.8,-3.4 1.3,-1.1 3.7,-2.5 6,-3 2.3,-0.5 4.7,-0.1 6.5,0.5 1.8,0.7 3.2,1.7 4.8,2.2 1.7,0.5 3.7,0.5 5.5,1 1.9,0.5 3.5,1.5 5,1.8 1.5,0.4 2.9,0 4.7,-1.3 1.8,-1.3 4.2,-3.7 5.3,-5.3 1.2,-1.7 1.2,-2.7 2.1,-3.8 0.9,-1.1 2.8,-2.2 4.6,-3.4 1.8,-1.2 3.7,-2.3 5.6,-2.1 1.9,0.3 3.9,1.9 5.9,2.6 2,0.7 4,0.3 6.2,0.5", attribute "fill" "#000000", attribute "id" "land_16"]) [], Svg.node "path" ([attribute "d" "m 634,385.2 c 3,0.5 4,1.1 4.5,1.8 0.5,0.7 0.5,1.3 0,2.3 -0.5,1 -1.5,2.4 -3.8,4 -2.4,1.7 -6,3.7 -7.9,6 -1.8,2.4 -1.8,5 -3,7 -1.1,2 -3.5,3.4 -4.6,5.2 -1.2,1.8 -1.2,4.2 -2.5,6.3 -1.4,2.2 -4,4.2 -7,4.4 -3,0.1 -6.4,-1.5 -8.2,-3.5 -1.8,-2 -2.2,-4.4 -1.7,-6.5 0.5,-2.2 1.9,-4.2 2.9,-5.5 1,-1.4 1.6,-2 2.1,-3.2 0.5,-1.2 0.9,-2.8 3,-4.5 2.2,-1.7 6.2,-3.3 8.4,-5.5 2.1,-2.2 2.5,-4.8 3,-6.5 0.5,-1.7 1.1,-2.3 4,-2.5 2.8,-0.2 7.8,0.2 10.8,0.7", attribute "fill" "#000000", attribute "id" "land_17"]) [], Svg.node "path" ([attribute "d" "m 2273.5,455 c 0.5,0.3 1,0.7 1.8,2.7 0.7,2 1.7,5.6 1.2,8.5 -0.5,2.8 -2.5,4.8 -4.7,5.8 -2.1,1 -4.5,1 -6,-1.3 -1.5,-2.4 -2.1,-7 -1,-10.2 1.2,-3.2 4.2,-4.8 6,-5.5 1.7,-0.7 2.2,-0.3 2.7,0", attribute "fill" "#000000", attribute "id" "land_18"]) [], Svg.node "path" ([attribute "d" "m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5", attribute "fill" "#ffffff", attribute "id" "land_19"]) [], Svg.node "path" ([attribute "d" "m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5", attribute "fill" "#ffffff", attribute "id" "land_20"]) [], Svg.node "path" ([attribute "d" "m 760.2,538.3 c -1.5,0.7 -2.9,0.7 -4.4,-0.1 -1.5,-0.9 -3.1,-2.5 -3.6,-4.4 -0.5,-1.8 0.1,-3.8 2.1,-5 2,-1.1 5.4,-1.5 7.4,-0.3 2,1.2 2.6,3.8 2.1,5.8 -0.5,2 -2.1,3.4 -3.6,4", attribute "fill" "#000000", attribute "id" "land_21"]) [], Svg.node "path" ([attribute "d" "m 823.5,524.8 c -0.2,2.5 -1.8,4.9 -4,5.7 -2.2,0.8 -4.8,0.2 -6.3,-0.7 -1.5,-0.8 -1.9,-1.8 -0.9,-3.8 1,-2 3.4,-5 4.9,-6.7 1.5,-1.6 2.1,-2 2.6,-2.1 0.5,-0.2 0.9,-0.2 1.7,1.1 0.8,1.4 2.2,4 2,6.5", attribute "fill" "#000000", attribute "id" "land_22"]) [], Svg.node "path" ([attribute "d" "m 114.2,538.7 c -0.5,1.6 -1.9,4 -3.4,5.5 -1.5,1.5 -3.1,2.1 -5,2 -1.8,-0.2 -3.8,-1.2 -4.8,-2.9 -1,-1.6 -1,-4 0.7,-6.1 1.6,-2.2 5,-4.2 7.3,-4.5 2.3,-0.4 3.7,1 4.5,2.1 0.8,1.2 1.2,2.2 0.7,3.9", attribute "fill" "#000000", attribute "id" "land_23"]) [], Svg.node "path" ([attribute "d" "m 651.8,555.5 c -2.1,0.8 -4.5,-0.8 -5.8,-3 -1.3,-2.2 -1.7,-4.8 -0.8,-6.8 0.8,-2 2.8,-3.4 4.3,-3.9 1.5,-0.5 2.5,-0.1 3.8,1 1.4,1.2 3,3.2 2.9,5.9 -0.2,2.6 -2.2,6 -4.4,6.8", attribute "fill" "#000000", attribute "id" "land_24"]) [], Svg.node "path" ([attribute "d" "m 801.2,544 c 0.1,2.3 -0.5,4.7 -1.5,6.2 -1,1.5 -2.4,2.1 -4.4,2.1 -2,0 -4.6,-0.6 -6.5,-1.8 -1.8,-1.2 -2.8,-2.8 -3.1,-4.8 -0.4,-2 0,-4.4 0.8,-5.9 0.8,-1.5 2.2,-2.1 4.3,-2.5 2.2,-0.3 5.2,-0.3 7.2,0.9 2,1.1 3,3.5 3.2,5.8", attribute "fill" "#000000", attribute "id" "land_25"]) [], Svg.node "path" ([attribute "d" "m 759.7,572.8 c 2,0.2 4.6,-2.8 6.6,-3.6 2,-0.9 3.4,0.5 4.2,1.5 0.8,1 1.2,1.6 0.5,2.8 -0.7,1.2 -2.3,2.8 -4.5,3.8 -2.2,1 -4.8,1.4 -6.7,2 -1.8,0.7 -2.8,1.7 -4.6,2.9 -1.9,1.1 -4.5,2.5 -7.2,2.3 -2.7,-0.2 -5.3,-1.8 -6.8,-3.5 -1.5,-1.7 -1.9,-3.3 -0.9,-5.7 1,-2.3 3.4,-5.3 6,-7 2.7,-1.6 5.7,-2 7.9,-0.5 2.1,1.5 3.5,4.9 5.5,5", attribute "fill" "#000000", attribute "id" "land_26"]) [], Svg.node "path" ([attribute "d" "m 1950,586.8 c 3,0.5 5,1.9 6.9,2.5 1.9,0.7 3.8,0.7 5.6,0.7 1.8,0 3.7,0 5.3,0.5 1.5,0.5 2.9,1.5 4.9,1.7 2,0.1 4.6,-0.5 6.6,-1.2 2,-0.7 3.4,-1.3 5,-1.3 1.7,0 3.7,0.6 5.2,0.8 1.5,0.2 2.5,-0.2 4.7,-0.3 2.1,-0.2 5.5,-0.2 8.3,0.8 2.8,1 5.2,3 6.8,4.2 1.7,1.1 2.7,1.5 4.2,2.1 1.5,0.7 3.5,1.7 5.3,2 1.9,0.2 3.5,-0.3 5.2,-0.8 1.7,-0.5 3.3,-1 5.2,-3.1 1.8,-2.1 3.8,-5.7 6.3,-6.6 2.5,-0.8 5.5,1.2 7.2,3 1.6,1.9 2,3.5 2.3,5.2 0.3,1.7 0.7,3.3 1,5 0.3,1.7 0.7,3.3 0.9,4.8 0.3,1.4 0.4,2.5 0.6,3.7 0.2,1.2 0.3,2.3 1.8,3.6 1.4,1.2 4,2.6 5.7,4.1 1.7,1.5 2.3,3.1 3.3,4.3 1,1.2 2.4,1.8 4,3.3 1.7,1.5 3.7,3.9 5.2,5 1.5,1.2 2.5,1.2 4.3,2.2 1.9,1 4.5,3 5.4,4.9 0.8,1.9 -0.2,3.8 -1.2,5.6 -1,1.8 -2,3.7 -3.7,4.8 -1.6,1 -4,1.4 -6,2.5 -2,1.2 -3.6,3.2 -5,4.2 -1.3,1 -2.3,1 -3.3,0.8 -1,-0.1 -2,-0.5 -4.5,-0.3 -2.5,0.2 -6.5,0.8 -9,0.3 -2.5,-0.5 -3.5,-2.1 -6.2,-2.5 -2.6,-0.3 -7,0.7 -9.5,1 -2.5,0.4 -3.1,0 -4.1,0 -1,0 -2.4,0.4 -4.2,2.2 -1.8,1.8 -4.2,5.2 -5.3,7.3 -1.2,2.2 -1.2,3.2 -2.9,4.9 -1.6,1.6 -5,4 -7.1,5 -2.2,1 -3.2,0.6 -4.9,-0.2 -1.6,-0.8 -4,-2.2 -5.5,-2.7 -1.5,-0.5 -2.1,-0.1 -4.1,0 -2,0.2 -5.4,0.2 -7.5,1.4 -2.2,1.1 -3.2,3.5 -4.7,5 -1.5,1.5 -3.5,2.1 -5,3.3 -1.5,1.2 -2.5,2.8 -4,4 -1.5,1.2 -3.5,1.8 -4.8,2.8 -1.4,1 -2,2.4 -2.2,4 -0.2,1.7 0.2,3.7 1,5.2 0.8,1.5 2.2,2.5 4.5,3 2.3,0.5 5.7,0.5 7.7,0.3 2,-0.1 2.6,-0.5 4.6,0.5 2,1 5.4,3.4 6.7,5.7 1.3,2.3 0.7,4.7 0.5,6.8 -0.2,2.2 0.2,4.2 0,5.4 -0.2,1.1 -0.8,1.5 -1.3,2.8 -0.5,1.3 -0.9,3.7 -2.7,6.3 -1.8,2.7 -5.2,5.7 -7.5,6.8 -2.3,1.1 -3.7,0.2 -5,-0.6 -1.3,-0.8 -2.7,-1.7 -3.7,-2.7 -1,-1.1 -1.6,-2.5 -2.6,-3.8 -1,-1.3 -2.4,-2.7 -4.9,-3 -2.5,-0.3 -6.1,0.3 -8.5,1.8 -2.3,1.5 -3.3,3.9 -3.6,6 -0.4,2.2 0,4.2 -0.2,5.7 -0.2,1.5 -0.8,2.5 -1,3.5 -0.2,1 0.2,2 0.7,2.8 0.5,0.9 1.1,1.5 1.8,3.5 0.7,2 1.3,5.4 2.8,7.4 1.5,2 3.9,2.6 5.2,4.6 1.3,2 1.7,5.4 1.2,7.5 -0.5,2.2 -1.9,3.2 -4.2,3.7 -2.3,0.5 -5.7,0.5 -7.8,-0.3 -2.2,-0.9 -3.2,-2.5 -3.7,-3.9 -0.5,-1.3 -0.5,-2.3 -1.5,-3.8 -1,-1.5 -3,-3.5 -4,-5.3 -1,-1.9 -1,-3.5 -2.2,-5.5 -1.1,-2 -3.5,-4.4 -4.3,-6.7 -0.8,-2.3 -0.2,-4.7 0,-6.2 0.2,-1.5 -0.2,-2.1 -1.7,-3 -1.5,-0.8 -4.1,-1.8 -6.5,-1.8 -2.3,0 -4.3,1 -5.8,3 -1.5,2 -2.5,5 -3.7,7 -1.1,2 -2.5,3 -3.1,4 -0.7,1 -0.7,2 -0.5,3.5 0.1,1.5 0.5,3.5 0.3,5 -0.2,1.5 -0.8,2.5 -1.2,3.5 -0.3,1 -0.3,2 -1.5,4 -1.1,2 -3.5,5 -5.5,6.3 -2,1.4 -3.6,1 -4.1,-0.6 -0.5,-1.7 0.1,-4.7 -0.7,-7.2 -0.8,-2.5 -3.2,-4.5 -4.5,-5.8 -1.3,-1.4 -1.7,-2 -2.2,-2.9 -0.5,-0.8 -1.1,-1.8 -1.5,-2.8 -0.3,-1 -0.3,-2 -0.1,-3 0.1,-1 0.5,-2 0.1,-4.7 -0.3,-2.6 -1.3,-7 -2.5,-9.6 -1.1,-2.7 -2.5,-3.7 -3.1,-4.5 -0.7,-0.9 -0.7,-1.5 -0.5,-2.4 0.1,-0.8 0.5,-1.8 0.5,-4 0,-2.1 -0.4,-5.5 -0.8,-8.3 -0.4,-2.8 -0.9,-5.2 -1.4,-7.5 -0.5,-2.3 -1,-4.7 -1.4,-6.1 -0.4,-1.4 -0.8,-1.9 -1.1,-2.4 -0.3,-0.5 -0.7,-1 -1.3,-2.6 -0.7,-1.6 -1.7,-4.2 -2,-6.7 -0.4,-2.5 0,-4.9 0.1,-6.4 0.2,-1.5 0.2,-2.1 -0.1,-2.6 -0.4,-0.5 -1,-0.9 -2.4,-2.7 -1.3,-1.8 -3.3,-5.2 -4,-7.8 -0.6,-2.7 0,-4.7 -1.6,-6.5 -1.7,-1.9 -5.7,-3.5 -6.4,-5.5 -0.6,-2 2,-4.4 4.5,-4.2 2.5,0.2 4.9,2.8 7.7,2.8 2.8,0 6.2,-2.6 8.2,-4 2,-1.3 2.6,-1.3 3,-3.3 0.3,-2 0.3,-6 1.1,-8.8 0.9,-2.9 2.5,-4.5 5.4,-5.4 2.8,-0.8 6.8,-0.8 9.7,-1.2 2.9,-0.4 4.8,-1.3 6.6,-2.1 1.8,-0.8 3.7,-1.7 3.9,-4.4 0.3,-2.8 -1.1,-7.4 -2.2,-9.9 -1.2,-2.5 -2.2,-2.9 -2.9,-3.4 -0.6,-0.5 -1,-1.1 -0.8,-3 0.2,-1.8 0.8,-4.8 3.2,-5.8 2.3,-1 6.3,0 8.5,0.2 2.1,0.1 2.5,-0.5 4,-1.4 1.5,-0.8 4.1,-1.8 6.3,-2.1 2.2,-0.4 3.8,0 5.5,-0.4 1.7,-0.3 3.3,-1.3 4.2,-3.5 0.8,-2.1 0.8,-5.5 1.1,-7.5 0.4,-2 1,-2.6 3.4,-3.1 2.3,-0.5 6.3,-0.9 9.3,-0.4", attribute "fill" "#000000", attribute "id" "land_27"]) [], Svg.node "path" ([attribute "d" "m 1589.8,717 c -0.1,0.3 -0.5,0.7 -1.1,1 -0.7,0.3 -1.7,0.7 -3.9,0.3 -2.1,-0.3 -5.5,-1.3 -7,-3.1 -1.5,-1.9 -1.1,-4.5 0,-5.9 1.2,-1.3 3.2,-1.3 5.4,0 2.1,1.4 4.5,4 5.6,5.5 1.2,1.5 1.2,1.9 1,2.2", attribute "fill" "#000000", attribute "id" "land_28"]) [], Svg.node "path" ([attribute "d" "m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0", attribute "fill" "#ffffff", attribute "id" "land_29"]) [], Svg.node "path" ([attribute "d" "m 2050.8,740.3 c 2.2,0.4 4.2,2 5.4,3.7 1.1,1.7 1.5,3.3 1,5 -0.5,1.7 -1.9,3.3 -3.4,3.8 -1.5,0.5 -3.1,-0.1 -5,-1.5 -1.8,-1.3 -3.8,-3.3 -4.6,-5 -0.9,-1.6 -0.5,-3 0.8,-4.1 1.3,-1.2 3.7,-2.2 5.8,-1.9", attribute "fill" "#000000", attribute "id" "land_30"]) [], Svg.node "path" ([attribute "d" "m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5", attribute "fill" "#ffffff", attribute "id" "land_31"]) [], Svg.node "path" ([attribute "d" "m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5", attribute "fill" "#ffffff", attribute "id" "land_32"]) [], Svg.node "path" ([attribute "d" "m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7", attribute "fill" "#ffffff", attribute "id" "land_33"]) [], Svg.node "path" ([attribute "d" "m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9", attribute "fill" "#ffffff", attribute "id" "land_34"]) [], Svg.node "path" ([attribute "d" "m 89.7,1041.7 c -1.7,1 -4.7,2.6 -6.4,3.3 -1.6,0.7 -2,0.3 -2.6,-1.5 -0.7,-1.8 -1.7,-5.2 -1.4,-7 0.4,-1.8 2,-2.2 3.7,-2.5 1.7,-0.3 3.3,-0.7 4.8,0.3 1.5,1 2.9,3.4 3.4,4.7 0.5,1.3 0.1,1.7 -1.5,2.7", attribute "fill" "#000000", attribute "id" "land_35"]) [], Svg.node "path" ([attribute "d" "m 2221,1040.3 c 1.7,0 4.3,-0.6 6,-0.8 1.7,-0.2 2.3,0.2 3.8,0.2 1.5,0 3.9,-0.4 5.9,-0.2 2,0.2 3.6,0.8 5.5,0.8 1.8,0 3.8,-0.6 6,-0.3 2.1,0.3 4.5,1.7 7.3,2 2.8,0.3 6.2,-0.3 8.3,-1 2.2,-0.7 3.2,-1.3 4.7,-1.7 1.5,-0.3 3.5,-0.3 4.7,-0.5 1.1,-0.1 1.5,-0.5 2.6,-0.5 1.2,0 3.2,0.4 4.5,1 1.4,0.7 2,1.7 2.7,4.2 0.7,2.5 1.3,6.5 0.8,9.7 -0.5,3.1 -2.1,5.5 -2.6,7.3 -0.5,1.8 0.1,3.2 0.3,4.2 0.2,1 -0.2,1.6 -1.7,3.1 -1.5,1.5 -4.1,3.9 -6.6,5 -2.5,1.2 -4.9,1.2 -6.5,1.5 -1.7,0.4 -2.7,1 -4,0.9 -1.4,-0.2 -3,-1.2 -4.7,-1.9 -1.7,-0.6 -3.3,-1 -5.2,-2 -1.8,-1 -3.8,-2.6 -5,-4 -1.1,-1.3 -1.5,-2.3 -3.6,-4 -2.2,-1.6 -6.2,-4 -8.7,-5 -2.5,-1 -3.5,-0.6 -4.5,0 -1,0.7 -2,1.7 -3.5,2.5 -1.5,0.9 -3.5,1.5 -6.2,1.5 -2.6,0 -6,-0.6 -8.5,-1.8 -2.5,-1.2 -4.1,-2.8 -5,-4.6 -1,-1.7 -1.1,-3.6 -1.3,-5.4 -0.2,-1.8 -0.3,-3.7 1.6,-5.6 1.9,-1.9 5.9,-3.9 8.2,-4.6 2.4,-0.6 3,0 4.7,0", attribute "fill" "#000000", attribute "id" "land_36"]) [], Svg.node "path" ([attribute "d" "m 1537.5,1094.3 c 1.8,1.4 2.2,3 1.6,4.5 -0.6,1.5 -2.1,2.9 -3.6,4.2 -1.5,1.3 -3,2.7 -4.9,2.7 -1.9,0 -4.3,-1.4 -5.6,-3 -1.3,-1.7 -1.7,-3.7 -1.7,-5.2 0,-1.5 0.4,-2.5 1.4,-3.5 1,-1 2.6,-2 5.1,-2 2.5,0 5.9,1 7.7,2.3", attribute "fill" "#000000", attribute "id" "land_37"]) [], Svg.node "path" ([attribute "d" "m 1603.5,1093.5 c 1.5,-0.2 2.5,-0.8 4.8,-1 2.4,-0.2 6,0.2 9,0.2 3,0 5.4,-0.4 7.7,-0.7 2.3,-0.3 4.7,-0.7 6.3,0.3 1.7,1 2.7,3.4 2.7,5.5 0,2.2 -1,4.2 0.2,6.5 1.1,2.4 4.5,5 5.6,8.2 1.2,3.2 0.2,6.8 -0.3,9 -0.5,2.2 -0.5,2.8 -1.8,4.2 -1.4,1.3 -4,3.3 -6.3,4.7 -2.2,1.4 -4.1,2.3 -5.9,3.1 -1.8,0.8 -3.7,1.7 -5.9,1.3 -2.3,-0.5 -4.9,-2.1 -6.3,-3.6 -1.3,-1.5 -1.3,-2.9 -3,-4.5 -1.6,-1.7 -5,-3.7 -7.1,-5.4 -2.2,-1.6 -3.2,-3 -4.2,-4.3 -1,-1.3 -2,-2.7 -2.8,-3.5 -0.9,-0.8 -1.5,-1.2 -2,-1.5 -0.5,-0.3 -0.9,-0.7 -1,-3 -0.2,-2.3 -0.2,-6.7 0,-9.3 0.1,-2.7 0.5,-3.7 1.3,-4.5 0.8,-0.9 2.2,-1.5 3.8,-1.7 1.7,-0.2 3.7,0.2 5.2,0", attribute "fill" "#000000", attribute "id" "land_38"]) [], Svg.node "path" ([attribute "d" "m 1417.7,1123.6 c 2,-0.1 2.6,0.4 3.3,0.9 0.7,0.5 1.3,1 1.3,3.3 0,2.2 -0.6,6.2 -2.6,8.5 -2,2.4 -5.4,3 -7.7,3 -2.3,0 -3.7,-0.6 -4.5,-2.8 -0.8,-2.2 -1.2,-5.8 -1.3,-7.7 -0.2,-1.8 -0.2,-1.8 0.3,-2.1 0.5,-0.4 1.5,-1 3.7,-1.7 2.1,-0.7 5.5,-1.3 7.5,-1.4", attribute "fill" "#000000", attribute "id" "land_39"]) [], Svg.node "path" ([attribute "d" "m 1695.2,1135.2 c 0.5,2.5 0.1,6.1 -0.5,8.3 -0.7,2.2 -1.7,2.8 -1.7,4.5 0,1.7 1,4.3 -0.2,6.8 -1.1,2.5 -4.5,4.9 -7.3,4.9 -2.8,0 -5.2,-2.4 -7.7,-3.5 -2.5,-1.2 -5.1,-1.2 -7.1,-2.4 -2,-1.1 -3.4,-3.5 -3.4,-5.7 0,-2.3 1.4,-4.4 2.7,-6.6 1.3,-2.2 2.7,-4.3 4.5,-5.4 1.8,-1.1 4.2,-1.1 6,-1.9 1.8,-0.9 3.2,-2.5 4.3,-3.5 1.2,-1 2.2,-1.4 3.4,-1.4 1.1,0 2.5,0.4 3.8,1.2 1.3,0.8 2.7,2.2 3.2,4.7", attribute "fill" "#000000", attribute "id" "land_40"]) [], Svg.node "path" ([attribute "d" "m 1914,1126 c 0.7,1.3 1.3,3.7 0.8,6.2 -0.5,2.5 -2.1,5.1 -3,6.8 -0.8,1.7 -0.8,2.3 -0.8,3.2 0,0.8 0,1.8 -1,3.1 -1,1.4 -3,3 -4.2,5.2 -1.1,2.2 -1.5,4.8 -3.3,6.5 -1.8,1.7 -5.2,2.3 -7.5,3 -2.3,0.7 -3.7,1.3 -5.7,0.8 -2,-0.5 -4.6,-2.1 -4.8,-5 -0.2,-2.8 2.2,-6.8 4.3,-9 2.2,-2.1 4.2,-2.5 6,-4.1 1.9,-1.7 3.5,-4.7 4.2,-6.4 0.7,-1.6 0.3,-2 1.7,-3.8 1.3,-1.8 4.3,-5.2 6.5,-6.8 2.1,-1.7 3.5,-1.7 4.5,-1.5 1,0.1 1.6,0.5 2.3,1.8", attribute "fill" "#000000", attribute "id" "land_41"]) [], Svg.node "path" ([attribute "d" "m 486,1160 c -0.7,-2 -0.3,-5 1.3,-7 1.7,-2 4.7,-3 5.4,-1 0.6,2 -1,7 -2.7,9 -1.7,2 -3.3,1 -4,-1", attribute "fill" "#000000", attribute "id" "land_42"]) [], Svg.node "path" ([attribute "d" "m 2216.8,1162 c -1.6,2.7 -5.4,7.3 -7.3,9.7 -1.9,2.3 -1.9,2.3 -1.9,2.3 0,0 0,0 -0.4,0 -0.4,0 -1.3,0 -1.8,0 -0.4,0 -0.4,0 -0.4,0 0,0 0,0 0,0 0,0 0,0 -0.2,-1.8 -0.1,-1.9 -0.5,-5.5 -0.1,-8.2 0.3,-2.7 1.3,-4.3 3.5,-5.2 2.1,-0.8 5.5,-0.8 7.5,-0.5 2,0.4 2.6,1 1.1,3.7", attribute "fill" "#000000", attribute "id" "land_43"]) []], Svg.node "mask" ([attribute "id" "water"]) [ Svg.node "rect" ([attribute "x" "0", attribute "y" "0", attribute "width" "100%", attribute "height" "100%", attribute "fill" "#ffffff", attribute "id" "rect82"]) [], Svg.node "path" ([attribute "d" "m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2", attribute "fill" "#000000", attribute "id" "water_2"]) [], Svg.node "path" ([attribute "d" "m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9", attribute "fill" "#000000", attribute "id" "water_3"]) [], Svg.node "path" ([attribute "d" "m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2", attribute "fill" "#000000", attribute "id" "water_4"]) [], Svg.node "path" ([attribute "d" "m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3", attribute "fill" "#000000", attribute "id" "water_6"]) [], Svg.node "path" ([attribute "d" "m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6", attribute "fill" "#000000", attribute "id" "water_15"]) [], Svg.node "path" ([attribute "d" "m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5", attribute "fill" "#000000", attribute "id" "water_19"]) [], Svg.node "path" ([attribute "d" "m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5", attribute "fill" "#000000", attribute "id" "water_20"]) [], Svg.node "path" ([attribute "d" "m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0", attribute "fill" "#000000", attribute "id" "water_29"]) [], Svg.node "path" ([attribute "d" "m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5", attribute "fill" "#000000", attribute "id" "water_31"]) [], Svg.node "path" ([attribute "d" "m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5", attribute "fill" "#000000", attribute "id" "water_32"]) [], Svg.node "path" ([attribute "d" "m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7", attribute "fill" "#000000", attribute "id" "water_33"]) [], Svg.node "path" ([attribute "d" "m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9", attribute "fill" "#000000", attribute "id" "water_34"]) []], Svg.node "g" ([attribute "id" "textPaths"]) [ Svg.node "path" ([attribute "id" "textPath_label1", attribute "d" "m 1336,227 34,0.3 c 34,0.2 102,0.7 175.3,1.2 73.4,0.4 152,0.7 191.4,0.8 l 39.3,0.2"]) [], Svg.node "path" ([attribute "id" "textPath_label2", attribute "d" "m 1259,508 38.2,-8.3 c 38.1,-8.4 114.5,-25 172.9,-24.5 58.4,0.5 98.8,18.1 140.5,37.3 41.7,19.2 84.5,39.8 106,50.2 L 1738,573"]) [], Svg.node "path" ([attribute "id" "textPath_label4", attribute "d" "m 1230,665 20.5,25.4 c 20.5,25.3 61.4,76.1 111.7,98.5 50.2,22.3 109.8,16.3 169,7.8 59.1,-8.5 117.9,-19.6 176,-33.8 58.1,-14.2 115.5,-31.6 144.1,-40.2 L 1880,714"]) [], Svg.node "path" ([attribute "id" "textPath_label5", attribute "d" "m 674,809 10.7,-76.3 c 10.6,-76.4 32,-229 97.8,-347.2 65.8,-118.2 176.2,-201.8 231.3,-243.7 L 1069,100"]) [], Svg.node "path" ([attribute "id" "textPath_label6", attribute "d" "m 434,617 18.8,21 c 18.8,21 56.4,63 103.7,79.8 47.4,16.9 104.5,8.5 157.2,-16.3 52.7,-24.9 101,-66.2 125.1,-86.8 L 863,594"]) [], Svg.node "path" ([attribute "id" "textPath_label7", attribute "d" "m 447,197 33,-2.6 c 32.9,-2.6 98.8,-7.8 162.8,-9.8 64,-2 126.1,-0.8 157.2,-0.2 l 31,0.6"]) [], Svg.node "path" ([attribute "id" "textPath_label8", attribute "d" "m 1386,532 31.3,-8.5 c 31.4,-8.5 94,-25.5 157.9,-46.7 63.8,-21.1 128.8,-46.5 161.3,-59.1 L 1769,405"]) [], Svg.node "path" ([attribute "id" "textPath_label9", attribute "d" "M 36,295 73.8,273.3 C 111.7,251.7 187.3,208.3 225.5,150 263.7,91.7 264.3,18.3 264.7,-18.3 L 265,-55"]) [], Svg.node "path" ([attribute "id" "textPath_label10", attribute "d" "m 943.5,538 h 30.1 c 30.1,0 90.2,0 161,36.2 70.7,36.1 152.1,108.5 192.7,144.6 L 1368,755"]) [], Svg.node "path" ([attribute "id" "textPath_label11", attribute "d" "m -101,284 26.7,32.5 c 26.6,32.5 80,97.5 125.8,130 45.8,32.5 84,32.5 103.1,32.5 h 19.2"]) [], Svg.node "path" ([attribute "id" "textPath_label14", attribute "d" "m 1271,463 26.1,-6.2 c 26.1,-6.2 78.2,-18.6 127.9,-41.7 49.6,-23.2 96.8,-57.2 120.4,-74.1 l 23.6,-17"]) [], Svg.node "path" ([attribute "id" "textPath_label15", attribute "d" "m 1554,179 24.1,7.2 c 24,7.3 72.2,21.7 119.5,37.2 47.3,15.5 93.9,32.1 117.1,40.3 l 23.3,8.3"]) [], Svg.node "path" ([attribute "id" "textPath_label16", attribute "d" "m 650,930 29.7,12.5 c 29.7,12.4 89.1,37.3 138.6,58 49.5,20.7 89.1,37.1 108.9,45.3 l 19.8,8.2"]) [], Svg.node "path" ([attribute "id" "textPath_label17", attribute "d" "m -6.6,1063 h 21.8 c 21.7,0 65.3,0 123.2,9.8 57.9,9.9 130.3,29.5 166.4,39.4 l 36.2,9.8"]) [], Svg.node "path" ([attribute "id" "textPath_label18", attribute "d" "m 496.2,873.5 27.5,-6 c 27.5,-6 82.5,-18 135,-46.5 52.5,-28.5 102.5,-73.5 127.5,-96 l 25,-22.5"]) [], Svg.node "path" ([attribute "id" "textPath_label19", attribute "d" "m 257.2,950 23.1,3.8 c 23,3.7 69.2,11.2 113.3,31 44.1,19.9 86.3,52 107.3,68.1 L 522,1069"]) [], Svg.node "path" ([attribute "id" "textPath_label20", attribute "d" "m 1981.2167,699 h 197.5666"]) [], Svg.node "path" ([attribute "id" "textPath_label21", attribute "d" "m 1837,842 11.3,-26.3 c 11.4,-26.4 34,-79 65.1,-105.4 31.1,-26.3 70.6,-26.3 90.4,-26.3 h 19.7"]) [], Svg.node "path" ([attribute "id" "textPath_label22", attribute "d" "M 150.85001,438 H 407.14999"]) [], Svg.node "path" ([attribute "id" "textPath_label23", attribute "d" "m -42,74 18,16.4 c 18,16.5 54,49.4 88.2,95 34.1,45.7 66.5,104.2 82.6,133.4 L 163,348"]) [], Svg.node "path" ([attribute "id" "textPath_label12", attribute "d" "M 575.13333,976 H 860.86667"]) [], Svg.node "path" ([attribute "id" "textPath_label13", attribute "d" "m 770,820 19.8,21 c 19.8,21.1 59.3,63.1 105.6,109.4 46.3,46.3 99.4,96.8 125.9,122 l 26.5,25.3"]) [], Svg.node "path" ([attribute "id" "textPath_label24", attribute "d" "m 1879,368 18,-12.1 c 18,-12 54,-36.2 90.6,-60.9 36.6,-24.6 73.8,-49.8 110.7,-75.6 36.8,-25.7 73.3,-52.1 91.5,-65.2 L 2208,141"]) [], Svg.node "path" ([attribute "id" "textPath_label25", attribute "d" "m 2132.9667,189 h 220.0666"]) [], Svg.node "path" ([attribute "id" "textPath_label26", attribute "d" "M 820.4,1118 H 838 c 17.6,0 52.8,0 106.7,-4.7 54,-4.6 126.6,-14 163,-18.6 l 36.3,-4.7"]) [], Svg.node "path" ([attribute "id" "textPath_label27", attribute "d" "m 2150,464 21.1,10.4 c 21,10.4 63.1,31.2 103,52 39.8,20.8 77.3,41.7 96.1,52.2 L 2389,589"]) [], Svg.node "path" ([attribute "id" "textPath_label28", attribute "d" "m 826,-46 26.7,14.3 c 26.6,14.4 80,43 91.5,108.2 11.5,65.2 -18.9,166.8 -34,217.7 L 895,345"]) [], Svg.node "path" ([attribute "id" "textPath_label29", attribute "d" "m 1882,896 37.2,-2.2 c 37.1,-2.1 111.5,-6.5 192,-38.6 C 2191.7,823 2278.3,763 2321.7,733 l 43.3,-30"]) [], Svg.node "path" ([attribute "id" "textPath_label30", attribute "d" "m 1221,563 18.5,23.3 c 18.6,23.4 55.6,70.1 94.5,98.4 38.8,28.3 79.4,38.3 99.7,43.3 l 20.3,5"]) [], Svg.node "path" ([attribute "id" "textPath_label31", attribute "d" "m 2012,260 26.2,0.2 c 26.1,0.1 78.5,0.5 120.6,0.6 42,0.2 73.9,0.2 89.8,0.2 h 15.9"]) [], Svg.node "path" ([attribute "id" "textPath_label32", attribute "d" "m 1501,141 17.8,-14.7 c 17.9,-14.6 53.5,-44 98.5,-24.3 45,19.7 99.4,88.3 126.5,122.7 L 1771,259"]) [], Svg.node "path" ([attribute "id" "textPath_label33", attribute "d" "m 1027.5,1020 22.8,-5.5 c 22.9,-5.4 68.5,-16.4 111.9,-35.2 43.5,-18.8 84.6,-45.6 105.2,-58.9 L 1288,907"]) [], Svg.node "path" ([attribute "id" "textPath_label34", attribute "d" "m 773,386 25.3,-9.7 c 25.4,-9.6 76,-29 135.2,-46.6 C 992.7,312 1060.3,296 1094.2,288 l 33.8,-8"]) [], Svg.node "path" ([attribute "id" "textPath_label35", attribute "d" "m 1,781 16.3,11.5 c 16.4,11.5 49,34.5 87.4,60.3 38.3,25.9 82.3,54.5 104.3,68.9 l 22,14.3"]) [], Svg.node "path" ([attribute "id" "textPath_label36", attribute "d" "m 1962,400 22.5,18.4 c 22.5,18.4 67.5,55.1 113.4,90 45.8,34.8 92.5,67.7 115.8,84.2 L 2237,609"]) []]], Svg.node "pattern" ([attribute "id" "oceanic", attribute "width" "100", attribute "height" "100", attribute "patternUnits" "userSpaceOnUse"]) [ Svg.node "image" ([attribute "id" "oceanicPattern", attribute "opacity" "0.4", attribute "xlink:href" "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAPUExURbHj79ry+J/c68Pp8u35+3+J9HQAAAo8SURBVFjDNJiLleMqEEQbcADCEADCGwAyCsA6Uv4xvVvNvD07H48F9Ke6qrDl2Pux9daOYi223nsz4yt26/1Tvz3w5mZhiz2bpV/vZvy1h2uYtaPmwQY9soZVRy5ps30Lbwt1M7uMZ8LdrVnd2P3MMVpMR9a/9X2zXsxuiyHaMexiJwIJP/0W+GqWFaKiITBWx6YnjGCGvh08Ex+ej7slrda5/DmXYWsZufGyW45sZS1b56hqFu4WLaU6WgwX0Rk18JCmQquXxWPE1zDCJ+tQCd3Cr/nupbHRVSyZSnbsRNZ3ogpfsk+qVtpU1/0Z43V7HdJFYOl4cmmRCGJuLfAoOe+bpcEaa3cnlFbHDBZYqTOGluZ8UajGz6hK6lnlYuoNaaVrVNK1VHNSdB6YdVb4o2w4wtbs5Q053qyheEd+Ntv0tDLywCLtyS/WJKVyk/RXcacYtKYokIfn82iVFzTD8kOXvBk0SU14vdW7xJ47J4aLAtvqR66Pinv9hd+obw6DIoOVm/DC1duHwEly+BJVOqU5DTR9NrVLYRVg8rb9nuP1tkTBiCWNQHSkPZpjJAnQtOje321XiY4vy23GSHKfDJAO6qoSqbQLi+MPVVHYfTdKtN+mo5USheH3mpWyIMkRglNjKy0EJZF023GT8n1ubKJXW0pUeVtYJOzSeyrg0Iagl7WGfudJJc53jETordMhb8G+kpSeAUdkqg5WULYRNDVsWuN5zMq3j+0RfBQbJNA6qFIPHCffSJAEVq/YT2KadUsTqLDHoaaOpAHTcF82Wa7wR19zFEDci8fn8Wze5ibIDLBH5t12zsgnxWV8gvdb1fgcTE+enHEzQSwIRTiOgQJ82KMOEhF2Sd7BPbqmehZ1guoF24fxk/km+VZ8xerNbyWvyCGkRuxMCa9/mms7KHU0L5GviDrnc/lIUIHmzS7TeSM3UYvoAoZQu6iKnVp+jP65vhrw7DhMogMNDr9vLcEAmTR4QGcQptacNOwAmgR2aZXOIMURD023Slq3GNUSVmhraEMFSKQBIU7mO5fsJADktGYnv2NoOMVQn5+JsmDd2OIBk5A6MF8tDsUnjMkjl3x5UqS9a80X1q1O784QKrjQVJJ384jxQ+tyKuTCsEZhHqbmoAeOp5zAJPmKS5wZRISsKcz866eRbO8eRN5EK/o3US3pZwrFdoybOYC//Z8a8srE/5wbeSgvjuC9J9PFRPLpXojdvgwT5EsR6FL55GeyE02B0Xl/Hir+4r9VgN3Od9caNrgavdx8FmqZ4QGHzAfdJ3f2fvkZirlB6GHjAOq6i7a7uLylg97B0EtDRHHiQkqi3sXz209aOMY7BqQR5Epj+AeEBS/mz2tMyVpzYoXgDueR8+RXKqVOjzn/9E+sfajiVuHYS5xXF3ZgxE0oFewpITU9ZjEXQTFRA5cmMotCfs1iBoM/TfOi9T8JpooO60hmXbac1mlBdEwGIaFR58+9hjuXYy5CBCwwy/EI4sXZWuDvCIECOvNXKzt60c+cDsZcsjySoDnWhGpIKCStb1mKqAMATAenXd0eshhBIjqWiKerBwpeWNW8ALZSJHmYQ80uCm6BXXRELQW2j33ekWi0QhNGKVpu8SNEzaO6gtqx1tVrisBZHCYrwAxzouS7hFTgBYuxuVpdUx0q7NYAszzM0Z3YBbqfnsdQbC5Ym2MA3FMDGQJGN4v6oMlNeVziKnXkkI4ooqkSq2RL56JYsAnJjZ35f1nroGLXGjkn3k5usBTSahH7R4jgJ3T1z+b9Q3vRLbmIqOpdU9ZsSbCYmRcABuL+Yrc6ArqQAvDzH7GazNlYOuciTIfcrogrBOStsk1zdOk5eEJZg2Go4u/f4FEYPPjuhPVvs9cTWSOrST1NXOTbr8jaCuPbRH0igRxTyO/mHo2pDNkLVr2FY3rBQtb0knYXEbpyS8dkdXbl7v40eVzO+YcA4N0TlMR2YgD2wirUrewXQt9SdV/DYQxbmY9UU04CwNtyjPxgBoGWyGN3aM38uDVSEYo8pLii+2w55KHaXDpyLYrcWs0OkyTG52tIlRie7PC1CzQpET0wMD2fn1jg+N8SHcsPShY16ih9UlDjUu8hOQnCBg+8LgdwvnRA0joOd4G+5bX9x7KSIo8sA4MRhYXNH48THyKF+Epy3TWupWI2ce6x9NgESsKlAYv6mOMej+UUJMvMu7QIPMhVZY0nxkOpw8tqZlBgnW1cGqUpIxTZs6i88cd3AhAzQ5hpaTHboel5+RvO0XOIXfojwNsScqii1+L9p3R/JXOn+/HBIKlwIlufFepIch2yXw+xuXmmlBCXCNMe+QjJo6ReCKJXr5yG1qjBqzdNHBs/chHedmuPp5syKketw42RRvy54kwYMnsvpctEPNyrvclF4r0lpGXhYaq5Gkt9pbquU7Iyg2VsBhkPeSW2lUbAZJ9t/qFUQpxk4HSOrS3OjYgZGhmMqisXK9KlRPDQJBvTosnhPPMUN3Jwsuq0rdufGC97UAEuFZEv0yplkk+cczLh0LiEgt7pHlTsosNeMOFX4mKufU6baiyzd+iSOEeVniOF1dzYYVhVYBl8WT3FxWSW7DL10/hq29cWd+nMqNgsFTn9wdGzkXbOyXqMi1ogXMn7dM0PidDcdv6UR/JZEbNKOpXGsTkRapohjFOyRJI3a5ImAXkuTmLr5lgQnOy875YhB/cx8kU04ntK7OWnguTajMvVLGXW23zUdrlEW8kr0yTyUNe6gAsLLiRP6U2T6YteoK/5nQWXyDts0Y5HG6aqB6DaSq2c1uhvCstfcJll1pJLu9sV4aRw06pyPHP5EiHbmyaaAF5iZarq90XBhAEOWlbFZCKBIY5NCgLf6QbD/Oap69kQa65bY/NLuXjb1l8AhWhEfB7/yPla8cp+ifYRG3yvRPJa91wfLNJZd0ytSYIWol/kjP4+YXAxciOTy5Z+euL8SVSR1+H23c9n26l2r089pMhaH4P4i4u5dOOWQUN6pMVB8xT10UeWpDLDSXe16SZHIlkphUxF0cXc/FMMN2gKTJ7i8hvndOz/4DKnF8mw1eMXh19dXIvlCVy4u4NQxtRJ7IfHBY7qcHW/iYT1dckB1PoEw5NpjsuaLwlR+zBJgnONbSwl0y3CdCt0d7nCck2S0J8jYnDV1uOJ8fR5l9y7bldd2dTLZRLMFUGEfXZFRMM35A7ouIEE4KpscrlTh5e5FjT0SYl7XN19aM3g2aQZDo+8bnfvCoSf+kBFSahPqgwa4dzj1+/zXh8DcWkpy4/re0ODi+TEaXiLH3roiizTZvItwjWGH0/odt/R5vd2MVwPYJiz7hT5o9wktllW9OEi1xuqzxVXpMkBdZtopPTH7agajpPVx0n/lWAGNgCDMAxj8MCkPlD6QvfA/n+KOFwAqCKx25BY1feDPZwiC1evb5Y29tm8XamQq2mp1H1iMc58DDyWEJheYc1WJVRhFtdBrYDG028WevOF27GK0tqt3psnkcKYPvgegQkepOo+AAAAAElFTkSuQmCC"]) []], Svg.node "g" ([attribute "id" "rose", attribute "stroke-width" "1"]) [ Svg.node "g" ([attribute "id" "sL", attribute "stroke" "#3f3f3f"]) [ Svg.node "line" ([attribute "id" "sL1", attribute "x1" "0", attribute "y1" "-20000", attribute "x2" "0", attribute "y2" "20000"]) [], Svg.node "line" ([attribute "id" "sL2", attribute "x1" "-20000", attribute "y1" "0", attribute "x2" "20000", attribute "y2" "0"]) []], Svg.node "use" ([attribute "transform" "rotate(45)", attribute "xlink:href" "#sL", attribute "id" "use139"]) [], Svg.node "use" ([attribute "transform" "rotate(22.5)", attribute "xlink:href" "#sL", attribute "id" "use141"]) [], Svg.node "use" ([attribute "transform" "rotate(-22.5)", attribute "xlink:href" "#sL", attribute "id" "use143"]) [], Svg.node "use" ([attribute "transform" "rotate(11.25)", attribute "xlink:href" "#sL", attribute "id" "use145"]) [], Svg.node "use" ([attribute "transform" "rotate(-11.25)", attribute "xlink:href" "#sL", attribute "id" "use147"]) [], Svg.node "use" ([attribute "transform" "rotate(56.25)", attribute "xlink:href" "#sL", attribute "id" "use149"]) [], Svg.node "use" ([attribute "transform" "rotate(-56.25)", attribute "xlink:href" "#sL", attribute "id" "use151"]) [], Svg.node "g" ([attribute "stroke-width" "8", attribute "stroke-opacity" "1", attribute "shape-rendering" "geometricprecision", attribute "id" "g161"]) [ Svg.node "circle" ([attribute "r" "9", attribute "stroke" "#000000", attribute "fill" "#1b1b1b", attribute "id" "circle153", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "75", attribute "stroke" "#008000", attribute "fill" "#ffffff", attribute "fill-opacity" "0.1", attribute "id" "circle155", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "212", attribute "stroke" "#1b1b1b", attribute "id" "circle157", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "211", attribute "stroke" "#008000", attribute "fill" "#ffffff", attribute "fill-opacity" "0.1", attribute "id" "circle159", attribute "cx" "0", attribute "cy" "0"]) []], Svg.node "g" ([attribute "stroke" "#1b1b1b", attribute "stroke-opacity" "1", attribute "shape-rendering" "geometricprecision", attribute "id" "g175"]) [ Svg.node "circle" ([attribute "r" "71", attribute "id" "circle163", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "79", attribute "id" "circle165", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "94", attribute "id" "circle167", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "152", attribute "id" "circle169", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "164", attribute "id" "circle171", attribute "cx" "0", attribute "cy" "0"]) [], Svg.node "circle" ([attribute "r" "207", attribute "id" "circle173", attribute "cx" "0", attribute "cy" "0"]) []], Svg.node "g" ([attribute "id" "s3", attribute "stroke-opacity" "1", attribute "shape-rendering" "geometricprecision"]) [ Svg.node "g" ([attribute "id" "s2"]) [ Svg.node "g" ([attribute "id" "s1", attribute "stroke" "#1b1b1b"]) [ Svg.node "path" ([attribute "d" "M 39.416,95.16 C 33.65,103.95 30.76,110.5 28.93,117.18 15.24,113.43 13.54,127.15 23.04,131 13.71,145.8 7.84,173.93 0,212 V 103 a 103,103 0 0 0 39.416,-7.84 z", attribute "fill" "#47a3d1", attribute "id" "path177"]) [], Svg.node "path" ([attribute "d" "M 39.416,95.16 C 33.65,103.95 30.76,110.5 28.93,117.18 15.24,113.43 13.54,127.15 23.04,131 13.71,145.8 7.84,173.93 0,212 V 103 a 103,103 0 0 0 39.416,-7.84 z", attribute "fill" "#000000", attribute "transform" "scale(-1,1)", attribute "id" "path179"]) [], Svg.node "path" ([attribute "d" "m -31.995,160.849 a 164,164 0 0 0 63.99,0 C 18.9,170.1 8.4,176.3 0,207 -8.4,176.3 -18.9,170.1 -31.995,160.849 Z", attribute "fill" "#c2390f", attribute "transform" "rotate(22.5)", attribute "id" "path181"]) []], Svg.node "use" ([attribute "transform" "rotate(45)", attribute "xlink:href" "#s1", attribute "id" "use184"]) []], Svg.node "use" ([attribute "transform" "rotate(90)", attribute "xlink:href" "#s2", attribute "id" "use187"]) []], Svg.node "use" ([attribute "transform" "scale(-1)", attribute "xlink:href" "#s3", attribute "id" "use190"]) []], Svg.node "symbol" ([attribute "id" "icon-anchor", attribute "viewBox" "0 0 30 28"]) [ Svg.node "title" ([attribute "id" "title193"]) [ Svg.text("Port")], Svg.node "path" ([attribute "d" "m 15,4 c 0,-0.547 -0.453,-1 -1,-1 -0.547,0 -1,0.453 -1,1 0,0.547 0.453,1 1,1 0.547,0 1,-0.453 1,-1 z M 28,18.5 V 24 c 0,0.203 -0.125,0.391 -0.313,0.469 -0.063,0.016 -0.125,0.031 -0.187,0.031 -0.125,0 -0.25,-0.047 -0.359,-0.141 L 25.688,22.906 C 23.235,25.859 18.829,27.75 14,27.75 9.171,27.75 4.766,25.859 2.312,22.906 L 0.859,24.359 C 0.765,24.453 0.625,24.5 0.5,24.5 0.437,24.5 0.375,24.484 0.313,24.469 0.126,24.391 0,24.203 0,24 V 18.5 C 0,18.219 0.219,18 0.5,18 H 6 c 0.203,0 0.391,0.125 0.469,0.313 C 6.547,18.501 6.5,18.704 6.36,18.86 L 4.797,20.423 C 6.203,22.314 8.906,23.689 12,24.11 V 14.001 H 9 c -0.547,0 -1,-0.453 -1,-1 v -2 c 0,-0.547 0.453,-1 1,-1 h 3 V 7.454 C 10.812,6.766 10,5.485 10,4.001 c 0,-2.203 1.797,-4 4,-4 2.203,0 4,1.797 4,4 0,1.484 -0.812,2.766 -2,3.453 v 2.547 h 3 c 0.547,0 1,0.453 1,1 v 2 c 0,0.547 -0.453,1 -1,1 H 16 V 24.11 c 3.094,-0.422 5.797,-1.797 7.203,-3.687 L 21.64,18.86 C 21.499,18.704 21.453,18.501 21.531,18.313 21.609,18.125 21.797,18 22,18 h 5.5 c 0.281,0 0.5,0.219 0.5,0.5 z", attribute "id" "path195"]) []], Svg.node "xhtml:style" ([attribute "type" "text/css"]) [ Svg.text("@font-face {font-family: "Almendra SC"; src: url('data:font/woff2;base64,d09GMgABAAAAACyAAA0AAAAAc4wAACwrAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGYACBHBEICoHQKIGbSAuDJgABNgIkA4ZIBCAFhCoHg0sMBxufVkUHctg4MMBevI8oysUoAv6vl9tmzWvaPQV1IwkEIcFlBhNsEgRD++djF2HrA9/rB8zFAhuyS4qqjtJ8wdU6X7VHaOkj3iHYZkeFNjqxMACDEsVGoRVBJAwkLBQztzmnM2PTub1LXYW6qt9+Ljo+auv/vcz5Wg8IIRNN24ll4v55jecfDn/nvT+aS7+3waNFnPj2+Au0SKMNEtaFKC62u/fTizVRxGFmVUSBSXPzfTpzNumz9/K1O6sCuK2KLfcnkEt7L9hw57u+uwPWO8sE5yl5pJcZSJ2J/9SwcHuWhLDsgItwqVfArdyU6yUBAhQKvD8A5t82q/0zSd5jxSQr5dnrRby9bsurhs/CMPMZLAqskhPCKrAaeTeZDBoiaFZVyZlrsqdaiTbFlrmyOy+1KHvTMWQJXPqre2VuvUx3hNYxYWeqz2pD1Kw/o2vYkUCCA4lLGwMQAOAx0DgUBMTVNUPruQYhAOhrdwOgVzaDvGHzNZhNDunDCss/lVWAB+m2DbY1CABWKt8Mh1QBJ8omlsQvTiIMAI4NQeQycJ0aD2zRvFpbxDY/IEGl6dN9rx9MHElEkgfJmxRJ2vbjR02atXZwItR1HEjzSG54xILyvif2+A5s2f+xqnffmjFj2nElsRb5A+H1IPnB4NdUkOkAJwLSU+D/KAIGnZfmIShtchg4KIgrqIxgOgZloCfyaRXlEcm7DtLLB7h7w8CsZE/Ty2Hg42VgtPfw/KjFAQqSOskoGiKjEKHDE4LWhKBW1pOGRUIONUkUVy/3G0paf5HlYUKcRvpepExEbYXM/7QBFqKg1yl5w3w5pVWe2bAG0AHvcIAuUQx5tJ1/bOVT/11cf7eetvfzF+66o6QkEVQdc6kwLs1+a2Oz8+JhQ7qS0/2WG7ZXOHWtMpXjTCWYOLoQFcvMFsBqRAZoAVEaWk3Va3A2IEYsSuBJ0Co2xeMAB8iAKJkP413NcHSqwzxCu2dmW03IBZ1SHBTvkrqi94WoidFdt9dq1VHVucS1WKKlCrOq2URlsy1zKdmQVjelQKd0ZTocolM9x2g9NAOjE27GGyOTMEOSNKKhowcXLlmlK6h80Sme310+y83iUjHg5rT2tvBcvKnyMlp3BN5cgIWRsBHXuFMjQEtkN95UPKGIbvuo9OrHzgRZqnfismNPdPDt4JIHaWS2x5NLi4CQLhHYQEtYYFzFJgmf78YXLlzxaeCdvb+L+FjkuOSrnLO1nZe9sBHRq7IaoyYLrMu+EEwFWn+iudSXp6jqqQkiY2c/ODUycoFtKoCkJsd2pcOa3dHszjBlUG0aShmvaMz9ciomPEgHaQCZsCXfWB5/bfnmmMY/T4BI33pPjr7uIa0NGji5hH3cu7/KLI6DSW6TZNG2GGT9N01u2gWraE+BAouTigVPPS1XWPEJq9Tloml8ZzUs7TdqDNFUCTnc5DtvQQZR2SmhY0aZx2jVMU88pVY6sUNOcZj4aWRAtERuNzK2AKDNM3YHJmIdaunosciaxWc5xnvy0IJ1XN9TsLFM46zGkwl7xntrjjZRE/n4bU3VEzewQRdDRB39QtmsPWSyqB4LzbPeyNmExpz71QWxCRK2FGSwYsWn9cC/aiBzC8S2asnSfoPqPi6B8OwyJuEpyVNVgyqIMCpYLKh0xA/RLkeak07skifBjOhnaoNxFY8I0skno/YEsGZhs08rc9SASGt8NuEJb87H1b6OLIk0jSTGbY3tCRJ2D0YEjFvexYysmxAJe9gho2W0UtyNetfZiMNCDDUUP5nQgKiL2A68KvDLSuF5inYsTzy5YvwEZIZCsTKmdYbLgSrdf6FxC507TiTfRfzWtBmSJQt5qlhyAlVJHNBMMmWcNgiEVk8RrV3hmD1neY775VUNq2DJbY1XWHvAkI2ln2MfQ/9+1oaFt9IZNn6AVkn5eI5e8QORI7qBoQekbl5echyupQUga2ytjbHHmCfEqHU77TsB0PotvO9rt0sInTKoMctcQdaHGiwdmcxk5+N+nSfo4gZzvxKj/tz2kPKTSZ/G8ywdCyx4qcccWzeY87BT+tVobG+bZ2iA5mFO8rk5+zwR/cA4RhY0Q/HYySmSPTd9iG+8ShVzxah/k288bVC4QEuuV9lBChQMz8oh5s48IgeNW2yTAMT39Zgc3UZpzgZqYXLiztqqx1Tox5odUT0lKXImU8XxDKAa4TJUV7rGgqfaNvmqWIV0ugcXz7K0tIXKMH4quCwQuhzmOw3aNbsjWjc5DjdDwpsRkDWMVsqZ4s4rhuWdxuaEX9CP/v5rRHr4/NBgxTxtbzIueSJ8pld4kmMVnNYmr4NmyCox63hOjPZf7HxPdI7j8KtZQHyAwhd4yFRmAcPyNF3m1HmfilcXg3I9v+04U91Fcg4ytUWp4MGm8cHBeLZNsxv7VVAJrRSsgUlHIrnvVLP0GHLmFJ9TIW8s0lGg6JsBet0Ty1HVoLssTwByIoY+UnPCr6nqmYBauBmtjD/XHZ+mSu8NkJFz3PFiynNgXPrOV3IUH9HYDhh6K2pXcgWycyFy0raboQJkARlhGAq4JJoSRQtaJyJH1x3KP5KbgnbzTfGWzvCY2Kj/K0BvoskvRukphFrRsskB8ZiiGvOBKG9KcAqcNhyeKCoUJqDBWc7URS2DBg2oHL7Yyotcd5zotL3unVli56xlEM4JbcmNSbkP7niQdl0IkSgpI3URKtj/nuSJqyn7HIrj7XIql9xJ+CR/Ro/5FfTJeu2Pto8uprwk2rzQSGfLuuQJ+9xQu8lqGXTXwYhXjbVe+Ya/8jBP4JI+MMohnOsemu1Kmd8/2Lo3pEN2r1iPhdQBvLRUrek91i/f8EdoHIYKYVqsnFOABJjxLrwrpb+7AmOX2sBuWNaxnhK9aIZqs7woDLlOAxhMmmOA2NaZZMMNSikVylVLh2rvzTyJ0xGADFC34mWv4XzBVUOsF+l/Bs6cyU0ger815wM2BHerYNIxpT8o/UKO99niH741Dxk0dN+35wODjwzENe6TvuvLfRm743soV+b2Cbk+FJSncwsERItZfXtolqXXYArLOQRYCLSzPYP5HKY/Qw7z9VNfbB28a1S8AIsZC2ahz1Mtg+JOueh8DaYtFFwwzF/I4Ax9Fjm+sOwFtq6X9RyWE/WBEgFuAt0ngZb3uGteShbsjyh78/ix3cPAIk38dndotUcZxGpn49HJLuKSBw8O841Boyc9658JF6w837vIg/5x6ogc8Zs6fXhTxBJJYZm8xlIhaS9ESuEQZA+P+u3ghks2GybFammzGdG/7L5OvFqKovcitTRqw5SO4G+Ims/KTqWthxTzPPtxdK2ji+p84yHDlCuGqQosz6VwV6fOzttDnwnXQN4FlIBQe5MA065Yk+FsRgXwOrt2J4T2TFBHkUYPnegdL1fIJFCpClFgIXfjiLeX7FK1UgUWIGva3TKPASLb5fjFXOYpTVUOc5AlwYJyr9FHbINBOLB6P2NtGZtMhC95CrJ18as7s8JgupKu+wNxSEtSoASNbMFgsUbz+0HqCypsxcVHJ12z7A4gWc+0n+0ouPHXbiN25i8wy4lNPzatxNKVhZCujMp9ONyc6YAH84Cox+f1Cx54LMWpkeEJuJTQC7cbyq1azPJ4mpwl9Fi0eSb8qpveYugGa7YaJ2J123c9qtGjd6JnrCJZKDtw5jOlWB1AWV5hvVL6fkx3kWjpVNBQiA5kJDHSdBWRnIP4e1eiw5zrzrfI4REjgKMxaqWg0mdcuag83xhrbhuwTZ647cxzbgkpyJYvu7oqiyBLT4TiVRopxaNcLicMaSoiCLUQMnbtWohIMOEB2UkEGH8pZvk1F/0zKOy070niYSqEQjSk0eQrUWGejUPYUF1UG/tfjjt5/kLsuEgzBdm2+LTOnJfZjS6yN71LeLFwhsHSMp1NpB+pB2gRVngSlZz4QnzhquMDwVQseyY5Q3BgpNECc4spqUeNLCnA9VpKL7bZ5dKMVQRd8s1k/Or3q3nctm3vMiDPys1WIR3c8djTHjwWab1wxaAvPNpSTZn+fcylYsmSQZea3o0BtXvEAQLkrCERPuN6QCfGbeAR+9/NjyyqW3xpiUMYijSqOnjJIcoqCTUXKUspvnVmMdyiSm0oU+AMwheiAqoX2lkRSa8TnOepshFpqrqqOmU3vZr1EswiLLMHXGLSXLHg6J939pnkW+1rGXiTt4dq1kQH3G80mDsjxvQ+OSr+9yaRWw01y7Za7ePVaEyQzqIJznjoqAHdROONhlpHtxbLTM5kfVcFhsYx/0Q//BhaUtuYE9/qeYvqiJczwdLVfY3nSdqPgQazUJmuLUEnsvVWhdj7v0W4Rtk5RCMlmBNTu8NDbym67/Go9+qXWbJJXuKpVr5sZvYUVNpsmdcqqOJculDbkvcoUFiYdRn+8FvyLLHPc6dKX37CwhELgQgwVXYTkkyINHvCaC1ZXJMUT9he5KLOL6vdm+BVD2kDXYpZFSK+dcZFOktpl3M9s7NsJFY0uV5FINrcEFh31UDUCrVRK+oUm2mDph5z6zBZYRXgFsop6zKCBsqbCRFOrLb5XVC547IN1agzlTVoV0UfsRV0wuUdZnLHt7KyKjmzRsQFppeBcZCQPhBecLKOXwMetSsEWA1IwkURdLU6J6Jdxp74BSJgpmg9Zh/39middn4qvLaJ/T7D4Idlvt0zVo0zS37mOefBASJ/0Gkyy4gD5DJP1DCQUCCCsG4TPhAjQemQM/qL9GWJrP2zF9HeX4oHhBT1SPDoP6b0jyR/vslTsQfrGMuSS/HXpsMnodhnbHRu6UMPqmRYLTvXS3E9IGtOcnniUq2PGsyVrB+s88QGa9JLzPXV12n1TbyZ88I8USicGDPMSE9nrU8mkC7OWq876VsbH7y8YWNp8tz03fNYBXKaPJuR0+E1OJ7dXe/meEgWiXl1gYwWg1QP3PjpgM6srBywzu4fswKscLcBPcAKbhv0Ie1ki4MrcG3QkV+Y2kDEFuc3e5elvRwGHlyptwZb7cs+9mEJcczDwrGPN+dLIsuO3AFp52zcK0v+e/tn456Dl4l3h71TzbofcQw9Yw7YqD5Kw4lIC1JvpULKmg9a25JhyJ6Am3AH296WorrV9+hrGQ7Ig4o+tt1MOMGd8joUccl5gn+Ah5ipIO6wJYqlkkXsOTq08uitYRYPi13NRb6edJpHV02aUQWFINLUGD3w9nIOIxvKLHmbD7ENccJkMe8Y2ra65/MWPBkNRSCLV3Ln152DBIo2agldtpgLkh+ukCSUkPNIxtvNXmQm2ADk08oBm4uXnLQDTf0ZabJjtMXf+DcTFB9Nk2Y4duNtaWwABPMNQDXYlpogHWktAYClHbID7JNshbh4VOlKx3WT7LGFDncCPB2wbB9/JflmMXrziTvke5u+n6T2b1X6oiKobUtTPRzLsBX2ABl+cZPHvjSYZa6I0onqUXnOiBm+l0TSAkOerUDFfOwzkqV6o90Uoalw4ZxVupB7d1CKobP60WtL7lztXeAPFyPd3fakOftXNiYPhAdVYJSvlltOOWqemCpSsmonS8QYLbfcdBCv0gxbVXNlF338SfSMF73NQMU8Ce3Qip8kzp5N/CTbpa6r75FUsuerDXSzgrHBmj0EYjqvzOCwh9K6+2rDnecOggWVAsBC565eBLVu+ZOJMg/WQ4nPEdU2dtn44qKIeB0qvAxaOxKH2G2zuAhaszQOkeVyxaGV7ViGM0MSIC63jo7KcZat03/5D4dNSxEUGJID1RlHoPK/1rPVQP6HtQIhcPKjGFmI4dzIjFW2ISkFAhLQIeDjCqXUxUqB4DtRCW3X0NvzLva+O+KqDUKuypHsCCImMOAtSWiwO8Jpn3trrk610VuYKa9jPUSsPGnu5O2wY0rpiaz6/Bof7/fWGqvUZINOpbWSW6WmGhiJqYEpyVee1s6LBrIa942qSadqvuG2rfr4+gRdnG+tzVZ4mVxj6i33FK3297nZPMqtrBQSivosmeIqvQwuhKULo2Nrc4V2UpH9p3YFX2ldSgyzHiqyypEp86J7MuQt0hJjbyhY2V4EHAreZCSN9xz93CT9KDSMg/6a0ZFDETAqx434fB02fe45Og7OrV5mdwnJC10Nc9BOg0yuANh9HIQPjh/r0we8NgKxNJLNtHqlaB1ga8hI3iW7ZScF/FPL7I6ieOQ1/ZoIHly/nwWrtzoUzdtx6YGAh01o053RJwdrWxoQT86/EcOXyCC8+uzkPrCazhZaHo3HecVhx+7C6OEDpWeaBlOtu2PdZgQAuyjAGUQBjJbjlVYRQLWQq3dPsVeELwf0xpbxJXW9rnUuXS1jBehOnpGxhtfT2srref5OADfuh1kC5XZWZIVd3bRtkJVqd1i7+fQDb7K5zp62Bx0PVqfYZObgl52UbOAV79tK6oLD/14VzkgvV2v4hQytyee3Ir/lyNWpu67gGKWGpvR4TUZS4+yI02tgWUollCc6x4VdpAtkEiGnfZXDq+nINGTbBoklanBTHXHNwBbrnK7+sXlrhYU5an8LgWWVDheBFAe8/DWU8vvhv3uZQd4s5nzZreBW430fj3P5rL+4yVllE+zc8d+TCthl2pqPCQD6G6jUVuQS7QMpoD7Zj9sRFSbkhzfBzIRN0yKFtrVdjNQUhGBbcp1NkLwMg9LfpMmTArY6P+wlmSvixtg8Q33sSc/VaNU1+YlanVFbs+p8RfCJ1JjiKRCBWJYrE34hIuNjegUFsTk+N082hrS3ahXC6U25jgcR3T0BQnOgXrUF1H/+DgZnuMXybLZimaukSD8jzpU0VStNkRpzuXpFZBI7cWIf/QJ2wLgBfUkpZpsW13Jzgs5u8eCl0CSJgCMa1QkVcmM5UJAT2XCBEz/cbS747dDr+Ze5j8v/y8gKaozP64bndcUD7rnN6PvZyX1batEXzuLBXw+5BF+6ige64rvjGwchm0E5+J1J/ld2xP8vV6GhTCVTqGJ0JhMyDZY05NjtUFfntVzr3Tnw71TssVRsRLcEm6fbrFPzfQRTJk96noweJ055WDg6sHYwpq34QLztrs2bdp19SjxONDKXDV6vts3+rQhvJTJN2oqTfFjmJc4Rdzn1G+Jq5f/cNC7bVOFNGwKPTJiROHyGqI8aj9ouDb9IQfGhw5zGKees2k3c5yMbrXeiCWatTUn0CmR/966n+KCaDq9R2xW4qz1iTt3pBe274WXeIQoQMqxFzUFXfptfpkivhcfpBPykZSMpTjEaMkYtci5+q0PtK4X8JumbFyO/EfJdBg9bIPAuUqPMInhqVB01k7viqAichPMoqWnsmw/jKhb6p5Sk0rrOsWcbB43E3Hx7BDGtG6Vy6Q+UN7Wx89btYchArq1z8Tg6U8H5/6RFbbTD9Aw9XegTl0bGqKcqGC/QRjk8Vd+tYhvstUN5MqnVmq0ivDIvpjfnkUKsTpdXGChuVT7yD1AgLS7dgrFEHQoVP77RP1EWPKBLz3kpECRVg/M4ueMR084SVrUrKgc3ADXnTV0MPWgHWHxmoNo5yr/BN5uQFsdqzjphvx2MnmrNCrOJtf4lOjMpcqq9sVDgVF8/iht+scArP98e4ZK/A6Fw6Qx529nMTmm3A/we8yF8vKiP+mnnXPhFCsYMDscjh6fW4CYu0cMeyWktwZZAlOgm+YfFy/BSV6QMMpKAGRWiwTTKQBseCMMz8JveZG6OvvUvuGvBylbgM+RJ14EGysVw6fYsKNQ+cCk76gBKIWifSZw18RK7S8+OoXXKisR9WCWuCFwyhqXoTU3iMMB9XgW1T2PQ2s6W7TUUzQ37CINqLYZMgHrEbhHDCZmcgdDSyhnoGEY8mUcMrQd3LfjUJpTOzqPZupKhOS5Xe8SOZuhL9k6segp5OgJEabGKvz1zsuDz27HqabrDjrC4/xHSBaSKB6rxbaFmEBS2taT+HmQyj/LvPgKupmWA5XHPob+KbDPBfb5sKj7K6ONakPRD+ADAUre6r1rFfN17N1IkttP4rPVRh/Dx5PPh0iKoV/PzLdigTR98ZWaj8yx71YfLuVfeVYqL+0a82FZm2bb6cxCYHl84ZNN5p4FR07ei8cJI2z5J3niJeVt6VGWQftFUjNwlmHikw9HxllP6dlukL6+4LBvUkHGqSkxRcdBciD2ZmeJdQyVZNpmx+ARlwoCAE0+5hkprxqWZ/kMSsAYTPS1RdR7kCwPm2N02+w0hCajJY+bTNX7KODm9XBUQX/auTu1bN7+04V3/5WrS/IVD6Pnnq4Nb3iz2JZxwCfX6sh+0eOMzLCMyrM0riE5RvX7MHirlYvjGrudc4Jdk3NHqRcbHKSQdYnqCTzYqrRcrg+A3+61p8qYA3AbKGbImyGnjoRJ75iJB1IJejlk5NGRWRkka65WuKXJbx1hEjgtHuj5XHCCIFGhi1LxImY+5ZKWJshAvC48CP49O28nJ9ynfQkRYWTZRhUAW5+Azgnm/iOcTnPK1ajyFEf12cYM7vBmOraBc5Mzt/OTbJ8LHH40Kz3zUakvvjorgpXpVpLU0Rlh98vCRVFAzZbiYGe4ZsAG1ceg5dyYJG9+6as/hGqBvwjcFRquNZrZrDoQfl5jcuM+7EPgcFjinpZxd8JJyEVTD/ikU85JSau5kYsKPhAsi5pM3q36PP8g4LhaVSqu+W3wPPef7DDlK8gecUW/Yj56D/8443jVv5Vq0SstndYCTmU4RXIeyeOksRNM5e5LjspWFWfMrDy++5SvqoypR6ztCpkSUaeDEGrw5aB9xFE+/vGQGvP2XuLkoDZzbUcdeHFpSeidMXS9ORm5MR5cPmJ/NE1j5O6PXOhHYozli+0wfHtJe9kHl7ifFnKMUq4LSk2nAk1nB+Lshg6XeVLFJtYxXYHvik2O/B7A6XnzJjBF9x4jMl4qtrAgKiIliUkAIVsCFhtiNpXd6Jn39AncxBSwu5noaqNmPQdiuXv9PQIUzpEv6ibSH8abf0sYuAXjbZvRAdnKtqRbMuznkPNgg0cStPVyMQYMiByP2uAEbcf8DVuWLVbH14Z9G6yKIkzpo3guTr4OKFOTDMi+WRtSPNs/tRYtRuRmEAzV2XnaAjPwdmY36oOfFPYVHx7OrmuoF9vPUDuPbOkT2aWJ0kpvnqQMxu/pZqRleB5FCYlhbzjCEJVBwZGyAjxBfeCjQGj2zSuZfbd5ndovXWyMckDSjS4WvOt+VIsmdEFAvAx/kS2Tl/KLb7Qdy3Ihq+y3Sd91iPx5ZcRDJcw91KnhHlhZkk3igbSIqZ/DLhXKHJ4+yNFBBX2RB1XZlldIRmK6RDFU1SyikqFc+W/gt7UQrZs/5obqpEXfhaGkr04ApCz3oJ8P8xsMKG+Bql0yAjwhcDi/cX+tbgRNXDx1cadUBSyVUfxpep/vKocbNRZaDPFtqc6if7tREP3Nw5SmdX2gzNWI/GVUOyj8Uv5zqvQrVdtKKkZL3R/TptqGhrtkJaFEmm1Jg7nVNIlrQvCtQPX/NWE0LHPMZDC2t1huboNvoteAY0T+3KNrEecfTavZFWPahhYXmJa6j9RHSumreQzdh4ijrObQhYzA3yxqwHMvDPpZh/A6GrhxkLsQo4XcjqN0ov3OzNaq6qjTSVYYLTN4E6GEx3I/kKta8AzaVhnBv1o2ssQjiDcNceLu/FLvAyXaDrRP3NUGWRUwPtNMvkUYJ1n/DGNXo4jklyvcLbaJGYLTQ925XYHlMpE5S/XQfcEUOqtEvs2jFIma7YZ3Bv7tRTOT9Ds+Qa/j5uuVe89td24m2S/ML/XunMcpFzOXLRjv9iWlVTtGWjqQWRXtQ+9z9U5vBelzDwmtN+/JcLEXVd6q3W8i2z+loP3HhfCGPnX2XKj4nXQgCkK+Re5bEL9ap8TwWJuaXamSo1zkkPxrNW3oPF0vHiP3RSTQPMA4va7gksuBdzd9k9EtaL03+tnP3U7JktCSHZbBZeQY8U3JlvUSm60IkrMj4v8peEG5HjhbciL3gwRW3C93csLXF5lzvLUg+r3fWlbcIGbe3mAh+Ck/XUf3KI6ckMZ6csqJ1sqP24/A4F7d4ZpLAy1nC0fhLuJ7RBbWfYks/2rgtROhcfEig4hqJt74mFKt2LOgoykF/RUiwjeuj3VcFE9XbeHKMkxar7nF0c8kEF1yZXRjhzdt+SIt3dBeDI5y37SLd6hfvDMhoR+SY6QaLrcJlnGNom6thynsosFxyGAHIREw1n2Q2A1REvvT+CKwoom70U7iejeSLINQSwVLa+OI21g0jFp4SN8hatNU7Pn1L0FEgQXBqenYsOBKRitYrgMUefeqhPO3VylkatZT6G6SsZiGUi4/nT+m3+m0Ucyo6Xktk1iS3/4ffRrsDlPHiippuJF/0w5WA96hPY3URP1XSFm0sXfbkZ0NE3YZP4VHZzkmtmm53+w2QzOv+0Zu1K5pW/zO6P2LMfINVbcXUj2WsNkMlzkD5ynaqXYrlNVNfWjCyWesthoxuKyFUvX05TZzeXf3dP16W6Mq0bUDxo2Ol3M+9U+tVT4/h+RIR6fVczr4K+3XCXbwLl59V2BUHMdSPK93Ziz47EOweOIKdZ1I0BuIk01eIZ0ttKEzilD5F8x93+z/dTNohv6tyGlxOu+pHO8Ts/mc7FwycdsnL3o386O7Gg/SBBftTNHriFJMibsUW4n3PIzppyPMIRIwhclIFW73G+V4CMjHNJJndVuAH+DOFHnO3PPRFXkySkdwq/ZM1/VaDkoZNjgfHy7xBFuLfzQh5EkxefNC0KtETlvX0JJvvxz1mXRbuRCXobPHFIhfQhitUtV24Cywd8HxIdpuRYZVc1q0miHeyVCH4UybS7nrwdM0pmGrdCBaZOeH9ahqNNpocaQnAv1mM0zueXLAW+WjB9lfypIm1DtkGTKyuX5ukclg7Yc6n8PHqnPQ0hG986zKXKG101u14X0S+ZWGilZzenaBtPfu9PyFZutiAve0e80HhF+I55brkjSEOFyinNTMEH7+BDxALvCJYhuiEeFvnw1XaeWmHgNo9NPs6M9n7wekgKA8nhdzy0eAaYcDq02bUwJJ30/ifv4OlGpe8bLAHccf6TtTfiwbpA87CCJ4qeiBbzucFGJ5l8luRMq/IySdRmRmdmpRVH6IQv693gV9JecHFAwHaOL7jY0AARpZW3TmPYS9cbIAMp2gs3w7vVXglJOgmMnuk82J7AcT8t9K+xPmoqGzPtyfE03PEObbH08QVlz5u2/Fx+/1n50dAntAaexXE8OMn8+B2yf9lvHKxf8qzUrfKYHPyBHdmaJbESCVqiG7KxMt1GqFW+BMoJRZNcA2FWrajKVidRRP1ZvVz0zPkDMecUKGSBo7+1lrbsgn9IDuZB18ifgMc105WVHy6aStQnQZje7qxM13fLtFBfdWCxIDUEJwg4C8nrfdIJQoLp1K9vTCV0Ha6FpvNqsRNnwgr9p3BAvRaHWL+yeq+H9A2sLBHGVmlTv4aKY2qSlA/SNp1K8mWpn+tTD0IwKoZt/AZbFXx1Pi4XVdYj1/8/qkrUh56eCWiLyR9dMA9++ExlKOlWJ7jI5C4FSZ4ViP3HshyIqfJLgoeCxKyK7LtJ4HivKv117iV7fIXDB9trf1kBd1xKBWRwMhtS7arud11TpBVabGvO5UgbZRuxpdlgyW3Bp2HLGjM4eK1cRIN+PmxgygYKanzIPwtscnCinQsz4LsIy5HChx13vu+teONmOM4jY7d5qf17p9KUi63o1gyiUes4vekgTNDXmgX9g8yHpnDptSPy/EeuIr3DXAVJSOQZ06jjetch+uvp7hn2mQNlegmwWpXaPxTI3W3fXWvPV2jIReeaGQzugLuyc/SZoc1QZ9B61chjRFthyNIHVJ3W3thk3RClbEjnFSTnmfb3YoSgUaoMWNFRqfCQaFMXWHokLpZZXmzJ1sis9gkzao+jh6cWFg0kd+PV2eZgh21bEPhAY+sflMTXqjMCXWUM9IzwB1kUdjO63FUTFAFgx53+rNXTTbKduukPPBIVOdqTkEwTTXA7+NZHTDUfP3PFKmKK9U+ZX+yDKxWj+6J2dqHJJZm7eFBtoNRfxGjueb6RPoZAkfIl2/1XILX7YwSH+lTY48rnZ6aU1MODpTygZB70QcV9y7KMFviQlUyncrHPMCaveh7ObhflFWpfGQ6VWjcFvac4Fbfz62RPTsa1keIDI4Hscx96iLRK3GoEu8oCCMu/JeQ50EIVArBH1e++5Xjk3hzH31JyzYf39zlYduMDQ5B5rt0CyYrZmGoY68Yukiq7vylOwZm1KxMiUtQPFCX5HiVJXfUI4HwpaEteEt5sq7DuBy7aUmBudp2RAlcymJeI0PBb9iTrrAmbk7CUpomunRw3ixZD0/7THIIJ1ilUjxQF1SSrZKOZQrGN4V4gESI5WbwfnLSw/06uHJT86dIV5dhlZvKjT/9s13v+NwM+iTf6YU1A7JvZy09HGbMFVDW0T6uEu3RZwBdNZ+ATL9I9Hseh7beFpFz0dufb/pocHlQ0IvKK4Wc/Z/AzkdVjBfolJVlMGiwDDEOXQ4cR0K0kGFQdKNzLVCzVss9enpocl7W9gpx9dQBwQ0X/vRmd91YQX647Lt7M24PrsuIxAVv2aQeHxVX5h7Yi5tY8QwBt7e5CrJ8VF2+MyuvdxRMpCA+r2IWkrN7yt6dHLdZL9gxTmqcOpxXWM6dZSo9vNa7tbAkQ8S7gjm8sMTt/+mfw3U3FhZ/tC5nj2ycK7AgfnNC1/BG6KVJHT8/p4e5EqGfAeIcnGOCL2ITF+pr9v1OqorIZfYhMnM/4V8+1K95Mz61j9gr2Udek7Blk15GlWxjVfzBXL4m5E/6pp2g08GIxTfghA1wpUsmk5ThcAI1RvHmUpih0JZ6KGnqxXWbhalK181nEOhZkYjSrb7CMi/S8xluYu71RuFVXx7HGWmkuE27/QzwEQGXBdSJXIrENV/tW+FipCEdEHrreLNb876rJfOzjJ4C7cMLlvflhnN6SRTUw9ZErK2526ff2dumO66RhGQ6hmRqJMfBw2H4DTlFlFrDo3rRjIp3aq7M97Xbb+M+Wenz18s07HzyykeDi4eC1kU8tr64RQOjJwaoBM0cPtuLw7614vuh3EyDehz+Lyys7uXh/L8LrD68pD+e4iIBd8j7MOmC93mSK+2kg9cF0vP5db28bSUqYfrSd8p7Yj2eoBsZ/cGI6mI47UWNeu56BKjAgZ5fLH4P5unnatohPL7A5jPmRnXK223IjrzOSm+lfi26m8msCZyuwdplOuyuqkqnSOVkqY90gVrXtlHxoUtxfx8tpGfA4+IrCdm25f3ndXvW1WdjfbWSops52adN6Z0q1ilnrGQr7gHYcT+d5bcCXwVshck+ySq3SrVg2y8NeId49KgenQsPEW2fT3jXmlL6lfJVCZJ8gT/3WmcHZjsYXuIU32H0ROuqKQLXA6DUBegP2cm1o7UATn0zzXvIk//n5WO15XIqOptnxK0gKZ7pdfU+hL0HGG5pyC3e22qsujejn6e1PNZb5OgjkUdbf9tTD5H03HbUWurV2j1snzfgSvrsDFjTEZzYIIoZj0rJoOjT6iA5kz4aXKZNxnGhynrH+U7K/Np4gvSYtRLBc/KjTqS9G8NI9iGng2Xhjng8tFuBnNizlT8cAts78AXYnuCUf4bPMFHDam2AY540Ue4XS7G4AS5A+DoVLfjKjvvwa5ganYwLV+NvLA2cPdAKSxfQ3RI/QeALg1cp/x23agBC9i/29AGx7irPXikXsXzF9A1jR73Kuf1c0qAmf69r+KlvRzzf5370/dcDfVszx2OPcsOwAOkLrhghlv43HzFcn3MgAIBY8n9FdWfYRP8CbvADAHB+Qz4CAHBz98KpH+lLnm2DGgCgQQEAAAQ4ih11xQAq+ExLql0zKwFyAeg7+0yIUWKj8PNnYb3hXTo2s2L1xxqJZKsEcjYukpt89eDGDSFms/U+x4a1Yr4YFbPC2JgcM2ExNClH2Or4RhFCc+SrQSW7MQgrNefi5Sf/FlBxfgqC7ZsMRxfQqSxVhaAqY5lqcKaRycy1flaV7hrwY63dvTkVZadX4XomNxvPYKkxTHcMtWVHXkn3fO4rYTIDQQmPkNhZ8h9nAOhO/g6P4jR6rnw9ju5+gf6KXiGaHDT94HsJzTGB3ciPLhOQtQAvCFxDJHzlUwjuzPcEPPwvr3o9Xxw2+eLV/OV+8NpD43c6SeJKxOYZuj+TvwzEwpDsWsp7Ppi8zl4yAP0T4AoUJxCiCHYaQXsAcokeBdtqJBN5jMNyjTjw49tcU/t5iYdE9nA6n+A2MUTc6KESmPP0AbwRrUNZiGAJwDUQAwZDhHWSFM6io1DJcB3YBUKSEAjDR5hz7oJBz1hD/nQJusfLcHhgNMy6nVOu3NeAG+DnC8pwHRKS8AbILT3yn3NoADiqCeRJt1kjUgBwogjkVPeQb58LzU2cVtqXK1UsxSnja0HjRiF8Ili6eYY7kG/UHs3ApQEHRRA7xTME1Wqj5QFTDeeywiUgEsKJS5FQ1l5EwkTydyQcRVokAlF1JJKvxTtrLcTBEyUsK2+oLLDkV5P8cvzXpmxWUJBR2SxTEr80yzSaLEvMyy1W1isvL0NZMYqqUyLPUoLssaCYkVNG+VcaktoIbp3cylrKjFISQ6U9oBJVqCTGkuTNL7YklporPWNvD+yXe8InbNHUUlOc5fk7iMFisaOSE1ITo7LhyQUd+LTginRGKWPTVRWMyoHUpvXtwFUgcvHlkUxmVU7lPFPVdXNG1XxSZTuUhZNMKZFDyen+aAO2/NohjyXHPv57CpAUazFRO3sHR4KT8zwXoqubu4cnycvbx5dMofr5BwTS6AwmK4gdHMIJDQuPiIyK5sbE8vgCoUgskcbFyxLkikRlkkqt0SanpKbp0vUGoykjM2u9Vm2OGPWmXb8eEzab1O3eEiP+/qfPmE4nH/21yhYf/v24znZn53bIzhlkPp975tzlCxcvvc27fuXqTpY/h9y6cTP//W9dCguKSopL1yirKK+sqqmurXtXP79hQePC/dZqWrRYs19/P+j2LrvdeXh32oy99jk1a49fOhx1LOjxz+vmj/5o23X0AQ=='); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-variant: normal;}")]], Svg.node "g" ([attribute "id" "ocean", attribute "style" "display:inline;shape-rendering:geometricPrecision"]) [ Svg.node "rect" ([attribute "x" "-0.64865482", attribute "y" "-0.4043372", attribute "width" "2001.2579", attribute "height" "1001.211", attribute "id" "rect208", attribute "style" "display:inline;fill:#80b3ff;stroke-width:0.843286;shape-rendering:geometricPrecision;fill-opacity:1", attribute "inkscape:label" "rect208", attribute "fill" "url(#oceanic)"]) [], Svg.node "path" ([attribute "d" "m -0.64865472,-0.40433722 c 0,0 0,0 0,13.81568722 0,13.730408 0,41.276503 0,55.09219 0,13.730408 0,13.730408 0,13.730408 0,0 0,0 9.42258982,3.581845 9.5059759,3.581845 28.3511549,10.660253 49.5311359,17.994507 21.096594,7.24898 44.444609,14.58322 61.538689,28.39893 17.09407,13.81567 27.93422,33.94224 36.68971,57.56535 8.75553,23.62313 15.42638,50.57225 32.35369,64.64378 17.01068,14.07154 44.19444,15.26548 72.96253,11.4278 28.76808,-3.8377 59.12048,-12.70703 78.79953,-26.60799 19.76243,-13.90097 28.93486,-33.00416 30.60257,-53.98352 1.66771,-21.06469 -4.16929,-44.09083 -6.83764,-65.66717 -2.58495,-21.661639 -2.08464,-41.788198 11.00693,-49.634145 13.09155,-7.845946 38.60759,-3.240716 66.70859,-2.729025 28.10101,0.596975 58.62018,-2.814306 85.88733,1.449796 27.26713,4.264101 51.11547,16.203584 76.71489,19.870711 25.59943,3.75241 52.78318,-0.852819 78.21583,-4.690511 25.43266,-3.837692 49.11421,-6.907844 74.21332,-1.790922 25.1825,5.116921 51.86594,18.420916 76.6315,19.017896 24.68219,0.59697 47.52988,-11.683642 64.20704,-12.110051 16.67714,-0.426412 27.18376,11.001381 22.76431,28.569481 -4.41945,17.65337 -23.93172,41.53234 -23.18125,60.46496 0.6671,18.84732 21.51353,32.83357 26.93361,49.88998 5.42006,17.05642 -4.58622,37.18296 -23.76495,44.43194 -19.17873,7.24897 -47.52986,1.62036 -75.46411,2.30261 -27.93421,0.68226 -55.45151,7.84594 -81.30109,22.7703 -25.84959,14.92436 -50.03146,37.60938 -54.86783,61.91475 -4.91977,24.30538 9.58936,50.23112 26.09974,71.38106 16.51038,21.14994 35.18878,37.69467 51.03208,60.37967 15.84329,22.77031 28.85147,51.7662 23.4314,76.24215 -5.42008,24.39065 -29.26841,44.34664 -48.36375,62.93813 -19.01194,18.59148 -33.18752,35.98901 -53.45026,46.64927 -20.34612,10.66025 -46.696,14.58322 -73.29607,19.18846 -26.51668,4.51993 -53.20011,9.63686 -75.96442,6.39615 -22.84769,-3.326 -41.69288,-14.92436 -57.95309,-33.00415 -16.26024,-18.07979 -29.93549,-42.47046 -40.44209,-67.96978 -10.59,-25.41404 -18.09471,-51.85147 -13.5085,-75.73044 4.58623,-23.87896 21.26338,-45.19947 18.92858,-63.27927 -2.4182,-17.99451 -23.76495,-32.83357 -48.36375,-33.68638 -24.59879,-0.85282 -52.44962,12.28061 -77.1318,23.6231 -24.76558,11.34251 -46.44587,21.06468 -58.95373,39.05917 -12.50786,18.0798 -15.8433,44.51723 -27.51732,68.99318 -11.67399,24.39064 -31.68658,46.90511 -49.78129,52.53371 -18.01131,5.7139 -34.18815,-5.37276 -53.03332,-17.31225 C 111.92211,583.77756 90.241813,570.98525 67.894432,557.85182 45.463665,544.6331 22.449197,531.15854 10.858579,524.42125 -0.64865472,517.5987 -0.64865472,517.5987 -0.64865472,517.5987 c 0,0 0,0 0,45.11419 0,45.1142 0,135.34258 0,180.45678 0,45.11419 0,45.11419 0,45.11419 0,0 0,0 10.67337572,6.82255 10.756762,6.82258 32.103515,20.55298 53.116724,34.53923 21.013207,13.98626 41.526095,28.14306 63.623335,35.81845 22.09721,7.67539 45.77877,8.86933 71.04465,14.92435 25.26588,6.14031 52.28287,17.22697 80.88417,23.02616 28.60132,5.88447 58.95373,6.39616 87.55505,10.83081 28.60131,4.43467 55.61829,12.62174 83.55251,19.01789 27.93423,6.39616 56.78571,11.00138 83.80268,12.53646 26.93359,1.53508 51.94932,0.17057 64.9575,8.78404 13.00818,8.69879 14.00881,27.46082 14.59251,36.84185 0.50031,9.38105 0.50031,9.38105 0.50031,9.38105 0,0 0,0 9.58937,0 9.58936,0 28.76807,0 38.35745,0 9.58934,0 9.58934,0 9.58934,0 0,0 0,0 7.67151,-10.91612 7.67148,-11.0014 23.09784,-32.8336 45.36184,-42.21462 22.26398,-9.38102 51.44901,-6.31086 80.38386,-7.67537 28.85148,-1.4498 57.53617,-7.41953 86.38763,-13.21873 28.93487,-5.88446 58.11987,-11.51308 83.7193,-10.66024 25.51604,0.85282 47.52974,8.18707 68.79324,4.09353 21.2634,-4.09353 41.7763,-19.78543 65.4578,-31.72492 23.5981,-11.93947 50.2816,-20.12655 77.9657,-26.011 27.6006,-5.79918 56.2854,-9.21047 83.4691,-9.03991 27.2672,0.0853 53.1167,3.83769 79.1331,10.23385 25.933,6.39615 52.1161,15.43605 75.1306,25.1582 23.0978,9.63686 43.1105,19.8707 52.2829,13.47457 9.1723,-6.39615 7.5046,-29.42231 21.4301,-42.47047 13.8421,-13.13343 43.3605,-16.20357 71.7952,-15.35075 28.5179,0.85281 56.0351,5.62861 85.3869,3.83768 29.2684,-1.87621 60.4547,-10.40441 90.9739,-16.37415 30.6024,-5.96974 60.6215,-9.38102 88.8058,-13.21871 28.2677,-3.8377 54.6177,-8.1018 79.2165,-15.52133 24.5987,-7.33426 47.4465,-17.90922 61.4553,-21.14994 14.0087,-3.15544 19.3455,0.85283 21.9304,2.89958 2.6684,2.04677 2.6684,2.04677 2.6684,2.04677 0,0 0,0 0,-19.52959 0,-19.44429 0,-58.41818 0,-77.94776 0,-19.44431 0,-19.44431 0,-19.44431 0,0 0,0 -11.424,-4.86108 -11.3404,-4.86107 -34.188,-14.58321 -34.188,-23.53783 0,-8.86934 22.8476,-17.05641 34.188,-21.06465 11.424,-4.09356 11.424,-4.09356 11.424,-4.09356 0,0 0,0 0,-14.58321 0,-14.49795 0,-43.6644 0,-58.16234 0,-14.58324 0,-14.58324 0,-14.58324 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.04676 0,-1.96149 0,-6.05503 0,-8.10179 0,-1.96149 0,-1.96149 0,-1.96149 0,0 0,0 -3.9193,-0.85282 -3.8356,-0.85282 -11.674,-2.47318 -25.8494,-10.66026 -14.1756,-8.18708 -34.6887,-23.02614 -58.0366,-37.95049 -23.3479,-14.92436 -49.5311,-29.934 -72.7123,-44.43194 -23.1813,-14.49795 -43.5274,-28.4842 -58.1199,-41.70291 -14.5924,-13.21871 -23.4313,-25.6699 -39.0245,-25.41406 -15.5932,0.25585 -37.7738,13.38928 -61.8723,23.02616 -24.015,9.63686 -49.8646,15.94775 -71.9619,12.53646 -22.0973,-3.41129 -40.4421,-16.54472 -61.4553,-17.22697 -20.9298,-0.68226 -44.6114,10.91608 -69.2102,22.42917 -24.5988,11.51307 -50.1147,22.94087 -79.2998,30.27512 -29.185,7.41954 -62.039,10.83081 -91.2238,13.81568 -29.1852,2.98487 -54.7012,5.54335 -59.8711,-5.28748 -5.17,-10.74553 10.173,-34.96563 29.7686,-53.38655 19.5958,-18.5062 43.444,-31.2985 69.2936,-43.49383 25.8496,-12.28062 53.7004,-23.87897 79.2164,-25.49933 25.5994,-1.53508 48.9476,6.99312 72.8793,1.87621 23.8482,-5.11693 48.3636,-23.87897 71.3781,-40.25312 23.098,-16.28885 44.7783,-30.27512 50.1982,-47.33152 5.4201,-17.05642 -5.4199,-37.18298 -12.0909,-56.11558 -6.6708,-18.9326 -9.1723,-36.5007 3.1687,-40.50895 12.4245,-4.00827 39.6082,5.71388 66.7086,2.3026 27.1003,-3.41128 54.1173,-19.956 82.4686,-25.75517 28.351,-5.79918 58.0363,-1.02339 83.8861,8.35763 25.8494,9.38104 47.8633,23.36729 68.543,23.87898 20.6796,0.59696 40.1919,-12.19534 54.4509,-19.18846 14.3422,-6.99314 23.5147,-8.27236 28.101,-8.86932 4.5862,-0.59698 4.5862,-0.59698 4.5862,-0.59698 0,0 0,0 0,-18.250361 0,-18.250355 0,-54.751061 0,-73.001415 0,-18.2503547 0,-18.2503547 0,-18.2503547 0,0 0,0 -0.1668,-0.3411281 -0.083,-0.34112809 -0.417,-0.93810226 -0.5004,-1.27923034 -0.1667,-0.34112808 -0.1667,-0.34112808 -0.1667,-0.34112808 0,0 0,0 0,0 0,0 0,0 -54.034,0 -54.0339,0 -162.1854,0 -216.2193,0 -54.0338,0 -54.0338,0 -54.0338,0 0,0 0,0 0.5836,1.96148652 0.5004,2.0467688 1.5843,5.969742 -4.0858,5.969742 -5.587,0 -17.928,-3.9229732 -24.182,-5.969742 -6.1705,-1.96148652 -6.1705,-1.96148652 -6.1705,-1.96148652 0,0 0,0 -5.8369,0 -5.8371,0 -17.5945,0 -23.4315,0 -5.837,0 -5.837,0 -5.837,0 0,0 0,0 -1.7512,1.87620452 -1.6676,1.7909226 -5.1698,5.5433318 -9.0055,5.5433318 -3.8358,0 -8.0884,-3.7524092 -10.1731,-5.5433318 -2.1681,-1.87620452 -2.1681,-1.87620452 -2.1681,-1.87620452 0,0 0,0 -193.3715,0 -193.3715,0 -580.03129,0 -773.40285,0 -193.37155,0 -193.37155,0 -193.37155,0 0,0 0,0 -0.33354,0.17056399 -0.33354,0.0852821 -1.00063,0.42641018 -1.50094,0.42641018 -0.50031,0 -0.75048,-0.34112809 -0.91726,-0.42641018 -0.16676,-0.17056399 -0.16676,-0.17056399 -0.16676,-0.17056399 0,0 0,0 -5.08653,0 -5.16992,0 -15.42637,0 -20.51291,0 -5.16991,0 -5.16991,0 -5.16991,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -21.51352,0 -21.51353,0 -64.62396,0 -86.13747,0 -21.51353,0 -21.51353,0 -21.51353,0 0,0 0,0 -3.75236,4.69051162 C 252.9274,8.9766857 245.33931,18.35771 230.1631,22.62181 215.07029,26.885912 192.22258,26.033091 172.12661,21.342581 152.03066,16.652068 134.68641,8.1238654 126.0143,3.8597642 c -8.75551,-4.26410142 -8.75551,-4.26410142 -8.75551,-4.26410142 0,0 0,0 -19.595645,0 -19.679037,0 -59.037112,0 -78.632763,0 -19.67903672,0 -19.67903672,0 -19.67903672,0 M 1037.087,396.75406 c 7.0878,20.46769 17.9279,46.56399 25.2659,71.89275 7.4213,25.32876 11.2571,49.71942 -0.834,62.25588 -12.0907,12.53646 -40.1084,13.04816 -68.04264,14.49794 -27.93423,1.44982 -55.78507,3.66714 -72.0453,-8.9546 -16.26021,-12.62174 -20.92982,-40.25312 -21.68029,-67.20224 -0.66708,-27.0344 2.66834,-53.47183 17.42762,-70.10183 14.6759,-16.62999 40.85903,-23.45255 60.45468,-30.53096 19.59564,-7.16369 32.60383,-14.49795 40.85913,-10.83082 8.1717,3.66713 11.5071,18.5062 18.5949,38.97388", attribute "style" "display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision", attribute "id" "path201", attribute "fill" "#ecf2f9"]) [], Svg.node "path" ([attribute "d" "m 8.8573208,-0.40433722 c 0,0 0,0 -1.5843293,1.70564052 -1.5843293,1.7909226 -4.7529877,5.2874858 -6.33731691,6.9931262 -1.58432931,1.7909225 -1.58432931,1.7909225 -1.58432931,1.7909225 0,0 0,0 0,12.19533 0,12.19533 0,36.585991 0,48.781321 0,12.195329 0,12.195329 0,12.195329 0,0 0,0 9.00566092,4.605229 9.0890468,4.690512 27.1003688,14.071539 44.3612198,21.491069 17.26085,7.33426 33.604456,12.79231 51.865924,17.73866 18.1781,4.94636 38.19067,9.55159 48.78068,22.42917 10.5066,12.96288 11.67401,34.28337 14.25896,53.21599 2.66834,18.84733 6.83763,35.39205 16.67715,49.03717 9.9229,13.64513 25.43266,24.39066 42.52673,26.94912 17.09408,2.55846 35.77249,-3.07015 53.53366,-10.23384 17.76114,-7.07841 34.77185,-15.60661 45.69538,-28.39892 11.00693,-12.79231 16.01006,-29.84872 25.59942,-42.89686 9.58937,-13.13343 23.76495,-22.17333 26.09976,-34.70978 2.41817,-12.53647 -7.08779,-28.39892 -16.51039,-44.94363 -9.42259,-16.45943 -18.92857,-33.51584 -14.84266,-46.478707 4.00251,-12.877587 21.51352,-21.746918 40.27531,-20.894097 18.76179,0.852819 38.77437,11.427791 58.95374,17.056404 20.09595,5.713897 40.44208,6.566717 60.28788,5.969742 19.84581,-0.511691 39.35809,-2.558461 57.70294,2.558461 18.34487,5.116922 35.52234,17.397534 52.19948,20.21184 16.67716,2.814307 32.85399,-3.667126 51.19885,-11.257226 18.34488,-7.504819 38.85777,-16.033021 55.86845,-15.180201 16.92731,0.85282 30.26904,11.086662 47.94682,19.78543 17.59439,8.613485 39.60822,15.777184 58.62018,14.924354 19.01195,-0.85283 35.18878,-9.722151 53.11672,-13.815688 17.92793,-4.093537 37.60698,-3.581845 46.7794,0.682256 9.17243,4.264102 7.83827,12.280602 -2.16802,22.599732 -10.0063,10.40442 -28.6847,23.19671 -34.5217,37.43882 -5.837,14.15682 1.16739,29.8487 11.42384,42.89687 10.25645,13.04814 23.93171,23.62309 29.3518,38.20634 5.42006,14.6685 2.58495,33.43055 -7.50473,39.40029 -10.17306,5.96974 -27.68406,-0.85283 -47.52988,-3.58185 -19.92919,-2.64373 -42.10979,-1.27923 -62.87285,1.62036 -20.67967,2.81432 -39.85839,7.07841 -58.62019,16.45944 -18.76178,9.38102 -37.10665,23.87896 -51.94932,37.95049 -14.92605,14.07153 -26.2665,27.71666 -26.18312,44.34666 0.16677,16.63 11.84076,36.24486 24.51541,53.72768 12.59124,17.48282 26.2665,32.83358 41.52611,47.07568 15.25958,14.15682 32.27028,27.29025 43.11041,44.1761 10.84015,16.88582 15.50977,37.69464 10.50661,56.11556 -5.00314,18.50621 -19.67903,34.70978 -32.18689,48.95188 -12.50786,14.15682 -22.8477,26.43743 -36.43958,37.5241 -13.59187,11.08666 -30.60257,20.97938 -47.11295,26.43744 -16.51036,5.37276 -32.6872,6.22558 -51.28224,10.23383 -18.59502,3.92297 -39.775,11.08666 -57.286,11.93948 -17.51101,0.85282 -31.35304,-4.60523 -45.44524,-10.66025 -14.00879,-6.1403 -28.18438,-12.96286 -39.69161,-23.19671 -11.59063,-10.23384 -20.42951,-23.87897 -30.76934,-38.80332 -10.25644,-14.92436 -21.93046,-31.12794 -28.01762,-48.35492 -6.17054,-17.14169 -6.67085,-35.39203 -5.16991,-53.72767 1.50094,-18.33564 5.16991,-36.75655 11.50724,-53.72768 6.42069,-16.88585 15.59313,-32.23661 10.00627,-42.21459 -5.50344,-9.89273 -25.84957,-14.49795 -45.86215,-9.80744 -20.01258,4.69052 -39.69162,18.67675 -59.87097,25.32877 -20.17934,6.65199 -40.69225,6.14031 -57.70293,10.66025 -16.92731,4.51994 -30.26903,14.24209 -38.02391,27.46082 -7.83825,13.21871 -10.00629,29.93397 -12.00755,49.12243 -1.91787,19.18846 -3.58559,40.8501 -12.59125,58.58876 -9.08905,17.73865 -25.43266,31.7249 -39.19131,34.36865 -13.75865,2.72903 -24.93233,-5.79917 -41.27593,-13.04814 -16.427,-7.24898 -38.10729,-13.21873 -53.366884,-26.18158 C 71.313247,577.55197 62.474358,557.59597 48.965867,544.12141 35.457375,530.73213 17.446053,523.65372 8.3570062,520.15716 c -9.00566092,-3.49656 -9.00566092,-3.49656 -9.00566092,-3.49656 0,0 0,0 0,13.30399 0,13.304 0,39.91199 0,53.21599 0,13.30399 0,13.30399 0,13.30399 0,0 0,0 1.41755773,0.25585 1.33417199,0.34113 4.16928749,0.9381 5.92038829,11.34251 1.8344865,10.4044 2.668344,30.53097 15.1762067,41.7882 12.507863,11.25723 36.689731,13.47455 57.70294,20.63825 20.929822,7.0784 38.774372,19.01789 53.617042,32.66302 14.84266,13.64512 26.8502,28.99588 32.27028,44.77306 5.42007,15.77717 4.25268,31.98075 0,31.29849 -4.33606,-0.76754 -11.84077,-18.33563 -26.85022,-29.42229 C 123.59611,738.735 101.08196,734.12976 81.65308,730.88905 62.140816,727.64833 45.797207,725.60157 32.538874,723.89592 19.363925,722.105 9.3576353,720.6552 4.3544903,719.88766 c -5.00314502,-0.76753 -5.00314502,-0.76753 -5.00314502,-0.76753 0,0 0,0 0,11.68364 0,11.59835 0,34.88034 0,46.56398 0,11.59836 0,11.59836 0,11.59836 0,0 0,0 6.50408862,5.2022 6.5874741,5.20221 19.5956521,15.52135 34.7718581,22.25862 15.176207,6.73727 32.353669,9.80742 46.862791,18.50618 14.425737,8.69879 26.099747,22.85559 39.441457,32.66303 13.34172,9.80744 28.35115,15.26548 45.61201,17.65338 17.17747,2.38789 36.68973,1.8762 55.45152,6.99313 18.76179,5.11692 36.77312,15.86245 56.53554,21.14994 19.76242,5.28749 41.10917,4.94635 61.45529,6.56672 20.26275,1.53506 39.44147,4.94635 59.7042,9.0399 20.34612,4.1788 41.69289,8.95461 61.28853,13.13342 19.59565,4.09354 37.44019,7.50483 57.53618,5.79918 20.17934,-1.70564 42.6935,-8.52821 57.8697,-4.94636 15.09282,3.49657 22.93108,17.48281 26.93359,28.82533 4.00251,11.34252 4.25267,20.21185 4.33606,24.56123 0.0834,4.43469 0.0834,4.43469 0.0834,4.43469 0,0 0,0 9.58938,0 9.58935,0 28.68468,0 38.27406,0 9.58934,0 9.58934,0 9.58934,0 0,0 0,0 4.50284,-6.65203 4.50284,-6.73728 13.42511,-20.04129 26.01636,-32.40718 12.50786,-12.36588 28.68469,-23.79367 46.44586,-26.43742 17.76117,-2.72901 37.27343,3.24072 57.36939,4.94635 20.17934,1.70565 41.02579,-0.85282 60.03774,-3.24071 19.09534,-2.47318 36.2728,-4.69051 57.28602,-8.44291 21.01321,-3.66714 45.69538,-8.78407 62.70608,-6.65202 16.92727,2.13206 26.09977,11.51308 37.52347,8.69879 11.3406,-2.89959 25.0158,-17.90924 41.7764,-27.03441 16.8439,-9.12518 36.8565,-12.19532 55.0346,-19.0179 18.2615,-6.82256 34.6051,-17.39752 53.2835,-22.08803 18.5949,-4.69053 39.4415,-3.49657 58.6201,-5.11693 19.1788,-1.53508 36.6899,-5.79918 54.7845,-5.54333 18.0113,0.34112 36.6896,5.11691 57.7863,5.7139 21.0965,0.59697 44.7782,-3.15545 60.8715,4.09353 16.0935,7.24897 24.7657,25.49932 37.2736,36.84183 12.5078,11.34253 28.8515,15.94773 38.4407,10.83084 9.5894,-5.11693 12.4246,-19.95601 16.427,-33.26 4.0026,-13.38928 9.3393,-25.32877 23.0979,-30.87211 13.7586,-5.54332 35.9392,-4.6905 57.2027,-1.27922 21.2633,3.41127 41.6094,9.38102 61.2051,12.3659 19.5955,2.98486 38.4408,2.98486 58.2032,-2.38791 19.7624,-5.45805 40.2752,-16.20358 61.2886,-24.04953 21.0132,-7.84593 42.3599,-12.62173 62.1223,-17.65337 19.7625,-4.94637 37.7738,-10.06328 56.2854,-14.58323 18.5116,-4.60524 37.3568,-8.52819 53.5337,-11.85421 16.0933,-3.24071 29.4352,-5.79918 40.6922,-5.45804 11.257,0.42639 20.4295,3.75241 25.0158,5.37277 4.5862,1.62035 4.5862,1.62035 4.5862,1.62035 0,0 0,0 0,-12.28061 0,-12.28061 0,-36.92713 0,-49.20774 0,-12.3659 0,-12.3659 0,-12.3659 0,0 0,0 -9.0058,-2.98485 -9.089,-2.98488 -27.1003,-8.95462 -45.8621,-8.69876 -18.7618,0.34112 -38.274,6.82255 -50.3651,9.29573 -12.0908,2.38788 -16.7603,0.68225 -12.9247,-9.12518 3.9192,-9.80743 16.4269,-27.71665 22.0139,-46.30815 5.5035,-18.67675 4.1693,-37.9505 3.3353,-54.58049 -0.8337,-16.63 -1.1673,-30.61624 7.755,-33.25999 8.9223,-2.72903 26.9335,5.79918 42.6935,11.17194 15.6765,5.37278 29.0182,7.5901 35.6891,8.69877 6.6709,1.10867 6.6709,1.10867 6.6709,1.10867 0,0 0,0 0,-9.89272 0,-9.89271 0,-29.76342 0,-39.74142 0,-9.89272 0,-9.89272 0,-9.89272 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.13205 0,-2.13204 0,-6.39614 0,-8.52821 0,-2.13205 0,-2.13205 0,-2.13205 0,0 0,0 -6.4208,-2.13204 -6.3372,-2.13206 -19.1786,-6.39615 -32.9373,-14.75378 -13.7588,-8.44294 -28.4345,-20.89411 -45.0283,-31.12794 -16.5105,-10.23386 -34.8553,-18.25037 -48.7808,-29.33704 -13.842,-11.08664 -23.3479,-25.24347 -37.7736,-35.47732 -14.4258,-10.23383 -33.938,-16.5447 -43.7776,-27.46081 -9.8395,-10.9161 -10.1731,-26.60798 -16.2603,-29.67814 -6.0869,-3.15544 -18.0946,6.22559 -33.9379,12.87758 -15.8432,6.73729 -35.5223,10.66024 -55.2846,11.93948 -19.7626,1.27924 -39.4415,-0.0853 -54.034,-1.79092 -14.5927,-1.70563 -24.0986,-3.7524 -36.6065,-2.72901 -12.5077,1.02338 -28.0175,4.94634 -46.3625,8.95461 -18.3448,4.00826 -39.5247,7.93122 -56.869,16.03301 -17.3443,8.10181 -31.0194,20.3824 -49.3643,29.33703 -18.345,8.9546 -41.3595,14.58322 -62.2058,18.59148 -20.8465,4.00825 -39.5248,6.22557 -60.2046,9.21046 -20.6795,2.98486 -43.5273,6.73729 -57.3693,2.47317 -13.9254,-4.2641 -18.9286,-16.54471 -14.7594,-30.27511 4.1693,-13.8157 17.511,-29.16647 30.6026,-40.25313 13.0082,-11.08666 25.8498,-17.90922 43.444,-27.88721 17.6778,-9.89273 40.1919,-23.02616 61.7055,-32.49244 21.5968,-9.55161 42.1097,-15.52135 60.0377,-15.94776 17.9279,-0.42641 33.2709,4.69052 49.5312,3.58185 16.2602,-1.19394 33.4376,-8.5282 50.0314,-15.26548 16.5105,-6.652 32.3536,-12.62174 49.698,-20.04128 17.4275,-7.33425 36.2727,-16.20359 43.2772,-30.70154 6.9209,-14.49793 1.9178,-34.62449 -8.5055,-49.54886 -10.4232,-14.92435 -26.2664,-24.64649 -31.5198,-36.41541 -5.3366,-11.76893 0,-25.75519 8.8389,-29.25174 8.9223,-3.58186 21.4302,3.24072 40.0253,4.77579 18.6782,1.62036 43.3605,-2.13206 64.3736,-8.78405 21.0134,-6.65199 38.1907,-16.37415 56.7025,-18.16507 18.5116,-1.8762 38.1906,4.09353 55.2013,12.02477 16.9273,8.01651 31.1028,17.90923 47.5298,23.36727 16.3436,5.37277 35.0221,6.22559 52.7834,4.51996 17.761,-1.70565 34.7717,-5.96975 48.6139,-11.59836 13.9253,-5.71391 24.7653,-12.70703 30.1854,-16.28887 5.4202,-3.49657 5.4202,-3.49657 5.4202,-3.49657 0,0 0,0 0,-14.839069 0,-14.839073 0,-44.602501 0,-59.441573 0,-14.839073 0,-14.839073 0,-14.839073 0,0 0,0 -2.6684,1.876205 -2.5849,1.876204 -7.9217,5.713896 -17.5945,7.5901 -9.756,1.876204 -23.9317,1.876204 -39.1079,3.41128 -15.0928,1.620359 -31.2695,4.690513 -48.7805,1.193948 -17.5112,-3.581844 -36.3563,-13.815687 -51.1155,-16.971122 -14.7593,-3.070153 -25.2659,0.85282 -40.2755,2.046768 -15.0094,1.108667 -34.5215,-0.596974 -54.3674,0.852821 -19.8458,1.364512 -40.1919,5.969741 -58.2032,9.636867 -18.0947,3.667129 -33.9381,6.566718 -50.8653,8.784051 -17.0107,2.302614 -35.022,4.008256 -49.1976,-3.240717 -14.0922,-7.248972 -24.3488,-23.452558 -29.4352,-31.5543507 -5.0865,-8.10179252 -5.0865,-8.10179252 -5.0865,-8.10179252 0,0 0,0 -25.933,0 -25.933,0 -77.7988,0 -103.7318,0 -25.9331,0 -25.9331,0 -25.9331,0 0,0 0,0 -3.8357,3.66712712 -3.8358,3.7524092 -11.5906,11.0866631 -22.1806,11.0866631 -10.59,0 -24.0983,-7.3342539 -30.7694,-11.0866631 -6.754,-3.66712712 -6.754,-3.66712712 -6.754,-3.66712712 0,0 0,0 -5.9205,0 -5.9204,0 -17.6779,0 -23.5982,0 -5.837,0 -5.837,0 -5.837,0 0,0 0,0 -5.7537,2.13205072 -5.6702,2.1320507 -17.0941,6.3961519 -27.4337,6.3961519 -10.4232,0 -19.7625,-4.2641012 -24.3488,-6.3961519 -4.6697,-2.13205072 -4.6697,-2.13205072 -4.6697,-2.13205072 0,0 0,0 -33.3543,0 -33.3542,0 -100.0628,0 -133.4172,0 -33.4376,0 -33.4376,0 -33.4376,0 0,0 0,0 -2.0846,4.00825532 -2.1682,3.9229732 -6.5041,11.9394829 -18.0947,14.4979449 -11.5907,2.558461 -30.43581,-0.341128 -42.19321,-4.264101 -11.75738,-4.0082559 -16.26021,-9.1251776 -18.51164,-11.6836385 -2.3348,-2.55846072 -2.3348,-2.55846072 -2.3348,-2.55846072 0,0 0,0 -16.2602,0 -16.34363,0 -48.86407,0 -65.20767,0 -16.26022,0 -16.26022,0 -16.26022,0 0,0 0,0 -2.41818,4.69051162 -2.4182,4.6905113 -7.25457,14.0715356 -14.92607,14.0715356 -7.67148,0 -18.26147,-9.3810243 -23.51476,-14.0715356 -5.3367,-4.69051162 -5.3367,-4.69051162 -5.25331,-4.69051162 -0.0834,0 -0.0834,0 -28.01761,0 -28.01761,0 -84.05284,0 -112.07045,0 -28.01761,0 -28.01761,0 -28.01761,0 0,0 0,0 -0.75047,2.55846072 -0.75047,2.5584609 -2.33481,7.6753826 -7.75488,7.6753826 -5.42006,0 -14.84266,-5.1169217 -19.51227,-7.6753826 -4.6696,-2.55846072 -4.6696,-2.55846072 -4.6696,-2.55846072 0,0 0,0 -31.0195,0 -30.93611,0 -92.89173,0 -123.91122,0 -30.93611,0 -30.93611,0 -30.93611,0 0,0 0,0 -0.33354,0.17056399 -0.33354,0.0852821 -1.00063,0.42641018 -1.50094,0.42641018 -0.50031,0 -0.75048,-0.34112809 -0.91726,-0.42641018 -0.16676,-0.17056399 -0.16676,-0.17056399 -0.16676,-0.17056399 0,0 0,0 -5.08653,0 -5.16992,0 -15.42637,0 -20.51291,0 -5.16991,0 -5.16991,0 -5.16991,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -15.59313,0 -15.59313,0 -46.86279,0 -62.45592,0 -15.67652,0 -15.67652,0 -15.59313,0 -0.0834,0 -0.0834,0 -3.58559,8.10179252 -3.5856,8.1017927 -10.67338,24.3053787 -15.00945,41.3617837 -4.25266,17.056405 -5.58685,34.965631 -2.41817,51.169211 3.16864,16.20359 11.00691,30.70155 9.42256,45.37005 -1.50092,14.58321 -12.34108,29.42229 -23.34799,30.7868 -10.92353,1.4498 -22.09724,-10.48969 -26.76683,-26.0963 -4.75299,-15.69188 -3.08527,-34.96563 -8.25519,-48.61075 C 220.90729,88.033125 208.89974,80.016614 193.22321,72.938207 177.5467,65.859798 158.03444,59.548928 139.4394,52.470519 120.84439,45.392112 102.99982,37.375601 85.238667,29.444371 67.477503,21.513143 49.632952,13.496633 40.794062,8.5502756 31.871788,3.6039181 31.871788,1.5571493 31.871788,0.61904703 c 0,-1.02338425 0,-1.02338425 0,-1.02338425 0,0 0,0 -3.835745,0 -3.835744,0 -11.507234,0 -15.342978,0 -3.8357442,0 -3.8357442,0 -3.8357442,0 M 990.14083,333.30423 c -14.5925,11.68365 -34.93864,16.80056 -54.53429,20.63826 -19.59565,3.83769 -38.44084,6.39616 -56.53553,5.79918 -18.09471,-0.51169 -35.27218,-4.2641 -53.11673,-4.2641 -17.76116,0 -36.10602,3.75241 -40.85901,9.38102 -4.6696,5.71389 4.16929,13.38928 17.51101,21.32051 13.34172,8.01651 31.18626,16.20357 42.94366,29.42229 11.84077,13.21873 17.67777,31.46907 23.76494,50.91338 6.17053,19.4443 12.50785,40.25311 14.09218,60.97664 1.50095,20.72354 -1.83449,41.53235 5.42009,47.92851 7.17117,6.39614 25.01571,-1.62036 44.69475,-3.8377 19.76242,-2.3026 41.44272,1.10866 62.87285,1.10866 21.34675,0 42.52685,-3.41126 60.53815,-2.8143 18.0947,0.5117 33.1042,5.11693 42.9436,1.96149 9.9229,-3.15544 14.5925,-13.90098 21.5969,-28.14308 6.921,-14.24209 16.0934,-31.81019 10.8401,-44.51721 -5.3366,-12.62174 -25.0157,-20.29712 -35.8558,-33.34528 -10.8402,-13.13342 -12.8414,-31.55434 -13.9254,-52.44844 -1.0841,-20.89409 -1.4176,-44.26136 -9.7562,-63.87623 -8.3386,-19.61488 -24.6822,-35.47733 -34.4383,-45.6259 -9.7562,-10.06327 -12.7581,-14.32738 -18.7618,-7.33424 -6.0037,6.90783 -14.8427,25.15818 -29.43517,36.75654 m 153.51327,422.57246 c 8.0883,11.51307 11.4238,18.67675 4.1691,25.92574 -7.1711,7.24898 -25.0156,14.58321 -32.5203,10.91609 -7.5048,-3.66711 -4.6697,-18.5062 -3.8358,-33.6864 0.8339,-15.18019 -0.3336,-30.87209 5.5035,-30.70152 5.837,0.17056 18.6784,16.03302 26.6835,27.54609", attribute "style" "display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision", attribute "id" "path203", attribute "fill" "#ecf2f9"]) [], Svg.node "path" ([attribute "d" "m 346.31944,-0.40433722 c 0,0 0,0 -2.9185,1.10866634 -2.91849,1.19394838 -8.83889,3.41128098 -13.50849,10.66025388 -4.75299,7.248972 -8.42196,19.529583 -13.84203,30.27512 -5.42008,10.830816 -12.59125,20.21184 -16.51037,31.042658 -3.91913,10.745537 -4.41944,23.026147 -1.91789,32.918859 2.50158,9.978 8.00504,17.65337 12.09095,25.75519 4.00251,8.10178 6.50409,16.62999 3.41881,25.75515 -3.00189,9.03991 -11.67399,18.76205 -18.17808,27.97251 -6.5041,9.21046 -11.00693,18.07979 -17.67779,24.73179 -6.67086,6.652 -15.50975,11.25723 -25.09912,11.08666 -9.58935,-0.17056 -19.92919,-4.94635 -28.10099,-12.19532 -8.1718,-7.24898 -14.34234,-16.97113 -18.59503,-27.88723 -4.33606,-10.9161 -6.83763,-23.1967 -8.33857,-34.79507 -1.58432,-11.68364 -2.08465,-22.77031 -6.58747,-32.83358 C 186.13542,103.04276 177.79686,94.002867 165.95607,89.141791 154.19868,84.280716 138.8557,83.769024 126.26446,82.063384 113.58983,80.357743 103.58353,77.458154 94.411101,72.682361 85.238667,67.821285 76.900092,60.998723 67.477503,55.711237 57.971528,50.509032 47.464923,46.756625 38.792805,43.68647 30.204073,40.531036 23.533214,37.972577 17.279281,37.375601 11.02535,36.778626 5.1883478,38.143138 2.2698465,38.825395 c -2.91850122,0.682257 -2.91850122,0.682257 -2.91850122,0.682257 0,0 0,0 0,6.993127 0,6.993125 0,20.979378 0,27.972503 0,6.907846 0,6.907846 0,6.907846 0,0 0,0 4.00251602,1.023383 4.0859017,1.023387 12.0909327,2.98487 21.5969087,6.73728 9.422591,3.667128 20.262738,9.125179 30.435799,13.048149 10.089676,4.00826 19.595651,6.56671 27.350527,10.57496 7.754874,3.92299 13.92542,9.38104 22.680924,12.02478 8.7555,2.72902 20.09597,2.72902 28.60131,5.88444 8.50534,3.07017 14.00881,9.38104 16.67715,17.90925 2.66835,8.52819 2.33481,19.27374 5.42007,30.78681 3.08528,11.51307 9.42261,23.79368 12.25771,34.88035 2.75172,11.08667 1.91787,20.97937 4.41945,30.70154 2.50156,9.63687 8.33857,19.01787 17.26085,26.52268 8.83888,7.59011 20.84643,13.21872 30.68595,13.13344 9.83952,-0.17055 17.67777,-6.14029 27.35053,-9.55158 9.75613,-3.41128 21.43013,-4.26411 32.85398,-4.94635 11.34047,-0.76755 22.51415,-1.27924 34.18816,-5.54334 11.67401,-4.2641 23.84833,-12.2806 27.51729,-22.51446 3.58559,-10.23382 -1.41756,-22.68501 0.41693,-31.21322 1.75112,-8.5282 10.42323,-13.13343 19.01195,-19.10317 8.58875,-5.96973 17.26086,-13.30399 21.01323,-22.17333 3.75234,-8.78404 2.58494,-19.0179 -1.66773,-26.69327 -4.33606,-7.67539 -11.84077,-12.7923 -20.42951,-19.4443 -8.67211,-6.73728 -18.34487,-14.92436 -23.26462,-24.64651 -4.83636,-9.636869 -4.83636,-20.723532 0.16676,-27.716657 5.00315,-6.907845 15.00944,-9.807434 25.43266,-12.877587 10.42322,-3.155435 21.26337,-6.566716 32.68722,-6.822561 11.34046,-0.34113 23.34801,2.55846 34.18815,4.946356 10.84016,2.387898 20.5129,4.434667 30.93613,6.993127 10.4232,2.55846 21.5969,5.628613 33.35428,5.372768 11.84079,-0.255848 24.34865,-4.008255 35.77249,-4.093539 11.34047,-0.170563 21.6803,3.240718 31.10289,7.078409 9.4226,3.837692 18.0947,8.101794 27.10037,13.815688 9.00566,5.628614 18.51162,12.792306 29.43516,15.009636 11.00693,2.30262 23.5148,-0.25585 32.68722,-4.264099 9.17243,-3.922974 15.00943,-9.381024 24.34865,-13.730407 9.2558,-4.434666 22.09722,-7.845947 33.43768,-11.683638 11.42385,-3.837692 21.43013,-8.101793 29.51855,-6.566717 8.00504,1.620359 14.17558,8.954613 21.93045,16.118304 7.75487,7.078409 17.26086,13.90097 28.10099,17.141688 10.84015,3.325999 23.01447,2.984869 34.68848,4.690509 11.67401,1.70565 22.8477,5.45805 32.43706,2.98487 9.58936,-2.38789 17.5944,-10.916097 25.51603,-16.629993 7.92165,-5.628613 15.75991,-8.528203 27.26715,-9.210459 11.50723,-0.682256 26.8502,0.682256 35.27218,7.419537 8.50534,6.651998 10.17305,18.591485 5.42007,24.305385 -4.6696,5.62861 -15.84328,5.11692 -28.18439,8.9546 -12.34108,3.8377 -26.01635,12.02477 -32.68721,21.57636 -6.67086,9.55159 -6.33732,20.29712 -1.66772,28.31363 4.75299,7.93123 13.92543,13.04814 22.68092,16.88585 8.75551,3.83768 17.09408,6.39616 22.51416,13.04815 5.42009,6.73727 7.92165,17.48281 9.42259,27.71666 1.58432,10.23383 2.08464,19.95599 -0.41693,29.76342 -2.50157,9.80743 -8.00502,19.70016 -15.42635,21.83221 -7.33796,2.13204 -16.51038,-3.49657 -25.93297,-8.95463 -9.50598,-5.37277 -19.17873,-10.48969 -31.60321,-10.74552 -12.34109,-0.34113 -27.35052,4.26408 -39.60822,7.67537 -12.17432,3.41129 -21.6803,5.62862 -32.10351,8.95461 -10.42323,3.24073 -21.7637,7.50482 -33.18754,11.9395 -11.42385,4.34938 -22.76432,8.95459 -32.93738,15.00963 -10.17305,6.14031 -19.01195,13.81568 -27.10036,22.17332 -8.08842,8.44293 -15.2596,17.48281 -20.26273,27.29026 -5.00316,9.80743 -7.83826,20.3824 -6.83763,31.55435 1.00061,11.25722 5.67022,23.1967 12.67462,31.98075 6.92102,8.86934 16.09345,14.49794 25.43265,20.38241 9.25583,5.79918 18.7618,11.76892 27.5173,17.14169 8.75552,5.45804 16.76055,10.23383 25.51604,17.48281 8.75551,7.24897 18.26148,16.97112 22.68093,29.59287 4.41944,12.62174 3.91913,28.31364 6.25394,40.67952 2.33479,12.3659 7.67148,21.40579 6.42069,30.53097 -1.25079,9.12517 -9.08905,18.16507 -17.51101,26.26685 -8.50534,8.1018 -17.67778,15.26549 -27.93421,21.23524 -10.33984,5.96974 -21.68031,10.74553 -28.76809,16.63 -7.08779,5.79918 -9.92291,12.62174 -13.67528,21.57634 -3.75235,8.95462 -8.42195,20.04128 -16.92731,24.47596 -8.50533,4.34937 -20.67966,2.13204 -31.68658,2.21732 -11.0069,0.17057 -20.67965,2.72902 -30.43579,5.28749 -9.75613,2.55846 -19.42888,5.11692 -30.18564,8.69876 -10.67338,3.49658 -22.34738,8.10179 -32.93737,9.80745 -10.50661,1.70563 -20.01258,0.51168 -27.35052,-3.15545 -7.33795,-3.66712 -12.67463,-9.97798 -19.42888,-15.1802 -6.83763,-5.28748 -15.17622,-9.55159 -23.26464,-11.68364 -8.00502,-2.13204 -15.84328,-2.13204 -22.34736,-7.24897 -6.5041,-5.11692 -11.84079,-15.35076 -17.67779,-23.62313 -5.83701,-8.18707 -12.17431,-14.49794 -20.09596,-21.74691 -7.92167,-7.24898 -17.42763,-15.43604 -23.09786,-25.15821 -5.67024,-9.63686 -7.67149,-20.72352 -6.25393,-32.663 1.41755,-11.93948 6.08715,-24.73179 6.92102,-36.24486 0.83386,-11.51307 -2.16804,-21.74692 1.16739,-31.55435 3.33544,-9.80743 13.00818,-19.18846 19.67904,-28.31364 6.67085,-9.03989 10.33983,-17.90922 11.25707,-27.80194 1.00064,-9.97799 -0.66708,-21.06467 -7.50471,-25.07292 -6.75425,-3.92297 -18.7618,-0.85282 -30.10226,1.27923 -11.42384,2.13206 -22.26398,3.32601 -30.85271,7.24898 -8.67213,4.00825 -15.00945,10.83081 -25.59943,15.77718 -10.59,5.03163 -25.26588,8.10178 -38.94115,9.80743 -13.59188,1.70564 -26.09974,2.04677 -36.35619,2.8996 -10.33984,0.85281 -18.34487,2.21731 -25.01572,7.0784 -6.67086,4.86108 -12.00755,13.04813 -15.75991,24.04953 -3.75235,10.91609 -5.92039,24.56123 -6.33731,36.0743 -0.41694,11.51307 0.91723,20.89408 1.08401,30.2751 0.16678,9.38103 -1.00063,18.76206 -5.16992,28.31365 -4.1693,9.4663 -11.34046,19.18846 -20.26274,28.99588 -8.92228,9.80744 -19.42887,19.70015 -26.01635,22.42917 -6.50408,2.72903 -9.00567,-1.87619 -14.84265,-5.96974 -5.83702,-4.09352 -15.00946,-7.84594 -25.84959,-12.11004 -10.84015,-4.2641 -23.34801,-9.0399 -34.18816,-14.32737 -10.840152,-5.28749 -20.012585,-10.91611 -26.516674,-18.0798 -6.587473,-7.0784 -10.423217,-15.60662 -16.26022,-25.1582 -5.837003,-9.4663 -13.675263,-20.04128 -22.263996,-27.11969 -8.588732,-7.0784 -18.094708,-10.83081 -25.682811,-12.7923 -7.671489,-1.96148 -13.5084912,-2.13206 -16.4269925,-2.21732 -2.91850122,-0.17057 -2.91850122,-0.17057 -2.91850122,-0.17057 0,0 0,0 0,7.16368 0,7.16369 0,21.40579 0,28.56948 0,7.16368 0,7.16368 0,7.16368 0,0 0,0 4.41944472,2.13206 4.5028305,2.21734 13.341721,6.65199 19.345494,13.98626 6.003774,7.33426 9.005661,17.56809 11.090305,29.93399 2.084644,12.3659 3.252044,26.86384 9.505975,33.6864 6.253931,6.82256 17.594394,5.96975 29.852099,4.51994 12.257705,-1.3645 25.265881,-3.41127 34.605097,0 9.33919,3.41128 14.84265,12.28061 21.0132,20.89411 6.08715,8.69877 12.75801,17.22696 23.01446,21.74691 10.33984,4.60524 24.18187,5.11692 34.77187,3.15544 10.58998,-1.9615 17.76115,-6.56671 23.59816,-4.86107 5.83701,1.70563 10.33984,9.72214 9.75613,17.82393 -0.5837,8.1018 -6.08716,16.28888 -8.58872,24.39066 -2.50158,8.10178 -2.00126,16.11831 -1.83449,25.1582 0.16676,9.12518 -0.16677,19.35902 5.2533,27.20496 5.42007,7.76068 16.59376,13.21871 25.7662,17.05641 9.17243,3.8377 16.3436,6.05503 21.51352,14.15682 5.16992,8.1018 8.1718,22.08806 14.75927,32.40717 6.50409,10.40441 16.51038,17.22698 17.59439,21.23524 1.16741,3.92296 -6.67086,5.11691 -15.84329,2.64373 -9.17242,-2.38789 -19.67904,-8.35763 -27.76746,-15.77716 -8.08841,-7.33427 -13.59187,-16.20361 -21.26336,-19.44432 -7.67149,-3.24072 -17.34423,-1.02338 -27.93423,1.53508 -10.58998,2.55846 -21.93045,5.45805 -31.43642,2.47318 -9.42259,-2.98486 -16.9273,-11.85419 -24.5988,-17.82394 -7.5881,-5.96975 -15.42636,-9.0399 -21.68029,-16.20359 -6.25393,-7.07841 -10.92353,-18.16506 -16.67715,-23.53783 -5.67023,-5.45806 -12.341092,-5.11693 -21.930454,-5.88447 -9.58936,-0.68226 -22.097223,-2.38789 -31.519813,-7.33425 -9.505975,-5.03164 -15.843292,-13.21872 -24.515411,-17.22698 -8.588732,-4.00825 -19.428879,-3.75241 -24.8489529,-3.58183 -5.42007382,0.17055 -5.42007382,0.17055 -5.42007382,0.17055 0,0 0,0 0,7.41954 0,7.41954 0,22.34389 0,29.76342 0,7.41954 0,7.41954 0,7.41954 0,0 0,0 1.66771492,0.68225 1.6677151,0.68227 5.0031451,1.9615 10.2564478,6.48144 5.336687,4.51995 12.507862,12.19533 20.179352,18.16508 7.671488,5.96974 15.67652,10.23384 25.599424,12.7923 9.83952,2.55847 21.513523,3.41128 30.936113,8.5282 9.505976,5.11693 16.677143,14.49794 23.514793,23.19672 6.83762,8.61348 13.17494,16.62999 20.59626,21.32051 7.33795,4.6905 15.67653,6.05501 23.59818,6.22558 7.92164,0.17056 15.42635,-1.02338 26.43328,-2.30261 10.92353,-1.27924 25.43265,-2.64374 35.6891,0.59698 10.25646,3.24071 16.42699,11.25721 25.59943,16.37414 9.17243,5.11693 21.34675,7.33425 32.93736,8.61348 11.50724,1.27924 22.3474,1.62038 34.02138,3.15544 11.67401,1.53508 24.18187,4.43465 35.68911,5.7139 11.59063,1.27923 22.09722,0.93809 33.10414,3.66712 11.00692,2.72904 22.34739,8.35765 33.938,11.68363 11.50723,3.24072 23.18124,4.09355 34.0214,7.93124 10.84014,3.83769 20.84643,10.66026 31.93675,16.20359 11.17368,5.54332 23.34799,9.80742 34.52168,8.27235 11.09032,-1.62036 21.0966,-8.95461 30.85273,-15.77718 9.67275,-6.82256 19.17872,-13.13343 30.51919,-15.77717 11.42385,-2.72902 24.76556,-1.8762 31.43642,5.62862 6.67085,7.5901 6.67085,21.74691 6.75425,33.26 0.16676,11.51307 0.41692,20.3824 0.50031,24.73178 0.0834,4.43469 0.0834,4.43469 0.0834,4.43469 0,0 0,0 9.50599,0 9.50597,0 28.51792,0 37.94052,0 9.50596,0 9.50596,0 9.50596,0 0,0 0,0 0.83386,-6.82259 0.83387,-6.82256 2.4182,-20.46769 8.17182,-27.88723 5.67023,-7.33425 15.34297,-8.5282 24.01509,-12.62174 8.58873,-4.09353 16.09345,-11.25723 26.68343,-14.32738 10.50662,-3.15543 24.18186,-2.30261 35.68911,-2.89959 11.50723,-0.51168 21.01321,-2.55846 30.26902,-3.92297 9.33921,-1.44979 18.51165,-2.30261 30.35241,-1.44979 11.75739,0.85282 26.26653,3.41127 38.0239,3.41127 11.84079,0 21.01321,-2.55845 32.10352,-2.55845 11.1737,0 24.18188,2.55845 35.77249,0 11.50723,-2.55846 21.51353,-10.23386 32.52045,-14.07154 10.92353,-3.83769 22.93108,-3.83769 30.51917,1.27924 7.6715,5.11691 11.0069,15.35075 18.345,18.33563 7.4212,2.98486 18.7615,-1.27923 26.183,-9.38103 7.3379,-8.1018 10.6734,-20.04127 18.1781,-27.11969 7.5046,-7.16369 19.1788,-9.381 30.4358,-10.66024 11.2571,-1.27923 22.0972,-1.62037 31.8533,-2.98488 9.6728,-1.44979 18.3449,-4.00825 28.3512,-8.27236 10.0063,-4.2641 21.3467,-10.23382 32.5204,-14.6685 11.0903,-4.34939 21.9304,-7.24898 32.1036,-8.35764 10.0896,-1.10867 19.5956,-0.59696 30.0188,-1.53508 10.4233,-1.02338 21.7637,-3.58184 31.6865,-5.11691 9.8396,-1.62037 18.1781,-2.13206 28.6013,-0.59699 10.4233,1.53509 22.9311,5.28749 34.4385,6.65202 11.5905,1.44979 22.0971,0.59696 34.3548,-0.51171 12.2578,-1.19395 26.0998,-2.55846 35.6057,2.98487 9.4227,5.54334 14.4259,17.99451 19.2621,26.26687 4.9199,8.27236 9.5895,12.19534 16.0101,15.35077 6.4208,3.15543 14.4258,5.37277 23.1812,7.0784 8.7556,1.70564 18.2614,2.89961 23.765,-1.79092 5.5868,-4.69052 7.2545,-15.26548 5.3368,-24.04953 -2.0014,-8.78405 -7.5048,-15.94773 -6.1707,-21.49108 1.4176,-5.54333 9.7562,-9.46628 19.3456,-12.19532 9.5894,-2.72903 20.4295,-4.09353 32.2702,-4.86107 11.7574,-0.68226 24.5988,-0.68226 35.856,-0.93812 11.257,-0.34112 20.9298,-0.85281 31.9366,1.27925 11.0069,2.13205 23.1814,6.90785 35.2722,9.03989 12.0909,2.13204 24.0985,1.62035 34.1882,0.17056 10.1729,-1.44979 18.5116,-3.66713 29.6019,-7.50482 11.1737,-3.83769 25.0157,-9.29574 36.6896,-11.51308 11.6742,-2.30261 21.1802,-1.44979 30.7694,-4.00825 9.5895,-2.55846 19.2622,-8.5282 29.602,-13.38928 10.2565,-4.77579 21.0965,-8.5282 33.0208,-11.3425 12.0076,-2.81431 25.0157,-4.86108 36.6063,-2.81431 11.5073,1.96149 21.5135,7.93124 30.8527,5.96974 9.2559,-2.04676 17.9279,-11.93947 27.3506,-19.35903 9.4225,-7.41953 19.7624,-12.19532 29.4353,-12.36589 9.7559,-0.17055 18.9285,4.43467 25.1824,7.1637 6.2539,2.8143 9.5893,3.92296 11.2571,4.43465 1.6677,0.5117 1.6677,0.5117 1.6677,0.5117 0,0 0,0 0,-8.61349 0,-8.61347 0,-25.92574 0,-34.53922 0,-8.61346 0,-8.61346 0,-8.61346 0,0 0,0 -4.5862,-0.17058 -4.5863,-0.17056 -13.7588,-0.42641 -25.1825,-1.79093 -11.3405,-1.44979 -25.0159,-4.00824 -36.106,-2.30261 -11.0905,1.70564 -19.7625,7.67538 -30.019,12.96288 -10.2564,5.2022 -22.264,9.80741 -33.521,11.59835 -11.2572,1.8762 -21.7637,1.02338 -30.4358,2.13205 -8.5888,1.19394 -15.2596,4.26411 -25.6828,6.14031 -10.4232,1.87619 -24.5988,2.38788 -36.0227,4.2641 -11.3405,1.87621 -20.0125,4.94635 -29.2684,9.38102 -9.3392,4.43467 -19.3455,10.06327 -28.9348,14.24209 -9.5894,4.09355 -18.7618,6.652 -28.1012,11.76893 -9.2556,5.11693 -18.7616,12.79229 -28.351,14.7538 -9.5894,2.04674 -19.2621,-1.70565 -28.8515,-5.62862 -9.5892,-4.00825 -19.0953,-8.27237 -27.8508,-13.38929 -8.7555,-5.11692 -16.7606,-11.08666 -25.2659,-10.4044 -8.5054,0.76753 -17.3443,8.10178 -27.3504,10.66025 -10.0064,2.55846 -21.18,0.34112 -31.6868,-0.42641 -10.5899,-0.68226 -20.5962,0.17056 -30.0187,3.75241 -9.5061,3.49656 -18.3449,9.80744 -27.9342,11.59835 -9.5895,1.8762 -19.9292,-0.68226 -30.7694,-2.38789 -10.8402,-1.70565 -22.1807,-2.55846 -33.1875,-4.51996 -11.0069,-2.04676 -21.5135,-5.11691 -22.264,-9.38101 -0.6671,-4.26411 8.5052,-9.72215 13.5084,-18.33565 5.0031,-8.69876 5.8371,-20.63824 12.5078,-26.77856 6.671,-6.05502 19.1789,-6.39614 30.6859,-4.6905 11.5908,1.70564 22.0974,5.45804 32.6874,3.15544 10.5898,-2.30261 21.0965,-10.48969 31.0195,-16.80056 9.8394,-6.22559 19.012,-10.4897 29.1849,-10.74554 10.0898,-0.34113 21.2634,3.41128 32.7705,2.55846 11.5074,-0.85281 23.515,-6.31088 33.3545,-4.43465 9.8394,1.87619 17.6776,10.91607 25.8495,18.9326 8.1718,7.93123 16.844,14.75378 25.8496,15.86245 9.0057,1.19397 18.5117,-3.41128 26.5167,-8.35763 8.0884,-4.94635 14.7593,-10.40441 22.6809,-13.38928 7.9217,-2.98488 17.0941,-3.49657 27.3506,-4.2641 10.3397,-0.68226 21.6801,-1.53507 31.1862,-7.24898 9.4226,-5.62862 16.9273,-16.20357 26.3499,-21.14994 9.506,-4.94635 20.8465,-4.43466 32.2703,-5.96974 11.424,-1.53507 22.7643,-5.28749 28.768,-11.51307 6.004,-6.2256 6.5043,-15.09491 12.091,-22.34389 5.5868,-7.24897 16.0934,-12.87759 21.0965,-22.68503 5.0032,-9.80744 4.503,-23.79368 3.5023,-36.24485 -1.0007,-12.53647 -2.3347,-23.62313 -7.2545,-35.73318 -4.8364,-12.02476 -13.175,-25.15819 -19.2621,-36.75655 -6.1706,-11.68363 -10.0063,-21.91748 -8.9223,-30.18983 1.084,-8.18708 7.2546,-14.49795 15.4264,-11.76892 8.1717,2.72902 18.5116,14.32738 28.3511,21.74692 9.8395,7.41952 19.3455,10.48968 29.3517,15.6066 10.0063,5.11692 20.5129,12.2806 29.602,18.76204 9.0057,6.56672 16.5104,12.53645 25.4327,15.00964 8.8389,2.3879 19.1787,1.36452 24.2653,0.76754 5.1699,-0.51168 5.1699,-0.51168 5.1699,-0.51168 0,0 0,0 0,-5.28749 0,-5.28749 0,-15.86247 0,-21.14995 0,-5.28749 0,-5.28749 0,-5.28749 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.04676 0,-1.96149 0,-6.05503 0,-8.10179 0,-1.96149 0,-1.96149 0,-1.96149 0,0 0,0 -3.9193,-0.85282 -3.8356,-0.85282 -11.674,-2.47318 -20.4294,-5.79918 -8.7554,-3.41128 -18.4282,-8.5282 -26.2666,-15.60661 -7.7548,-7.16369 -13.5919,-16.20359 -21.3467,-21.66163 -7.8382,-5.37278 -17.5109,-7.07842 -27.8509,-9.38104 -10.2563,-2.21732 -21.0965,-5.11691 -31.353,-10.66024 -10.3399,-5.54333 -20.0125,-13.73041 -25.7661,-23.11144 -5.6703,-9.38102 -7.338,-19.95598 -14.4259,-24.90235 -7.0877,-4.94635 -19.5954,-4.43466 -30.6024,-8.9546 -10.9236,-4.51995 -20.4296,-14.24211 -21.7637,-24.30539 -1.4177,-10.06327 5.2532,-20.63825 3.5855,-27.9725 -1.6676,-7.41954 -11.6738,-11.68364 -21.2633,-10.40441 -9.5894,1.27923 -18.7618,8.10181 -25.4327,15.35075 -6.6707,7.24898 -10.84,14.92437 -18.9284,20.63826 -8.0052,5.62862 -20.0126,9.38102 -30.2691,6.90785 -10.2565,-2.3879 -18.9286,-10.91611 -29.1851,-13.04816 -10.2564,-2.13205 -22.2639,2.13205 -32.2703,8.95464 -10.0063,6.82255 -18.0113,16.20357 -22.7642,14.49793 -4.753,-1.70564 -6.0872,-14.49793 -11.4239,-22.17333 -5.2533,-7.67538 -14.4258,-10.23383 -24.8491,-8.27236 -10.4231,2.04677 -22.097,8.52821 -33.104,13.98626 -10.9236,5.37277 -21.2633,9.63686 -31.6866,14.32738 -10.4232,4.69051 -20.9298,9.80743 -30.5192,16.45942 -9.5894,6.73729 -18.2614,14.92436 -26.6834,20.38241 -8.5053,5.37278 -16.8439,7.93123 -28.3512,10.74553 -11.5906,2.8996 -26.2664,5.96975 -39.1912,7.67539 -12.9248,1.70565 -24.0985,2.04678 -35.4391,2.04678 -11.4238,0 -23.0978,-0.34113 -35.3555,2.98485 -12.1742,3.24073 -25.0157,10.06329 -37.3567,14.07154 -12.3411,3.92297 -24.3488,5.11692 -30.8528,-0.34112 -6.5042,-5.37278 -7.6716,-17.31226 -4.0025,-27.80194 3.5855,-10.57498 11.9242,-19.61487 19.2622,-27.46081 7.4212,-7.84595 13.7586,-14.32738 20.8463,-22.34389 7.0878,-7.93123 14.9261,-17.31226 21.6803,-21.74693 6.8377,-4.34938 12.6747,-3.83768 21.4301,-7.50482 8.7555,-3.66712 20.4296,-11.68363 32.9376,-17.22696 12.5076,-5.54334 25.8495,-8.61348 39.608,-10.9161 13.7588,-2.30262 27.9343,-3.66712 38.3576,-5.28749 10.4231,-1.53508 17.0939,-3.24071 24.432,-3.83769 7.4213,-0.51169 15.4263,0 23.6814,2.55846 8.1718,2.55847 16.5104,7.16368 25.2659,5.45805 8.7555,-1.70563 17.928,-9.72214 27.1005,-17.22696 9.1723,-7.50483 18.3449,-14.66852 28.3512,-19.78543 10.0061,-5.11693 20.8463,-8.18709 31.0194,-11.93949 10.0897,-3.66714 19.5956,-7.93123 28.6013,-12.87758 9.0056,-5.03165 17.6779,-10.66027 17.9279,-18.33565 0.2503,-7.67537 -7.7548,-17.39752 -10.4232,-28.99588 -2.6684,-11.68365 0.1669,-25.32876 -2.7516,-32.83359 -2.9186,-7.5901 -11.5909,-8.9546 -21.5971,-14.49793 -10.0061,-5.54334 -21.3467,-15.2655 -24.5986,-23.87898 -3.1688,-8.69876 1.8343,-16.37414 9.5059,-18.67677 7.588,-2.21732 17.928,0.85283 26.9335,4.00826 9.0057,3.15542 16.8441,6.22559 28.1845,9.38102 11.4238,3.15544 26.4333,6.22558 37.9404,2.72904 11.5907,-3.58186 19.5958,-13.81569 29.1017,-21.66164 9.4226,-7.76067 20.2628,-13.21871 31.9367,-15.77718 11.6741,-2.558459 24.1819,-2.21733 36.2727,0.42641 12.0911,2.72903 23.7651,7.84594 33.6046,11.25723 9.9229,3.41128 17.9279,5.11692 26.6,9.38101 8.5888,4.26411 17.7613,11.08667 27.5173,16.03304 9.6727,5.03163 20.0126,8.10179 29.602,9.12517 9.5893,1.02338 18.4281,-0.17057 27.7674,-1.70563 9.3392,-1.53509 19.0119,-3.58187 29.0182,-6.56672 10.0064,-2.98488 20.3462,-6.90785 26.4334,-12.02477 6.087,-5.11692 8.0883,-11.42779 11.924,-14.49795 3.9193,-3.15544 9.7563,-3.15544 12.6747,-3.15544 2.9186,0 2.9186,0 2.9186,0 0,0 0,0 0,-9.97799 0,-9.977996 0,-29.93399 0,-39.911988 0,-9.892715 0,-9.892715 0,-9.892715 0,0 0,0 -5.2533,-0.42641 -5.3368,-0.42641 -15.8434,-1.193948 -22.0973,1.620358 -6.2539,2.899589 -8.255,9.381024 -14.7593,10.830818 -6.504,1.449795 -17.6778,-2.302614 -25.2658,-1.108666 -7.6715,1.108666 -11.8407,7.078409 -17.2609,14.497945 -5.4201,7.334256 -12.0909,16.203585 -19.0119,16.203585 -7.0044,0 -14.1756,-8.869329 -21.18,-16.118304 -6.921,-7.248972 -13.5919,-12.877585 -23.348,-12.19533 -9.6728,0.682258 -22.5141,7.845947 -33.7714,7.845947 -11.2569,0 -20.9297,-7.163689 -31.9365,-13.645124 -11.0071,-6.566716 -23.1812,-12.536459 -33.9382,-12.792304 -10.6733,-0.341129 -19.8457,5.11692 -29.435,10.319125 -9.5894,5.287486 -19.5957,10.404407 -28.9348,16.544714 -9.2559,6.055024 -17.928,13.218713 -26.9336,15.60661 -9.0059,2.387898 -18.5118,0.170564 -29.0183,-2.984871 -10.5901,-3.155435 -22.2641,-7.078408 -33.9381,-9.381022 -11.6739,-2.302616 -23.348,-2.814307 -32.1035,0.852819 -8.7556,3.667127 -14.5924,11.683638 -19.7624,12.110048 -5.0866,0.426412 -9.5894,-6.73728 -12.1744,-16.629995 -2.6683,-9.977997 -3.5021,-22.770301 -7.8382,-32.748299 -4.2528,-9.892715 -12.091,-17.056405 -21.2633,-21.576353 -9.1724,-4.519947 -19.679,-6.566715 -30.8528,-6.396152 -11.0902,0.170565 -22.7643,2.387897 -34.4383,6.396152 -11.6739,4.008255 -23.3479,9.63687 -34.0214,14.668508 -10.7567,4.94636 -20.4294,9.21046 -31.6866,9.466307 -11.257,0.341128 -24.0985,-3.411283 -35.0219,-4.946358 -11.007,-1.535077 -20.1795,-1.023385 -29.9355,0 -9.6728,1.023384 -20.0127,2.387896 -31.2697,2.814307 -11.2572,0.42641 -23.4315,-0.08529 -34.6051,-0.852821 -11.0903,-0.682254 -21.0966,-1.535075 -33.3543,-4.775793 -12.1744,-3.325999 -26.6834,-8.954614 -40.4422,-11.939483 -13.7585,-2.984873 -26.7667,-3.326 -38.8576,-3.411283 -12.091,-0.170562 -23.2647,-0.170562 -34.6051,1.279232 -11.4239,1.364512 -23.0979,4.264101 -32.6872,10.233842 -9.5894,5.969743 -17.0941,15.009637 -26.0998,24.134814 -9.089,9.125178 -19.5956,18.165073 -27.9341,18.591483 -8.3387,0.426409 -14.5091,-7.760664 -21.18008,-15.009638 -6.67086,-7.248973 -13.84205,-13.559843 -22.34739,-15.691892 -8.50533,-2.132051 -18.17808,-0.08528 -28.18437,-2.558461 -10.0063,-2.387896 -20.34613,-9.210459 -31.26965,-9.039894 -11.00693,0.08529 -22.68094,7.248971 -33.52108,13.218712 -10.84015,5.969743 -20.84644,10.745537 -32.68722,12.451177 C 834.62642,57.843286 820.95117,56.478774 812.11228,51.6177 803.19,46.756625 799.0207,38.569549 791.51599,33.708472 c -7.50472,-4.861074 -18.34487,-6.225585 -30.01887,-9.636867 -11.67399,-3.411281 -24.18185,-8.869331 -37.27343,-9.125178 -13.00818,-0.255845 -26.68344,4.519948 -37.94052,8.357639 -11.25707,3.837692 -20.09595,6.73728 -27.5173,11.939484 -7.33795,5.287486 -13.17494,12.962868 -20.26274,15.094918 -7.08781,2.132051 -15.42637,-1.279229 -26.51668,-6.651998 -11.1737,-5.45805 -25.01573,-12.792304 -34.60509,-20.467686 -9.50598,-7.675383 -14.67588,-15.6918927 -17.34424,-19.6148659 -2.58495,-4.00825532 -2.58495,-4.00825532 -2.58495,-4.00825532 0,0 0,0 -2.66835,0 -2.66834,0 -8.08841,0 -10.75675,0 -2.75174,0 -2.75174,0 -2.75174,0 0,0 0,0 -4.25266,2.13205072 -4.33607,2.1320507 -12.9248,6.3961519 -22.18062,8.6987665 -9.3392,2.217333 -19.34549,2.558461 -30.85273,3.411282 -11.5906,0.85282 -24.59879,2.217332 -36.27279,2.13205 -11.67402,-0.170564 -22.01385,-1.876205 -30.68596,-4.861076 -8.58872,-2.9848706 -15.67653,-7.2489718 -19.17874,-9.3810225 -3.50219,-2.13205072 -3.50219,-2.13205072 -3.50219,-2.13205072 0,0 0,0 -0.83386,0 -0.75047,0 -2.3348,0 -3.16865,0 -0.75048,0 -0.75048,0 -0.75048,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -7.17116,0 -7.25457,0 -21.68031,0 -28.85147,0 -7.25458,0 -7.25458,0 -7.25458,0 M 1541.1538,180.99053 c 9.4226,7.07842 18.9287,13.90097 24.3487,20.97939 5.42,7.16368 6.7543,14.49794 4.1694,20.63825 -2.6685,6.14031 -9.3392,10.9161 -17.8446,15.18019 -8.4221,4.2641 -18.7619,8.01652 -27.1838,11.08666 -8.5053,3.15545 -15.1763,5.71392 -24.5155,9.72218 -9.2557,3.92296 -21.2633,9.38101 -28.4345,7.33423 -7.2545,-1.96149 -9.7561,-11.34249 -9.7561,-20.89408 0,-9.46632 2.5016,-19.18846 -0.5837,-29.42232 -3.0019,-10.23384 -11.6739,-20.97937 -15.4264,-28.3989 -3.7523,-7.41954 -2.585,-11.34252 4.9198,-12.53647 7.5047,-1.10866 21.3467,0.59699 32.7706,-1.53507 11.4238,-2.13205 20.2628,-8.1018 24.7656,-11.08666 4.4194,-2.98488 4.4194,-2.98488 9.1725,0.68225 4.6695,3.75242 14.1754,11.08666 23.598,18.25035 m -525.9972,63.10871 c -7.4214,10.23383 -13.7587,21.83219 -18.26153,33.34526 -4.41944,11.51309 -6.92102,22.94087 -11.92416,31.04267 -5.00315,8.10179 -12.50786,12.87758 -22.68091,15.43605 -10.08969,2.55845 -22.93109,2.89959 -34.85526,1.70564 -11.92416,-1.10868 -23.09784,-3.66713 -35.60571,-4.94636 -12.50786,-1.27924 -26.34991,-1.27924 -37.60697,-1.10866 -11.25708,0.0853 -19.9292,0.42641 -29.10163,1.36451 -9.17243,1.02338 -18.84519,2.72902 -29.43517,4.26409 -10.58999,1.62037 -21.93046,2.98488 -33.52108,6.39616 -11.50723,3.41128 -23.18124,8.86933 -28.6013,17.48282 -5.42008,8.69876 -4.58622,20.63824 0.83385,29.84871 5.42007,9.29573 15.42638,15.77717 24.18188,22.08804 8.75548,6.22558 16.26021,12.19533 24.01509,17.14168 7.83826,5.03165 15.84328,8.95462 24.59879,12.53646 8.75551,3.58185 18.26147,6.652 24.09848,14.24209 5.83701,7.50482 8.00502,19.44432 8.8389,31.12794 0.83386,11.59837 0.33354,23.02616 3.33542,33.51585 3.08527,10.4897 9.75615,20.21184 12.00755,31.12795 2.16803,10.91608 0,23.19669 -5.58685,32.57773 -5.58684,9.38102 -14.42573,15.86246 -20.01259,25.15818 -5.58682,9.21047 -7.75486,21.14994 -12.25769,29.50759 -4.41945,8.44292 -11.09031,13.21872 -17.5944,19.10317 -6.58747,5.79918 -12.92478,12.62175 -20.34612,19.87071 -7.33794,7.24899 -15.67652,14.92436 -24.18187,22.42918 -8.42196,7.5901 -17.09407,14.92436 -26.68344,23.45257 -9.58935,8.52819 -20.09597,18.25034 -21.51352,26.01101 -1.41755,7.84594 6.42071,13.81569 14.0088,19.10318 7.6715,5.2022 15.17621,9.80742 21.26337,6.39615 6.17055,-3.41129 10.84016,-14.83907 17.26085,-23.87898 6.42071,-9.12517 14.42574,-15.94774 22.76432,-24.30538 8.33857,-8.4429 17.01069,-18.33562 26.60004,-25.92573 9.58937,-7.50482 20.09598,-12.62174 30.51919,-18.16507 10.42322,-5.54333 20.76306,-11.51307 30.43579,-18.76205 9.75615,-7.24897 18.92858,-15.77717 25.7662,-21.57635 6.75425,-5.88445 11.25709,-8.9546 19.42889,-12.79231 8.1718,-3.83768 20.17935,-8.44291 31.85335,-11.93948 11.674,-3.58185 23.01448,-6.1403 34.43832,-6.82256 11.42384,-0.76755 22.76432,0.42642 34.35502,0.5117 11.5071,0.17056 23.1812,-0.68226 33.7712,3.75241 10.5066,4.34938 20.0125,14.07152 27.3505,24.39064 7.3379,10.40442 12.6745,21.49107 14.3423,30.87211 1.6677,9.38102 -0.3335,17.0564 -1.2508,26.60798 -1.0006,9.46631 -1.0006,20.89411 -3.5022,33.51585 -2.5015,12.62173 -7.5047,26.60798 -12.0909,38.20635 -4.5862,11.68363 -8.7556,21.06466 -14.8426,28.91061 -6.1706,7.76065 -14.1756,14.07153 -23.0979,22.00277 -8.9224,7.93122 -18.595,17.65336 -26.0164,17.73864 -7.3379,0.17058 -12.34107,-9.21045 -21.26335,-11.76892 -8.8389,-2.55845 -21.6803,1.70564 -31.35303,8.1018 -9.75614,6.39615 -16.427,14.92435 -23.93173,20.63826 -7.50471,5.62862 -15.84328,8.52819 -25.01571,12.19532 -9.17243,3.66713 -19.17873,8.27236 -30.43579,11.51307 -11.25709,3.24072 -23.76495,5.28749 -33.18754,4.86108 -9.50598,-0.42641 -15.84331,-3.326 -25.01573,-5.7139 -9.17242,-2.38789 -21.17998,-4.43466 -30.01886,-8.69877 -8.92228,-4.2641 -14.75928,-10.74553 -21.01321,-8.78404 -6.25394,1.96149 -12.92479,12.53646 -14.17558,20.29712 -1.25078,7.84595 2.9185,12.96288 8.50534,16.11831 5.50347,3.07014 12.50787,4.2641 22.59754,4.2641 10.17307,0 23.51478,-1.19396 35.1888,-0.85282 11.674,0.25585 21.68028,1.96148 33.35429,2.38789 11.67401,0.42641 25.01573,-0.42641 37.27344,-2.72903 12.17432,-2.21732 23.348,-5.96972 34.85522,-8.78405 11.50724,-2.81429 23.5148,-4.86108 34.77188,-5.71388 11.25706,-0.85282 21.76368,-0.5117 32.60382,-0.85282 10.8401,-0.25585 22.0139,-1.10867 32.9374,-3.8377 11.0069,-2.64375 21.8471,-7.24897 32.5205,-11.59836 10.7567,-4.43466 21.2633,-8.69876 32.1034,-13.98625 10.8401,-5.20221 22.0139,-11.51307 32.5205,-16.20359 10.5899,-4.69049 20.5963,-7.76065 31.2695,-10.48969 10.757,-2.72902 22.0974,-4.94635 34.5219,-5.28748 12.3409,-0.25584 25.6828,1.4498 33.8546,0.17056 8.2551,-1.27923 11.2569,-5.54333 11.6739,-12.36589 0.4169,-6.82256 -1.751,-16.20358 -8.3387,-24.98764 -6.5039,-8.86933 -17.3439,-17.05639 -27.7673,-24.47594 -10.4233,-7.41953 -20.4295,-13.90097 -28.1843,-19.87071 -7.8384,-5.96974 -13.3419,-11.42779 -18.6786,-18.67676 -5.2532,-7.24897 -10.2562,-16.28886 -14.8426,-25.41405 -4.5861,-9.12517 -8.7554,-18.16506 -13.7586,-27.46082 -5.0031,-9.21045 -10.8401,-18.59148 -11.4239,-28.3989 -0.5002,-9.80743 4.1694,-20.04128 9.5061,-29.8487 5.2532,-9.80745 11.0903,-19.18846 17.7612,-29.16646 6.6708,-9.8927 14.1755,-20.46769 20.1792,-30.78681 5.9204,-10.40442 10.4233,-20.63825 12.3412,-32.3219 1.9178,-11.59835 1.4175,-24.73178 -2.9185,-32.91886 -4.3362,-8.27236 -12.3412,-11.68363 -21.5137,-14.66851 -9.1723,-2.98487 -19.512,-5.54333 -25.1825,-13.47456 -5.6701,-8.01652 -6.8375,-21.3205 -9.8394,-32.57773 -3.0854,-11.25724 -8.0885,-20.29712 -7.6715,-30.27512 0.417,-9.97799 6.2539,-20.72353 10.8402,-30.10456 4.5862,-9.38102 7.9216,-17.39753 14.8427,-23.87897 7.0044,-6.56671 17.511,-11.68363 21.0132,-17.22696 3.5021,-5.54334 -0.1668,-11.51309 -7.6716,-11.25724 -7.5047,0.34114 -18.8451,6.82257 -26.5166,7.24898 -7.6716,0.4264 -11.5072,-5.2022 -18.7618,-10.48968 -7.2546,-5.28749 -17.7612,-10.06329 -27.1004,-14.66853 -9.3392,-4.51993 -17.3441,-8.78404 -20.5963,-17.90922 -3.1686,-9.03989 -1.5009,-23.02615 -2.7517,-32.06604 -1.2508,-9.12516 -5.4201,-13.38927 -11.674,-11.08666 -6.2539,2.21734 -14.5925,11.08666 -21.9304,21.32051 M -0.64865472,232.92729 c 0,0 0,0 4.16928742,2.13205 4.1692876,2.21733 12.5078633,6.652 12.5078633,10.06328 0,3.41128 -8.3385757,5.96975 -12.5078633,7.24897 -4.16928742,1.19394 -4.16928742,1.19394 -4.16928742,1.19394 0,0 0,0 0,6.73729 0,6.652 0,20.04127 0,26.69326 0,6.7373 0,6.7373 0,6.7373 0,0 0,0 4.75298772,-0.17057 4.6696021,-0.0853 14.175578,-0.34112 23.34801,-0.0853 9.172433,0.34113 18.011322,1.19395 30.269028,1.8762 12.257705,0.76754 27.767455,1.27922 40.859017,-0.4264 13.091562,-1.70564 23.598172,-5.62861 32.270292,-9.89272 8.58872,-4.2641 15.25958,-8.86933 19.42887,-17.90923 4.16928,-9.12518 5.837,-22.77031 5.16992,-34.88034 -0.75048,-12.02477 -3.75236,-22.59976 -11.25707,-28.14309 -7.50473,-5.54331 -19.51227,-6.05499 -31.85335,-5.96973 -12.341105,0.17057 -25.18251,1.02339 -36.106044,0.85282 -11.006918,-0.0853 -20.17935,-1.27923 -30.602569,-3.92297 -10.423219,-2.72902 -22.097223,-6.99312 -30.01887,-8.52821 -7.9216467,-1.53506 -12.0909343,-0.25583 -14.175578,0.34113 -2.08464372,0.59698 -2.08464372,0.59698 -2.08464372,0.59698 0,0 0,0 0,7.5901 0,7.50482 0,22.68502 0,30.27513 0,7.59009 0,7.59009 0,7.59009 M 1997.8576,239.15287 c 2.7518,2.64375 2.7518,2.64375 2.7518,2.64375 0,0 0,0 0,8.01651 0,8.01651 0,24.04953 0,32.06605 0,8.0165 0,8.0165 0,8.0165 0,0 0,0 -2.6684,-1.62036 -2.5849,-1.62035 -7.9217,-4.86108 -14.8426,-7.93123 -6.9211,-2.98487 -15.5931,-5.88445 -22.264,-2.55846 -6.6709,3.24073 -11.3405,12.62175 -14.5926,21.14996 -3.1687,8.52819 -4.8364,16.20358 -7.5881,25.15818 -2.8351,8.95462 -6.6708,19.18846 -12.8414,21.9175 -6.0871,2.64373 -14.4257,-2.13206 -21.2633,-9.80744 -6.7544,-7.67539 -12.0909,-18.25036 -18.7618,-26.77857 -6.6709,-8.52818 -14.6759,-15.00963 -23.3481,-19.61486 -8.5887,-4.51994 -17.7612,-7.07841 -26.0997,-9.80743 -8.3385,-2.64375 -15.8433,-5.54333 -25.1826,-6.82256 -9.2557,-1.27923 -20.4294,-0.9381 -30.6859,-5.62862 -10.2565,-4.69051 -19.7623,-14.41266 -21.8469,-24.90235 -2.0847,-10.48969 3.252,-21.91748 7.6714,-32.57774 4.4193,-10.66024 8.0884,-20.55296 14.5924,-24.98763 6.5042,-4.43466 16.0102,-3.24072 25.5994,-3.15543 9.5895,0.17056 19.2622,-0.68225 28.6014,-2.55846 9.3392,-1.79093 18.1781,-4.69052 25.0157,-5.37276 6.8376,-0.68227 11.5073,0.68224 19.4289,0.17055 7.9217,-0.59697 19.0954,-3.15543 28.2677,-2.55845 9.1726,0.5117 16.3437,4.26409 25.8496,7.07841 9.4226,2.8143 21.0967,4.86107 32.6039,4.94635 11.5906,0.0853 22.931,-1.70564 28.6846,-2.55846 5.6704,-0.85283 5.6704,-0.85283 5.6704,-0.85283 0,0 0,0 0,3.58184 0,3.58186 0,10.74555 0,14.32739 0,3.58184 0,3.58184 0,3.58184 0,0 0,0 0,0 0,0 0,0 0,0.42641 0,0.42642 0,1.27924 0,1.70565 0,0.42641 0,0.42641 0,0.42641 0,0 0,0 0,0 0,0 0,0 0,3.15544 0,3.07014 0,9.38101 0,12.45117 0,3.15543 0,3.15543 0,3.15543 0,0 0,0 -2.5016,0 -2.5016,0 -7.5047,0 -10.2564,0.42642 -2.8353,0.42641 -3.3356,1.27924 -0.834,4.43466 2.5016,3.07015 8.005,8.52819 10.8402,11.25722 M 282.02903,535.84906 c 2.25142,9.55157 8.58874,16.37414 10.67338,26.01102 2.08464,9.72214 -0.0834,22.17332 -7.08778,31.72491 -6.92103,9.55158 -18.59503,16.03302 -25.43266,26.011 -6.75424,9.97801 -8.75551,23.28201 -4.58621,28.31365 4.16928,4.94635 14.50912,1.53507 25.43264,-0.59697 11.00693,-2.13206 22.68093,-2.98488 34.52171,-2.81431 11.75739,0.0853 23.76494,1.27922 34.18816,3.24073 10.42322,1.96147 19.2621,4.86107 23.84832,0.25583 4.58622,-4.51994 4.91977,-16.45943 2.91851,-28.56948 -1.91788,-12.02476 -6.08716,-24.30537 -8.42197,-34.53923 -2.41819,-10.23383 -2.9185,-18.42092 -3.66898,-28.14306 -0.66707,-9.63687 -1.50094,-20.72353 -1.91786,-29.67815 -0.41694,-8.95461 -0.41694,-15.77716 -6.00377,-19.01789 -5.50346,-3.32599 -16.67715,-2.98487 -26.93361,-3.7524 -10.25644,-0.68227 -19.76243,-2.3879 -27.26714,-2.98487 -7.50472,-0.51169 -13.00818,0 -16.76052,6.39614 -3.75237,6.39616 -5.75363,18.67676 -3.50222,28.14308 m 1374.03037,0.17056 c 2.0847,4.86108 -5.0866,13.04815 -13.7585,14.92435 -8.5888,1.8762 -18.5952,-2.72902 -20.6798,-7.50482 -2.0847,-4.86106 3.7524,-9.97799 12.3412,-11.8542 8.672,-1.79092 20.0125,-0.42641 22.0971,4.43467 M 479.90342,898.89464 c 9.17243,6.14032 22.8477,10.91612 28.76808,6.39616 6.00379,-4.51996 4.33606,-18.50621 -1.91787,-25.58462 -6.25393,-7.0784 -17.09408,-7.41953 -25.43265,-6.5667 -8.33857,0.85282 -14.17558,2.89959 -14.75927,7.59009 -0.50031,4.69052 4.16928,12.02476 13.34171,18.16507", attribute "style" "display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision", attribute "id" "path205", attribute "fill" "#ecf2f9"]) []], Svg.node "g" ([attribute "id" "lakes", attribute "style" "display:inline;shape-rendering:geometricPrecision", attribute "transform" "matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)"]) [ Svg.node "path" ([attribute "d" "m 916.8,227.7 c -1.5,1 -4.1,2.6 -6,3.5 -1.8,0.8 -2.8,0.8 -4,0 -1.1,-0.9 -2.5,-2.5 -2.3,-4.7 0.2,-2.2 1.8,-4.8 4.3,-5.7 2.5,-0.8 5.9,0.2 7.7,1.4 1.8,1.1 2.2,2.5 2.2,3.3 0,0.8 -0.4,1.2 -1.9,2.2", attribute "id" "lake_7", attribute "data-f" "7", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1311,270.2 c -0.3,2.8 -1.7,4.8 -2.7,5.8 -1,1 -1.6,1 -3.3,0 -1.7,-1 -4.3,-3 -5,-5.8 -0.7,-2.9 0.7,-6.5 1.7,-8.5 1,-2 1.6,-2.4 3,-2.4 1.3,0 3.3,0.4 4.6,2.4 1.4,2 2,5.6 1.7,8.5", attribute "id" "lake_10", attribute "data-f" "10", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 332.2,391.5 c 2.1,0.2 4.5,0.8 6.3,2.5 1.8,1.7 3.2,4.3 3.2,7.2 0,2.8 -1.4,5.8 -2,8 -0.7,2.1 -0.7,3.5 -0.2,4.5 0.5,1 1.5,1.6 4,2.3 2.5,0.7 6.5,1.3 8.8,1.8 2.4,0.5 3,0.9 4.4,1 1.3,0.2 3.3,0.2 4.6,0 1.4,-0.1 2,-0.5 3.9,-0.6 1.8,-0.2 4.8,-0.2 6.6,-0.4 1.9,-0.1 2.5,-0.5 4.4,-0.6 1.8,-0.2 4.8,-0.2 6.8,-0.4 2,-0.1 3,-0.5 4.5,-0.5 1.5,0 3.5,0.4 4.9,0.5 1.4,0 2.3,-0.1 3.1,-0.3 0.8,-0.2 1.7,-0.3 3.6,-1.6 1.9,-1.2 4.9,-3.6 6.3,-5.2 1.4,-1.7 1.3,-2.7 1.1,-3.7 -0.2,-1 -0.3,-2 -0.6,-3.8 -0.2,-1.9 -0.6,-4.5 0.2,-6.1 0.7,-1.6 2.6,-2.1 4.4,-2.6 1.8,-0.5 3.7,-1 4.9,-0.6 1.3,0.4 1.9,1.8 2.9,2.8 1,1 2.4,1.6 3.9,1.8 1.5,0.2 3.1,-0.2 5,0.4 1.8,0.6 3.8,2.1 5.8,3.6 2,1.5 4,3 4.5,5.1 0.5,2.1 -0.5,4.7 -0.8,6.6 -0.4,1.8 0,2.8 -0.4,4.6 -0.3,1.9 -1.3,4.5 -1.8,6.2 -0.5,1.7 -0.5,2.3 -0.7,3.7 -0.1,1.3 -0.5,3.3 -1.1,5 -0.7,1.6 -1.7,3 -2.4,3.8 -0.6,0.8 -1,1.2 -1.6,1.8 -0.7,0.7 -1.7,1.7 -3.5,2.5 -1.9,0.9 -4.5,1.5 -6.4,3 -1.8,1.5 -2.8,3.9 -2.6,5.9 0.1,2 1.5,3.6 1.3,5.6 -0.2,2 -1.8,4.4 -3.8,5.2 -2,0.8 -4.4,0.2 -6.2,-1.5 -1.8,-1.7 -3.2,-4.3 -5.2,-5.8 -2,-1.5 -4.6,-1.9 -6.8,-1 -2.2,0.8 -3.8,2.8 -4.7,5 -0.8,2.1 -0.8,4.5 -1.5,6.6 -0.6,2.2 -2,4.2 -3.3,5.4 -1.3,1.1 -2.7,1.5 -4.8,3 -2.2,1.5 -5.2,4.1 -6.9,6 -1.6,1.8 -2,2.8 -4.3,4.1 -2.3,1.4 -6.7,3 -9.2,3.9 -2.5,0.8 -3.1,0.8 -5,1.1 -1.8,0.4 -4.8,1 -7,1.4 -2.1,0.3 -3.5,0.3 -5.1,0.6 -1.7,0.4 -3.7,1 -5.9,1.2 -2.1,0.2 -4.5,-0.2 -6.5,0.2 -2,0.3 -3.6,1.3 -6,1.6 -2.3,0.4 -5.3,0 -7.1,-1.5 -1.9,-1.5 -2.5,-4.1 -2.4,-6.5 0.2,-2.3 1.2,-4.3 1.3,-6.2 0.1,-1.9 -0.8,-3.8 -1.6,-5.6 -0.8,-1.8 -1.7,-3.7 -2.2,-4.6 -0.6,-0.9 -1,-0.9 -2.8,-0.1 -1.8,0.9 -5.2,2.5 -7,3.5 -1.8,1 -2.2,1.4 -3.5,1.9 -1.3,0.5 -3.7,1.1 -5.8,2.6 -2.2,1.5 -4.2,3.9 -5.5,5 -1.4,1.2 -2,1.2 -3,1.9 -1,0.6 -2.4,2 -4.9,2.1 -2.5,0.2 -6.1,-0.8 -8.1,-1.6 -2,-0.9 -2.4,-1.5 -2.7,-2.4 -0.3,-0.8 -0.7,-1.8 -1.7,-3 -1,-1.1 -2.6,-2.5 -3.5,-3.8 -0.8,-1.3 -0.8,-2.7 -1.5,-3.8 -0.6,-1.2 -2,-2.2 -4.3,-2.5 -2.3,-0.4 -5.7,0 -7.5,0.3 -1.8,0.3 -2.2,0.7 -3.3,0.8 -1.2,0.2 -3.2,0.2 -4.9,0.5 -1.6,0.4 -3,1 -4.6,0.9 -1.7,-0.2 -3.7,-1.2 -5.7,-1.4 -2,-0.1 -4,0.5 -6.3,0 -2.4,-0.5 -5,-2.1 -5.9,-4 -0.8,-1.8 0.2,-3.8 0.2,-6 0,-2.1 -1,-4.5 -1.2,-6.3 -0.1,-1.8 0.5,-3.2 0.2,-4.8 -0.3,-1.7 -1.7,-3.7 -1.7,-5.7 0,-2 1.4,-4 3,-4.8 1.7,-0.9 3.7,-0.5 5.7,-1.2 2,-0.7 4,-2.3 5.7,-2.8 1.6,-0.5 3,0.1 5,0 2,-0.2 4.6,-1.2 6.5,-2.4 1.8,-1.1 2.8,-2.5 4.1,-3.3 1.4,-0.8 3,-1.2 4.7,-2.2 1.7,-1 3.3,-2.6 4.3,-3.8 1,-1.2 1.4,-1.8 3,-3.8 1.7,-2 4.7,-5.4 6.2,-7.7 1.5,-2.3 1.5,-3.7 1.7,-4.8 0.1,-1.2 0.5,-2.2 1.8,-3.4 1.3,-1.1 3.7,-2.5 6,-3 2.3,-0.5 4.7,-0.1 6.5,0.5 1.8,0.7 3.2,1.7 4.8,2.2 1.7,0.5 3.7,0.5 5.5,1 1.9,0.5 3.5,1.5 5,1.8 1.5,0.4 2.9,0 4.7,-1.3 1.8,-1.3 4.2,-3.7 5.3,-5.3 1.2,-1.7 1.2,-2.7 2.1,-3.8 0.9,-1.1 2.8,-2.2 4.6,-3.4 1.8,-1.2 3.7,-2.3 5.6,-2.1 1.9,0.3 3.9,1.9 5.9,2.6 2,0.7 4,0.3 6.2,0.5", attribute "id" "lake_16", attribute "data-f" "16", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 2273.5,455 c 0.5,0.3 1,0.7 1.8,2.7 0.7,2 1.7,5.6 1.2,8.5 -0.5,2.8 -2.5,4.8 -4.7,5.8 -2.1,1 -4.5,1 -6,-1.3 -1.5,-2.4 -2.1,-7 -1,-10.2 1.2,-3.2 4.2,-4.8 6,-5.5 1.7,-0.7 2.2,-0.3 2.7,0", attribute "id" "lake_18", attribute "data-f" "18", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 823.5,524.8 c -0.2,2.5 -1.8,4.9 -4,5.7 -2.2,0.8 -4.8,0.2 -6.3,-0.7 -1.5,-0.8 -1.9,-1.8 -0.9,-3.8 1,-2 3.4,-5 4.9,-6.7 1.5,-1.6 2.1,-2 2.6,-2.1 0.5,-0.2 0.9,-0.2 1.7,1.1 0.8,1.4 2.2,4 2,6.5", attribute "id" "lake_22", attribute "data-f" "22", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 651.8,555.5 c -2.1,0.8 -4.5,-0.8 -5.8,-3 -1.3,-2.2 -1.7,-4.8 -0.8,-6.8 0.8,-2 2.8,-3.4 4.3,-3.9 1.5,-0.5 2.5,-0.1 3.8,1 1.4,1.2 3,3.2 2.9,5.9 -0.2,2.6 -2.2,6 -4.4,6.8", attribute "id" "lake_24", attribute "data-f" "24", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1950,586.8 c 3,0.5 5,1.9 6.9,2.5 1.9,0.7 3.8,0.7 5.6,0.7 1.8,0 3.7,0 5.3,0.5 1.5,0.5 2.9,1.5 4.9,1.7 2,0.1 4.6,-0.5 6.6,-1.2 2,-0.7 3.4,-1.3 5,-1.3 1.7,0 3.7,0.6 5.2,0.8 1.5,0.2 2.5,-0.2 4.7,-0.3 2.1,-0.2 5.5,-0.2 8.3,0.8 2.8,1 5.2,3 6.8,4.2 1.7,1.1 2.7,1.5 4.2,2.1 1.5,0.7 3.5,1.7 5.3,2 1.9,0.2 3.5,-0.3 5.2,-0.8 1.7,-0.5 3.3,-1 5.2,-3.1 1.8,-2.1 3.8,-5.7 6.3,-6.6 2.5,-0.8 5.5,1.2 7.2,3 1.6,1.9 2,3.5 2.3,5.2 0.3,1.7 0.7,3.3 1,5 0.3,1.7 0.7,3.3 0.9,4.8 0.3,1.4 0.4,2.5 0.6,3.7 0.2,1.2 0.3,2.3 1.8,3.6 1.4,1.2 4,2.6 5.7,4.1 1.7,1.5 2.3,3.1 3.3,4.3 1,1.2 2.4,1.8 4,3.3 1.7,1.5 3.7,3.9 5.2,5 1.5,1.2 2.5,1.2 4.3,2.2 1.9,1 4.5,3 5.4,4.9 0.8,1.9 -0.2,3.8 -1.2,5.6 -1,1.8 -2,3.7 -3.7,4.8 -1.6,1 -4,1.4 -6,2.5 -2,1.2 -3.6,3.2 -5,4.2 -1.3,1 -2.3,1 -3.3,0.8 -1,-0.1 -2,-0.5 -4.5,-0.3 -2.5,0.2 -6.5,0.8 -9,0.3 -2.5,-0.5 -3.5,-2.1 -6.2,-2.5 -2.6,-0.3 -7,0.7 -9.5,1 -2.5,0.4 -3.1,0 -4.1,0 -1,0 -2.4,0.4 -4.2,2.2 -1.8,1.8 -4.2,5.2 -5.3,7.3 -1.2,2.2 -1.2,3.2 -2.9,4.9 -1.6,1.6 -5,4 -7.1,5 -2.2,1 -3.2,0.6 -4.9,-0.2 -1.6,-0.8 -4,-2.2 -5.5,-2.7 -1.5,-0.5 -2.1,-0.1 -4.1,0 -2,0.2 -5.4,0.2 -7.5,1.4 -2.2,1.1 -3.2,3.5 -4.7,5 -1.5,1.5 -3.5,2.1 -5,3.3 -1.5,1.2 -2.5,2.8 -4,4 -1.5,1.2 -3.5,1.8 -4.8,2.8 -1.4,1 -2,2.4 -2.2,4 -0.2,1.7 0.2,3.7 1,5.2 0.8,1.5 2.2,2.5 4.5,3 2.3,0.5 5.7,0.5 7.7,0.3 2,-0.1 2.6,-0.5 4.6,0.5 2,1 5.4,3.4 6.7,5.7 1.3,2.3 0.7,4.7 0.5,6.8 -0.2,2.2 0.2,4.2 0,5.4 -0.2,1.1 -0.8,1.5 -1.3,2.8 -0.5,1.3 -0.9,3.7 -2.7,6.3 -1.8,2.7 -5.2,5.7 -7.5,6.8 -2.3,1.1 -3.7,0.2 -5,-0.6 -1.3,-0.8 -2.7,-1.7 -3.7,-2.7 -1,-1.1 -1.6,-2.5 -2.6,-3.8 -1,-1.3 -2.4,-2.7 -4.9,-3 -2.5,-0.3 -6.1,0.3 -8.5,1.8 -2.3,1.5 -3.3,3.9 -3.6,6 -0.4,2.2 0,4.2 -0.2,5.7 -0.2,1.5 -0.8,2.5 -1,3.5 -0.2,1 0.2,2 0.7,2.8 0.5,0.9 1.1,1.5 1.8,3.5 0.7,2 1.3,5.4 2.8,7.4 1.5,2 3.9,2.6 5.2,4.6 1.3,2 1.7,5.4 1.2,7.5 -0.5,2.2 -1.9,3.2 -4.2,3.7 -2.3,0.5 -5.7,0.5 -7.8,-0.3 -2.2,-0.9 -3.2,-2.5 -3.7,-3.9 -0.5,-1.3 -0.5,-2.3 -1.5,-3.8 -1,-1.5 -3,-3.5 -4,-5.3 -1,-1.9 -1,-3.5 -2.2,-5.5 -1.1,-2 -3.5,-4.4 -4.3,-6.7 -0.8,-2.3 -0.2,-4.7 0,-6.2 0.2,-1.5 -0.2,-2.1 -1.7,-3 -1.5,-0.8 -4.1,-1.8 -6.5,-1.8 -2.3,0 -4.3,1 -5.8,3 -1.5,2 -2.5,5 -3.7,7 -1.1,2 -2.5,3 -3.1,4 -0.7,1 -0.7,2 -0.5,3.5 0.1,1.5 0.5,3.5 0.3,5 -0.2,1.5 -0.8,2.5 -1.2,3.5 -0.3,1 -0.3,2 -1.5,4 -1.1,2 -3.5,5 -5.5,6.3 -2,1.4 -3.6,1 -4.1,-0.6 -0.5,-1.7 0.1,-4.7 -0.7,-7.2 -0.8,-2.5 -3.2,-4.5 -4.5,-5.8 -1.3,-1.4 -1.7,-2 -2.2,-2.9 -0.5,-0.8 -1.1,-1.8 -1.5,-2.8 -0.3,-1 -0.3,-2 -0.1,-3 0.1,-1 0.5,-2 0.1,-4.7 -0.3,-2.6 -1.3,-7 -2.5,-9.6 -1.1,-2.7 -2.5,-3.7 -3.1,-4.5 -0.7,-0.9 -0.7,-1.5 -0.5,-2.4 0.1,-0.8 0.5,-1.8 0.5,-4 0,-2.1 -0.4,-5.5 -0.8,-8.3 -0.4,-2.8 -0.9,-5.2 -1.4,-7.5 -0.5,-2.3 -1,-4.7 -1.4,-6.1 -0.4,-1.4 -0.8,-1.9 -1.1,-2.4 -0.3,-0.5 -0.7,-1 -1.3,-2.6 -0.7,-1.6 -1.7,-4.2 -2,-6.7 -0.4,-2.5 0,-4.9 0.1,-6.4 0.2,-1.5 0.2,-2.1 -0.1,-2.6 -0.4,-0.5 -1,-0.9 -2.4,-2.7 -1.3,-1.8 -3.3,-5.2 -4,-7.8 -0.6,-2.7 0,-4.7 -1.6,-6.5 -1.7,-1.9 -5.7,-3.5 -6.4,-5.5 -0.6,-2 2,-4.4 4.5,-4.2 2.5,0.2 4.9,2.8 7.7,2.8 2.8,0 6.2,-2.6 8.2,-4 2,-1.3 2.6,-1.3 3,-3.3 0.3,-2 0.3,-6 1.1,-8.8 0.9,-2.9 2.5,-4.5 5.4,-5.4 2.8,-0.8 6.8,-0.8 9.7,-1.2 2.9,-0.4 4.8,-1.3 6.6,-2.1 1.8,-0.8 3.7,-1.7 3.9,-4.4 0.3,-2.8 -1.1,-7.4 -2.2,-9.9 -1.2,-2.5 -2.2,-2.9 -2.9,-3.4 -0.6,-0.5 -1,-1.1 -0.8,-3 0.2,-1.8 0.8,-4.8 3.2,-5.8 2.3,-1 6.3,0 8.5,0.2 2.1,0.1 2.5,-0.5 4,-1.4 1.5,-0.8 4.1,-1.8 6.3,-2.1 2.2,-0.4 3.8,0 5.5,-0.4 1.7,-0.3 3.3,-1.3 4.2,-3.5 0.8,-2.1 0.8,-5.5 1.1,-7.5 0.4,-2 1,-2.6 3.4,-3.1 2.3,-0.5 6.3,-0.9 9.3,-0.4", attribute "id" "lake_27", attribute "data-f" "27", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 2221,1040.3 c 1.7,0 4.3,-0.6 6,-0.8 1.7,-0.2 2.3,0.2 3.8,0.2 1.5,0 3.9,-0.4 5.9,-0.2 2,0.2 3.6,0.8 5.5,0.8 1.8,0 3.8,-0.6 6,-0.3 2.1,0.3 4.5,1.7 7.3,2 2.8,0.3 6.2,-0.3 8.3,-1 2.2,-0.7 3.2,-1.3 4.7,-1.7 1.5,-0.3 3.5,-0.3 4.7,-0.5 1.1,-0.1 1.5,-0.5 2.6,-0.5 1.2,0 3.2,0.4 4.5,1 1.4,0.7 2,1.7 2.7,4.2 0.7,2.5 1.3,6.5 0.8,9.7 -0.5,3.1 -2.1,5.5 -2.6,7.3 -0.5,1.8 0.1,3.2 0.3,4.2 0.2,1 -0.2,1.6 -1.7,3.1 -1.5,1.5 -4.1,3.9 -6.6,5 -2.5,1.2 -4.9,1.2 -6.5,1.5 -1.7,0.4 -2.7,1 -4,0.9 -1.4,-0.2 -3,-1.2 -4.7,-1.9 -1.7,-0.6 -3.3,-1 -5.2,-2 -1.8,-1 -3.8,-2.6 -5,-4 -1.1,-1.3 -1.5,-2.3 -3.6,-4 -2.2,-1.6 -6.2,-4 -8.7,-5 -2.5,-1 -3.5,-0.6 -4.5,0 -1,0.7 -2,1.7 -3.5,2.5 -1.5,0.9 -3.5,1.5 -6.2,1.5 -2.6,0 -6,-0.6 -8.5,-1.8 -2.5,-1.2 -4.1,-2.8 -5,-4.6 -1,-1.7 -1.1,-3.6 -1.3,-5.4 -0.2,-1.8 -0.3,-3.7 1.6,-5.6 1.9,-1.9 5.9,-3.9 8.2,-4.6 2.4,-0.6 3,0 4.7,0", attribute "id" "lake_36", attribute "data-f" "36", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1537.5,1094.3 c 1.8,1.4 2.2,3 1.6,4.5 -0.6,1.5 -2.1,2.9 -3.6,4.2 -1.5,1.3 -3,2.7 -4.9,2.7 -1.9,0 -4.3,-1.4 -5.6,-3 -1.3,-1.7 -1.7,-3.7 -1.7,-5.2 0,-1.5 0.4,-2.5 1.4,-3.5 1,-1 2.6,-2 5.1,-2 2.5,0 5.9,1 7.7,2.3", attribute "id" "lake_37", attribute "data-f" "37", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1603.5,1093.5 c 1.5,-0.2 2.5,-0.8 4.8,-1 2.4,-0.2 6,0.2 9,0.2 3,0 5.4,-0.4 7.7,-0.7 2.3,-0.3 4.7,-0.7 6.3,0.3 1.7,1 2.7,3.4 2.7,5.5 0,2.2 -1,4.2 0.2,6.5 1.1,2.4 4.5,5 5.6,8.2 1.2,3.2 0.2,6.8 -0.3,9 -0.5,2.2 -0.5,2.8 -1.8,4.2 -1.4,1.3 -4,3.3 -6.3,4.7 -2.2,1.4 -4.1,2.3 -5.9,3.1 -1.8,0.8 -3.7,1.7 -5.9,1.3 -2.3,-0.5 -4.9,-2.1 -6.3,-3.6 -1.3,-1.5 -1.3,-2.9 -3,-4.5 -1.6,-1.7 -5,-3.7 -7.1,-5.4 -2.2,-1.6 -3.2,-3 -4.2,-4.3 -1,-1.3 -2,-2.7 -2.8,-3.5 -0.9,-0.8 -1.5,-1.2 -2,-1.5 -0.5,-0.3 -0.9,-0.7 -1,-3 -0.2,-2.3 -0.2,-6.7 0,-9.3 0.1,-2.7 0.5,-3.7 1.3,-4.5 0.8,-0.9 2.2,-1.5 3.8,-1.7 1.7,-0.2 3.7,0.2 5.2,0", attribute "id" "lake_38", attribute "data-f" "38", attribute "style" "fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1417.7,1123.6 c 2,-0.1 2.6,0.4 3.3,0.9 0.7,0.5 1.3,1 1.3,3.3 0,2.2 -0.6,6.2 -2.6,8.5 -2,2.4 -5.4,3 -7.7,3 -2.3,0 -3.7,-0.6 -4.5,-2.8 -0.8,-2.2 -1.2,-5.8 -1.3,-7.7 -0.2,-1.8 -0.2,-1.8 0.3,-2.1 0.5,-0.4 1.5,-1 3.7,-1.7 2.1,-0.7 5.5,-1.3 7.5,-1.4", attribute "id" "lake_39", attribute "data-f" "39", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1695.2,1135.2 c 0.5,2.5 0.1,6.1 -0.5,8.3 -0.7,2.2 -1.7,2.8 -1.7,4.5 0,1.7 1,4.3 -0.2,6.8 -1.1,2.5 -4.5,4.9 -7.3,4.9 -2.8,0 -5.2,-2.4 -7.7,-3.5 -2.5,-1.2 -5.1,-1.2 -7.1,-2.4 -2,-1.1 -3.4,-3.5 -3.4,-5.7 0,-2.3 1.4,-4.4 2.7,-6.6 1.3,-2.2 2.7,-4.3 4.5,-5.4 1.8,-1.1 4.2,-1.1 6,-1.9 1.8,-0.9 3.2,-2.5 4.3,-3.5 1.2,-1 2.2,-1.4 3.4,-1.4 1.1,0 2.5,0.4 3.8,1.2 1.3,0.8 2.7,2.2 3.2,4.7", attribute "id" "lake_40", attribute "data-f" "40", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1914,1126 c 0.7,1.3 1.3,3.7 0.8,6.2 -0.5,2.5 -2.1,5.1 -3,6.8 -0.8,1.7 -0.8,2.3 -0.8,3.2 0,0.8 0,1.8 -1,3.1 -1,1.4 -3,3 -4.2,5.2 -1.1,2.2 -1.5,4.8 -3.3,6.5 -1.8,1.7 -5.2,2.3 -7.5,3 -2.3,0.7 -3.7,1.3 -5.7,0.8 -2,-0.5 -4.6,-2.1 -4.8,-5 -0.2,-2.8 2.2,-6.8 4.3,-9 2.2,-2.1 4.2,-2.5 6,-4.1 1.9,-1.7 3.5,-4.7 4.2,-6.4 0.7,-1.6 0.3,-2 1.7,-3.8 1.3,-1.8 4.3,-5.2 6.5,-6.8 2.1,-1.7 3.5,-1.7 4.5,-1.5 1,0.1 1.6,0.5 2.3,1.8", attribute "id" "lake_41", attribute "data-f" "41", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 486,1160 c -0.7,-2 -0.3,-5 1.3,-7 1.7,-2 4.7,-3 5.4,-1 0.6,2 -1,7 -2.7,9 -1.7,2 -3.3,1 -4,-1", attribute "id" "lake_42", attribute "data-f" "42", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 2216.8,1162 c -1.6,2.7 -5.4,7.3 -7.3,9.7 -1.9,2.3 -1.9,2.3 -1.9,2.3 0,0 0,0 -0.4,0 -0.4,0 -1.3,0 -1.8,0 -0.4,0 -0.4,0 -0.4,0 0,0 0,0 0,0 0,0 0,0 -0.2,-1.8 -0.1,-1.9 -0.5,-5.5 -0.1,-8.2 0.3,-2.7 1.3,-4.3 3.5,-5.2 2.1,-0.8 5.5,-0.8 7.5,-0.5 2,0.4 2.6,1 1.1,3.7", attribute "id" "lake_43", attribute "data-f" "43", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 2050.8,740.3 c 2.2,0.4 4.2,2 5.4,3.7 1.1,1.7 1.5,3.3 1,5 -0.5,1.7 -1.9,3.3 -3.4,3.8 -1.5,0.5 -3.1,-0.1 -5,-1.5 -1.8,-1.3 -3.8,-3.3 -4.6,-5 -0.9,-1.6 -0.5,-3 0.8,-4.1 1.3,-1.2 3.7,-2.2 5.8,-1.9", attribute "id" "lake_30", attribute "data-f" "30", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 760.2,538.3 c -1.5,0.7 -2.9,0.7 -4.4,-0.1 -1.5,-0.9 -3.1,-2.5 -3.6,-4.4 -0.5,-1.8 0.1,-3.8 2.1,-5 2,-1.1 5.4,-1.5 7.4,-0.3 2,1.2 2.6,3.8 2.1,5.8 -0.5,2 -2.1,3.4 -3.6,4", attribute "id" "lake_21", attribute "data-f" "21", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 801.2,544 c 0.1,2.3 -0.5,4.7 -1.5,6.2 -1,1.5 -2.4,2.1 -4.4,2.1 -2,0 -4.6,-0.6 -6.5,-1.8 -1.8,-1.2 -2.8,-2.8 -3.1,-4.8 -0.4,-2 0,-4.4 0.8,-5.9 0.8,-1.5 2.2,-2.1 4.3,-2.5 2.2,-0.3 5.2,-0.3 7.2,0.9 2,1.1 3,3.5 3.2,5.8", attribute "id" "lake_25", attribute "data-f" "25", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 669.3,294.4 c -0.5,1.8 -1.6,2.9 -2.8,4.1 -1.2,1.2 -2.3,2.3 -3.9,1.4 -1.6,-0.9 -3.6,-3.9 -4.1,-6.6 -0.5,-2.6 0.5,-5 2.5,-5.8 2,-0.8 5,-0.2 6.7,1.3 1.6,1.5 2,3.9 1.6,5.6", attribute "id" "lake_11", attribute "data-f" "11", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision;-webkit-filter:url(#paper)"]) [], Svg.node "path" ([attribute "d" "m 897.3,300.8 c 1,1.2 1.4,3.2 0.5,4.9 -0.8,1.6 -2.8,3 -4.6,3 -1.9,0 -3.5,-1.4 -4.4,-2.5 -0.8,-1.2 -0.8,-2.2 0,-3.4 0.9,-1.1 2.5,-2.5 4.2,-3 1.7,-0.5 3.3,-0.1 4.3,1", attribute "id" "lake_12", attribute "data-f" "12", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision;-webkit-filter:url(#paper)"]) [], Svg.node "path" ([attribute "d" "m 905,166.3 c -1.3,0.7 -2.7,0.7 -3.7,0.4 -1,-0.4 -1.6,-1 -1.6,-3 0,-2 0.6,-5.4 1.8,-7.4 1.2,-2 2.8,-2.6 4.2,-1.3 1.3,1.3 2.3,4.7 2.1,7 -0.1,2.3 -1.5,3.7 -2.8,4.3", attribute "id" "lake_5", attribute "data-f" "5", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 741.2,343.5 c 0.5,1.5 0.1,2.5 -1.7,3.7 -1.8,1.1 -5.2,2.5 -7.3,2.8 -2.2,0.3 -3.2,-0.3 -3.7,-1.2 -0.5,-0.8 -0.5,-1.8 0.8,-3.8 1.4,-2 4,-5 5.7,-6.3 1.7,-1.4 2.3,-1 3.3,0.1 1,1.2 2.4,3.2 2.9,4.7", attribute "id" "lake_13", attribute "data-f" "13", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 697.2,382.3 c -2.2,1.7 -5.2,1.7 -7,0.5 -1.9,-1.1 -2.5,-3.5 -2.4,-5.8 0.2,-2.3 1.2,-4.7 2.9,-6 1.6,-1.3 4,-1.7 6,-1 2,0.7 3.6,2.3 3.8,4.8 0.2,2.5 -1.2,5.9 -3.3,7.5", attribute "id" "lake_14", attribute "data-f" "14", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 634,385.2 c 3,0.5 4,1.1 4.5,1.8 0.5,0.7 0.5,1.3 0,2.3 -0.5,1 -1.5,2.4 -3.8,4 -2.4,1.7 -6,3.7 -7.9,6 -1.8,2.4 -1.8,5 -3,7 -1.1,2 -3.5,3.4 -4.6,5.2 -1.2,1.8 -1.2,4.2 -2.5,6.3 -1.4,2.2 -4,4.2 -7,4.4 -3,0.1 -6.4,-1.5 -8.2,-3.5 -1.8,-2 -2.2,-4.4 -1.7,-6.5 0.5,-2.2 1.9,-4.2 2.9,-5.5 1,-1.4 1.6,-2 2.1,-3.2 0.5,-1.2 0.9,-2.8 3,-4.5 2.2,-1.7 6.2,-3.3 8.4,-5.5 2.1,-2.2 2.5,-4.8 3,-6.5 0.5,-1.7 1.1,-2.3 4,-2.5 2.8,-0.2 7.8,0.2 10.8,0.7", attribute "id" "lake_17", attribute "data-f" "17", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 114.2,538.7 c -0.5,1.6 -1.9,4 -3.4,5.5 -1.5,1.5 -3.1,2.1 -5,2 -1.8,-0.2 -3.8,-1.2 -4.8,-2.9 -1,-1.6 -1,-4 0.7,-6.1 1.6,-2.2 5,-4.2 7.3,-4.5 2.3,-0.4 3.7,1 4.5,2.1 0.8,1.2 1.2,2.2 0.7,3.9", attribute "id" "lake_23", attribute "data-f" "23", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 759.7,572.8 c 2,0.2 4.6,-2.8 6.6,-3.6 2,-0.9 3.4,0.5 4.2,1.5 0.8,1 1.2,1.6 0.5,2.8 -0.7,1.2 -2.3,2.8 -4.5,3.8 -2.2,1 -4.8,1.4 -6.7,2 -1.8,0.7 -2.8,1.7 -4.6,2.9 -1.9,1.1 -4.5,2.5 -7.2,2.3 -2.7,-0.2 -5.3,-1.8 -6.8,-3.5 -1.5,-1.7 -1.9,-3.3 -0.9,-5.7 1,-2.3 3.4,-5.3 6,-7 2.7,-1.6 5.7,-2 7.9,-0.5 2.1,1.5 3.5,4.9 5.5,5", attribute "id" "lake_26", attribute "data-f" "26", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 1589.8,717 c -0.1,0.3 -0.5,0.7 -1.1,1 -0.7,0.3 -1.7,0.7 -3.9,0.3 -2.1,-0.3 -5.5,-1.3 -7,-3.1 -1.5,-1.9 -1.1,-4.5 0,-5.9 1.2,-1.3 3.2,-1.3 5.4,0 2.1,1.4 4.5,4 5.6,5.5 1.2,1.5 1.2,1.9 1,2.2", attribute "id" "lake_28", attribute "data-f" "28", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) [], Svg.node "path" ([attribute "d" "m 89.7,1041.7 c -1.7,1 -4.7,2.6 -6.4,3.3 -1.6,0.7 -2,0.3 -2.6,-1.5 -0.7,-1.8 -1.7,-5.2 -1.4,-7 0.4,-1.8 2,-2.2 3.7,-2.5 1.7,-0.3 3.3,-0.7 4.8,0.3 1.5,1 2.9,3.4 3.4,4.7 0.5,1.3 0.1,1.7 -1.5,2.7", attribute "id" "lake_35", attribute "data-f" "35", attribute "style" "display:inline;fill:#aaccff;shape-rendering:geometricPrecision"]) []], Svg.node "g" ([attribute "id" "landmass", attribute "style" "display:inline;opacity:1;fill:#e3dfce;fill-rule:evenodd;shape-rendering:geometricPrecision", attribute "mask" "url(#land)", attribute "transform" "matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)"]) [ Svg.node "rect" ([attribute "x" "0", attribute "y" "0", attribute "width" "2400", attribute "height" "1174", attribute "id" "rect247", attribute "inkscape:label" "rect247", attribute "style" "display:inline"]) []], Svg.node "g" ([attribute "id" "rivers", attribute "fill" "#a69b7d", attribute "filter" "", attribute "style" "display:inline;shape-rendering:geometricPrecision;-webkit-mask:url(#land);-webkit-mask-image:url(#land)", attribute "mask" "url(#land)", attribute "transform" "matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)"]) [ Svg.node "path" ([attribute "id" "river1", attribute "d" "m 2202.5,669.3 c 0,0 1.9,3 2.3,4.7 0.4,1.7 1.3,3.4 0.4,5.3 -1,2 -4.1,4.5 -6.4,6.4 -2.4,1.8 -7.6,4.8 -7.6,4.8 -0.1,-0.2 5.1,-3.1 7.4,-5 2.3,-1.8 5.4,-4.4 6.3,-6.3 0.9,-1.9 0.1,-3.5 -0.4,-5.1 -0.4,-1.6 -2.3,-4.7 -2.3,-4.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river2", attribute "d" "m 2204.3,751.2 c 0,0 -1.7,-4.1 -2,-6.2 -0.4,-2.2 1,-4.4 -0.1,-6.5 -1.1,-2.2 -4.8,-4.1 -6.8,-6.5 -2,-2.4 -2.7,-7.1 -5.2,-7.8 -2.7,-0.7 -6.9,2.9 -10.4,3.8 -3.6,1 -11,1.9 -11,1.9 0,-0.1 7.3,-1.1 10.9,-2 3.6,-1 7.8,-4.6 10.5,-3.9 2.6,0.7 3.4,5.4 5.5,7.8 2,2.4 5.7,4.3 6.9,6.5 1.1,2.1 -0.2,4.4 0.2,6.6 0.4,2.1 2,6.1 2,6.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river3", attribute "d" "m 2171,618.6 c 0,0 -5.2,0.8 -7.8,0.7 -2.5,-0.1 -6.1,-2.1 -7.4,-1.2 -1.4,0.8 -0.2,4.2 -0.8,6.2 -0.6,2.1 -2.9,6 -2.9,6 -0.3,-0.2 1.8,-4 2.4,-6.1 0.6,-2.1 -0.5,-5.7 0.9,-6.7 1.5,-0.9 5.3,1.1 7.8,1.2 2.6,0 7.7,-0.8 7.7,-0.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river5", attribute "d" "m 2219.1,710.2 c 0,0 -1,1.7 -1.7,2.1 -0.8,0.3 -0.5,0.2 -2.7,0.2 -2.6,0 -8.8,0 -13.1,-0.5 -4.4,-0.5 -12.9,-2.5 -12.9,-2.5 0,-0.1 8.6,1.8 12.9,2.2 4.3,0.5 10.6,0.4 13.1,0.4 2.1,0 1.8,0.2 2.5,-0.2 0.6,-0.4 1.6,-1.9 1.6,-1.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river6", attribute "d" "m 2159.1,593.3 c 0,0 1.1,4 1.2,6 0,2 0.4,3.9 -0.9,6.1 -1.3,2.3 -4.6,5.3 -7.2,7.5 -2.6,2.3 -8.5,6 -8.5,6 -0.1,-0.1 5.7,-3.9 8.3,-6.2 2.6,-2.2 5.8,-5.2 7.1,-7.5 1.2,-2.1 0.8,-3.9 0.7,-5.9 0,-2 -1.2,-5.9 -1.2,-5.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river9", attribute "d" "m 0,980.1 c 0,0 10,1.5 14.4,0 4.3,-1.4 7.5,-6.1 11.6,-8.7 4,-2.7 12.7,-7.1 12.7,-7.1 0,0.1 -8.6,4.6 -12.7,7.2 -4,2.7 -7.2,7.4 -11.6,8.9 -4.3,1.4 -14.4,0 -14.4,0", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river15", attribute "d" "m 1474.8,185.8 c 0,0 6,3.9 8.7,6.2 2.8,2.3 4.5,6.2 7.5,7.6 3.1,1.5 7.4,0.4 10.9,1.1 3.6,0.7 10.5,3.1 10.5,3.1 0,0.1 -6.9,-2.3 -10.5,-2.9 -3.6,-0.7 -7.9,0.3 -10.9,-1.1 -3.1,-1.5 -4.9,-5.4 -7.6,-7.7 -2.7,-2.3 -8.8,-6.1 -8.8,-6.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river16", attribute "d" "m 154.9,305 c 0,0 4.2,-1.9 6.4,-2.3 2.2,-0.5 5.2,-1.5 6.9,-0.4 1.7,1.1 2.6,4.6 3.4,7 0.8,2.5 1.5,7.7 1.5,7.7 -0.1,0 -0.8,-5.2 -1.7,-7.6 -0.8,-2.4 -1.7,-5.8 -3.4,-6.9 -1.6,-1 -4.5,0 -6.6,0.5 -2.2,0.4 -6.3,2.3 -6.3,2.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river18", attribute "d" "m 379.7,241.9 c 0,0 5.5,-3.1 8.4,-4.2 2.8,-1.2 5.9,-2.3 9,-2.5 3.1,-0.2 6.5,0.5 9.6,1.3 3.1,0.8 6.2,1.7 9.1,3.3 2.9,1.6 5.7,4.2 8.2,6.6 2.5,2.4 6.9,8 6.9,8 -0.2,0.1 -4.5,-5.5 -7,-7.9 -2.5,-2.4 -5.3,-4.9 -8.2,-6.5 -2.9,-1.7 -6,-2.5 -9.1,-3.3 -3.1,-0.7 -6.4,-1.5 -9.5,-1.3 -3.1,0.2 -6.1,1.4 -8.9,2.6 -2.9,1.1 -8.3,4.3 -8.3,4.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river24", attribute "d" "m 292.8,827.6 c 0,0 4.7,-0.9 7,-0.8 2.4,0 4.3,0.5 7,1.1 2.9,0.5 6.6,1.2 9.8,2.3 3.1,1 9.1,4.1 9.1,4.1 -0.1,0.1 -6,-2.9 -9.2,-4 -3.1,-1 -6.9,-1.6 -9.7,-2.2 -2.7,-0.5 -4.7,-1 -7,-1 -2.3,-0.1 -7,0.9 -7,0.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river25", attribute "d" "m 1083.1,191.5 c 0,0 -4.3,4.3 -6.8,6 -2.5,1.7 -5.1,4.6 -8,4.4 -3,-0.2 -6.7,-3.7 -9.8,-5.9 -3.1,-2.3 -8.6,-7.6 -8.6,-7.6 0.1,0 5.6,5.2 8.7,7.4 3,2.3 6.7,5.7 9.7,5.9 2.9,0.2 5.4,-2.7 7.9,-4.4 2.4,-1.7 6.8,-6 6.8,-6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river26", attribute "d" "m 338.7,797 c 0,0 0.8,6.6 0.7,9.9 -0.1,3.3 -1.8,7.4 -1.2,9.8 0.4,2.2 2.9,2.6 3.9,4.2 1,1.6 2.3,5.3 2.3,5.3 -0.2,0.1 -1.4,-3.6 -2.5,-5.2 -1.1,-1.6 -3.6,-2 -4.1,-4.3 -0.5,-2.3 1.2,-6.5 1.3,-9.8 0.1,-3.3 -0.7,-9.9 -0.7,-9.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river27", attribute "d" "m 290.7,836.8 c 0,0 5.2,-1.2 7.9,-1.2 2.6,-0.1 5.6,0.2 7.8,0.8 2.2,0.5 3.9,1.2 5.5,2.3 1.6,1 4.3,4 4.3,4 -0.1,0.1 -2.8,-2.8 -4.5,-3.8 -1.6,-1 -3.2,-1.7 -5.3,-2.2 -2.2,-0.5 -5.2,-0.8 -7.8,-0.7 -2.6,0 -7.8,1.2 -7.8,1.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river28", attribute "d" "m 309.8,898.2 c 0,0 -0.8,-5.1 -0.6,-7.6 0.1,-2.5 0.8,-5 1.2,-7.4 0.4,-2.4 0.4,-4.8 1.1,-7 0.7,-2.2 3,-6.4 3,-6.4 0.1,0.1 -2.2,4.2 -2.8,6.5 -0.6,2.2 -0.6,4.5 -1,6.9 -0.3,2.4 -1.1,5 -1.2,7.4 -0.1,2.5 0.7,7.6 0.7,7.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river30", attribute "d" "m 154,282.6 c 0,0 3.5,0.8 5.1,1.6 1.5,0.9 1.9,2.5 4.2,3.3 2.4,1 7.1,1.1 10.5,2.1 3.4,1 7.2,1.5 10,4 3,2.6 5.2,7.4 7.4,11.4 2.2,4 5.6,12.4 5.6,12.4 -0.1,0 -3.6,-8.4 -5.8,-12.3 -2.1,-3.9 -4.4,-8.8 -7.3,-11.3 -2.9,-2.5 -6.6,-2.9 -10,-3.9 -3.4,-1 -8.1,-1 -10.6,-2 -2.3,-0.8 -2.7,-2.4 -4.2,-3.2 -1.6,-0.8 -5.1,-1.6 -5.1,-1.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river32", attribute "d" "m 0,1006 c 0,0 5,1.4 7,0 2.1,-1.4 3.4,-6.1 5.5,-8.9 2.1,-2.8 7.1,-7.7 7.1,-7.7 0.1,0.1 -4.9,5 -7,7.8 -2.1,2.8 -3.3,7.5 -5.5,9 -2,1.4 -7.1,0 -7.1,0", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river35", attribute "d" "m 2400,995.8 c 0,0 -11.1,-1.7 -12.8,-0.1 -1.6,1.6 1.9,6.3 2.4,9.6 0.5,3.3 0.4,10 0.4,10 -0.2,0 -0.2,-6.6 -0.7,-10 -0.4,-3.3 -4.1,-8.2 -2.4,-9.8 1.8,-1.8 13.1,-0.1 13.1,-0.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river36", attribute "d" "m 389.1,937.2 c 0,0 4.9,-2 7.5,-2.5 2.6,-0.5 6,-1.4 7.9,-0.6 1.9,0.8 2.7,3.4 3.6,5.3 0.9,1.9 1.6,6.1 1.6,6.1 -0.1,0 -1,-4.1 -1.8,-6 -0.9,-1.8 -1.7,-4.3 -3.5,-5.1 -1.9,-0.7 -5.2,0.1 -7.8,0.7 -2.5,0.5 -7.4,2.5 -7.4,2.5", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river37", attribute "d" "m 2400,226 c 0,0 -8.4,1.6 -9.7,-0.1 -1.4,-1.7 0.8,-7 1.6,-10.4 0.9,-3.3 3.7,-9.7 3.7,-9.7 0.3,0.1 -2.4,6.5 -3.3,9.8 -0.9,3.3 -3.1,8.4 -1.8,10.1 1.3,1.6 9.5,-0.1 9.5,-0.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river40", attribute "d" "m 0,950.4 c 0,0 12,-1.3 14.7,0 2.5,1.2 1.5,4.5 1.7,6.8 0.2,2.3 -0.4,6.9 -0.4,6.9 -0.2,0 0.4,-4.6 0.2,-6.9 C 16,955 17,951.8 14.6,950.7 12,949.5 0,950.7 0,950.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river41", attribute "d" "m 12.3,324.7 c 0,0 5,2 7.3,3.4 2.3,1.4 5,2.3 6.4,5 1.5,2.9 1.7,8.1 2.1,12.1 0.3,4.1 -0.2,8.1 0,12.2 0.3,4.1 1.4,8.2 1.5,12.3 0.2,4.2 -0.5,12.5 -0.5,12.5 -0.1,0 0.5,-8.3 0.3,-12.4 -0.2,-4.2 -1.3,-8.3 -1.5,-12.4 -0.3,-4 0.2,-8.1 -0.2,-12.2 -0.4,-4 -0.6,-9.1 -2.1,-11.9 -1.4,-2.7 -4,-3.5 -6.2,-4.8 -2.3,-1.4 -7.3,-3.2 -7.3,-3.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river42", attribute "d" "m 2400,143.6 c 0,0 -1.2,-1.4 -1.5,-0.2 -0.4,1.5 0.1,6.7 -0.3,10 -0.4,3.3 -2.3,9.7 -2.3,9.7 -0.1,0 1.7,-6.4 2.1,-9.7 0.4,-3.3 -0.2,-8.5 0.2,-10 0.4,-1.3 1.8,-0.1 1.8,-0.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river43", attribute "d" "m 98.7,264.2 c 0,0 0.3,-5.3 1,-7.8 0.6,-2.5 2.3,-4.7 2.9,-7.3 0.6,-2.6 0.1,-5.6 0.7,-8.3 0.6,-2.6 4.5,-6.9 2.7,-7.7 -1.9,-0.9 -9.9,2.6 -14.9,3.4 -5,0.8 -15.3,1.4 -15.3,1.4 0,-0.1 10.2,-0.8 15.3,-1.6 5,-0.8 13,-4.4 15,-3.5 1.8,0.9 -2,5.4 -2.5,8.1 -0.5,2.7 -0.1,5.7 -0.7,8.3 -0.6,2.6 -2.2,4.8 -2.8,7.3 -0.6,2.5 -1,7.7 -1,7.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river53", attribute "d" "m 2373.1,630 c 0,0 1.8,-6.9 3.2,-10.1 1.3,-3.3 4.4,-6.3 4.9,-9.4 0.6,-3.2 -1.3,-6.3 -1.5,-9.5 -0.2,-3.2 -0.6,-6.5 0.4,-9.8 1.1,-3.3 3.9,-6.9 6.3,-10.1 2.3,-3.1 7.8,-8.8 7.8,-8.8 0.1,0.1 -5.4,5.8 -7.7,9 -2.3,3.1 -5,6.7 -6.1,10 -1.1,3.3 -0.6,6.4 -0.4,9.6 0.2,3.2 2.2,6.5 1.6,9.6 -0.5,3.2 -3.5,6.3 -4.9,9.5 -1.3,3.3 -3.1,10.2 -3.1,10.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river54", attribute "d" "m 985,584.8 c 0,0 -7.6,0.2 -11.4,-0.2 -3.7,-0.4 -8.5,-2.2 -11.1,-2.1 -2.3,0 -2.7,1.7 -4.1,2 -1.5,0.4 -4.7,0.2 -4.7,0.2 0,-0.2 3.2,0 4.6,-0.4 1.5,-0.4 1.8,-2.1 4.2,-2.2 2.6,0 7.4,1.8 11.2,2.1 3.7,0.4 11.3,0.2 11.3,0.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river63", attribute "d" "m 1203.9,734.4 c 0,0 3.7,3.7 5.2,5.8 1.5,2.1 2,3.9 3.6,6.8 1.7,3 4.7,7.2 6.5,11 1.9,3.7 2.7,8.8 4.8,11.7 2,2.9 5.3,3.7 7.6,5.9 2.3,2.3 6.2,7.4 6.2,7.4 -0.1,0.1 -4.1,-5 -6.4,-7.2 -2.3,-2.2 -5.5,-3 -7.6,-5.9 -2.1,-3 -2.9,-8 -4.8,-11.8 -1.9,-3.8 -4.9,-7.9 -6.6,-10.9 -1.6,-2.9 -2.2,-4.7 -3.6,-6.8 -1.5,-2.1 -5.2,-5.6 -5.2,-5.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river64", attribute "d" "m 45.9,914.5 c 0,0 -5.9,3.2 -8.9,4.3 -3.1,1.1 -7.6,0.6 -9.6,2.4 -1.9,1.9 -1,5.8 -2,8.6 -1,2.7 -3.9,8 -3.9,8 -0.1,-0.1 2.8,-5.3 3.7,-8.1 1,-2.7 0.2,-6.8 2.1,-8.7 1.9,-1.8 6.5,-1.3 9.6,-2.5 3,-1.1 8.8,-4.3 8.8,-4.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river68", attribute "d" "m 969.9,706.7 c 0,0 -8.3,-0.1 -12.4,-0.6 -4.2,-0.5 -10,-0.7 -12.4,-2.3 -2.3,-1.5 -1.8,-4.6 -2.3,-6.8 -0.4,-2.3 0.4,-4.7 -0.2,-6.7 -0.7,-2 -2.8,-3.5 -3.8,-5.4 -1,-2 -1.3,-3.8 -2.3,-6.3 -1,-2.8 -3,-6.5 -4,-9.8 -1,-3.2 -0.5,-8.6 -2.1,-9.9 -1.7,-1.4 -5,1.3 -7.6,1.5 -2.7,0.2 -5.6,0.2 -8.3,-0.3 -2.6,-0.6 -5.3,-1.7 -7.8,-2.9 -2.5,-1.3 -5.3,-2 -7.2,-4.7 -1.9,-2.7 -3,-7.9 -4.1,-12 -1,-4.2 -3.6,-10.4 -2.2,-12.8 1.3,-2.3 6.7,-1.6 9.9,-1.8 3.2,-0.3 8.6,2.2 9.4,0.4 0.7,-1.8 -3.9,-7.6 -5.4,-11.6 -1.5,-4.1 -1.4,-10.2 -3.6,-12.6 -2.1,-2.2 -6.2,-0.6 -9.2,-1.4 -3,-0.8 -5.4,-2.9 -8.8,-3.4 -3.4,-0.5 -7.6,0.5 -11.4,0.3 -3.8,-0.2 -7.6,0 -11.4,-1.7 -3.8,-1.7 -7.9,-5.4 -11.5,-8.5 -3.6,-3.1 -10.1,-10 -10.1,-10 0.1,-0.1 6.7,6.8 10.3,9.9 3.6,3.1 7.6,6.8 11.4,8.4 3.7,1.6 7.5,1.4 11.3,1.6 3.8,0.2 8.1,-0.8 11.5,-0.3 3.3,0.5 5.8,2.5 8.8,3.3 3,0.8 7.2,-0.7 9.4,1.5 2.3,2.4 2.3,8.5 3.8,12.7 1.6,4.1 6.4,10.1 5.6,12.1 -0.8,2 -6.8,-0.2 -10,0.1 -3.2,0.2 -8.1,-0.8 -9.3,1.4 -1.2,2.3 1.3,8.1 2.4,12.1 1,4 2.1,9.1 4,11.8 1.8,2.6 4.4,3.1 6.8,4.3 2.4,1.2 5,2.3 7.6,2.8 2.6,0.5 5.3,0.5 8,0.3 2.7,-0.1 6.5,-2.8 8.3,-1.3 1.9,1.5 1.4,7.1 2.5,10.4 1.1,3.4 2.9,7 4,9.7 1,2.5 1.3,4.2 2.3,6.2 1,1.9 3.1,3.5 3.8,5.5 0.8,2.1 0.1,4.7 0.4,6.8 0.3,2.2 -0.4,4.7 1.7,6.1 2.3,1.4 7.9,1.6 11.9,2.1 4.1,0.4 12.3,0.5 12.3,0.5", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river69", attribute "d" "m 148.6,128.8 c 0,0 0.8,4.2 0.7,6.4 -0.1,2.1 -0.1,4.2 -1.2,6.3 -1.2,2.2 -3.6,4.6 -5.7,6.6 -2.2,1.9 -5.9,3.7 -7,5 -1.1,1.3 0.2,2.1 -0.2,3 -0.4,0.9 -2,2.3 -2,2.3 -0.1,-0.1 1.5,-1.5 1.8,-2.4 0.4,-0.8 -0.8,-1.7 0.2,-3 1.1,-1.4 4.9,-3.2 7,-5.1 2.1,-2 4.5,-4.4 5.6,-6.5 1.1,-2.1 1.1,-4.2 1.2,-6.3 0,-2 -0.8,-6.3 -0.8,-6.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river70", attribute "d" "m 159.1,264.7 c 0,0 5.4,-0.7 8.1,-0.5 2.6,0.2 6.2,0.5 7.9,1.5 1.6,0.9 1.9,2.5 2.4,3.9 0.5,1.4 0.4,4.5 0.4,4.5 -0.1,0 -0.1,-3.1 -0.6,-4.4 -0.5,-1.4 -0.7,-2.9 -2.3,-3.7 -1.7,-0.9 -5.2,-1.3 -7.9,-1.5 -2.6,-0.1 -7.9,0.6 -7.9,0.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river77", attribute "d" "m 2220.5,1054.1 c 0,0 -3.8,6 -6,8.7 -2.3,2.7 -5.4,6.4 -7.6,7.4 -2,1 -3.4,-0.3 -5,-0.9 -1.5,-0.7 -4.1,-2.9 -4.1,-2.9 0,0 2.7,2.1 4.2,2.7 1.5,0.7 2.9,1.9 4.8,1 2.1,-1 5.3,-4.7 7.5,-7.4 2.3,-2.7 6,-8.7 6,-8.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river83", attribute "d" "m 404.6,905.5 c 0,0 5.6,3.9 8.1,6.3 2.4,2.3 4.9,6.8 6.7,7.6 1.6,0.7 2.3,-1.8 3.7,-2.2 1.4,-0.4 2.6,-0.7 4.5,-0.3 2,0.4 5,1.7 7.3,3 2.2,1.2 6.2,4.7 6.2,4.7 -0.1,0.1 -4.1,-3.3 -6.3,-4.6 -2.3,-1.2 -5.3,-2.5 -7.2,-2.9 -1.9,-0.3 -3,0 -4.4,0.4 -1.4,0.5 -2.3,3 -4,2.3 -1.8,-0.8 -4.4,-5.4 -6.9,-7.7 -2.5,-2.3 -8.1,-6.2 -8.1,-6.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river84", attribute "d" "m 827.5,455.6 c 0,0 0,6.7 -0.5,10 -0.4,3.3 -0.6,7.9 -2.4,9.7 -1.8,1.9 -5.6,1.3 -8.4,1.4 -2.9,0.2 -8.5,-0.5 -8.5,-0.5 0.1,-0.2 5.7,0.5 8.4,0.3 2.8,-0.1 6.4,0.4 8.2,-1.4 1.8,-1.9 1.9,-6.3 2.3,-9.6 0.5,-3.2 0.5,-9.9 0.5,-9.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river85", attribute "d" "m 2127.5,552.8 c 0,0 -3.7,2.2 -5.7,2.7 -2,0.6 -3.8,-0.8 -6.1,0.9 -2.6,1.7 -5.6,6.9 -8.7,10 -3.2,3.1 -10.1,8.6 -10.1,8.6 -0.1,-0.1 6.8,-5.6 10,-8.7 3.1,-3.1 6.1,-8.3 8.6,-10.1 2.4,-1.6 4.3,-0.3 6.3,-0.9 1.9,-0.6 5.5,-2.7 5.5,-2.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river86", attribute "d" "m 389.6,273.6 c 0,0 3.2,-1.7 4.9,-2.1 1.6,-0.3 3.7,-0.9 5.3,-0.1 1.5,0.8 2.9,3.4 4,5.3 1,1.9 2.2,6.3 2.2,6.3 -0.2,0 -1.4,-4.3 -2.4,-6.2 -1,-1.9 -2.4,-4.4 -4,-5.2 -1.5,-0.8 -3.4,-0.2 -5.1,0.2 -1.6,0.4 -4.7,2.1 -4.7,2.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river90", attribute "d" "m 2400,960.8 c 0,0 -8.8,0.6 -12.3,-0.1 -3.5,-0.6 -6,-2.3 -8.6,-3.9 -2.7,-1.5 -5,-4.7 -7.6,-5.4 -2.5,-0.7 -5,1.1 -7.6,1.1 -2.5,0.1 -5.6,-1.1 -7.6,-0.8 -1.9,0.3 -2.7,2.1 -4.3,2.6 -1.6,0.6 -5,0.8 -5,0.8 0,-0.2 3.4,-0.4 4.9,-0.9 1.6,-0.6 2.4,-2.4 4.4,-2.7 2,-0.4 5.1,0.8 7.6,0.7 2.6,0 5.2,-1.8 7.7,-1.2 2.6,0.7 5,4 7.6,5.5 2.7,1.5 5.1,3.1 8.5,3.7 3.5,0.7 12.3,0 12.3,0", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river91", attribute "d" "m 2323.4,597.5 c 0,0 3.7,-4.8 5.9,-6.8 2.2,-2.1 5.1,-3 7.2,-5.5 2.2,-2.4 3.6,-6.4 5.7,-9.4 2.2,-3 5.1,-6.9 7.4,-8.3 2.1,-1.4 4,-0.8 5.9,-0.7 1.9,0.2 5.6,1.4 5.6,1.4 0,0.3 -3.8,-1 -5.6,-1.1 -1.9,-0.1 -3.6,-0.7 -5.7,0.7 -2.2,1.4 -5.1,5.3 -7.2,8.3 -2.2,2.9 -3.5,6.9 -5.7,9.5 -2.1,2.4 -5,3.4 -7.2,5.4 -2.2,2.1 -5.8,6.9 -5.8,6.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river92", attribute "d" "m 496.9,869.4 c 0,0 -1.7,5.2 -3,7.6 -1.3,2.3 -3.6,4.2 -4.6,6.6 -1,2.4 -0.6,5.3 -1.4,7.9 -0.7,2.5 -0.9,6.3 -3.3,7.4 -2.5,1.3 -7.8,0 -11.7,-0.5 -3.8,-0.5 -11.3,-2.5 -11.3,-2.5 0,-0.2 7.5,1.8 11.4,2.3 3.8,0.5 9.1,1.7 11.5,0.5 2.4,-1.2 2.4,-4.8 3.1,-7.3 0.8,-2.6 0.3,-5.5 1.3,-8 1,-2.4 3.4,-4.3 4.6,-6.6 1.3,-2.4 2.9,-7.6 2.9,-7.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river93", attribute "d" "m 423.2,793.4 c 0,0 3.9,7 5.4,10.7 1.5,3.7 2.8,8.4 3.6,11.4 0.7,2.9 1,4.3 1.1,6.5 0,2.2 -0.9,6.5 -0.9,6.5 -0.1,0 0.8,-4.3 0.7,-6.5 0,-2.1 -0.4,-3.6 -1.2,-6.4 -0.7,-3 -2,-7.7 -3.5,-11.4 -1.5,-3.7 -5.5,-10.6 -5.5,-10.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river97", attribute "d" "m 1280.9,270.7 c 0,0 3.2,-0.3 4.5,-1.1 1.4,-0.8 2.1,-3.1 3.5,-3.8 1.3,-0.7 3.5,-0.7 4.9,-0.4 1.4,0.4 2.1,2.3 3.5,2.5 1.4,0.2 3.6,-1.6 5,-1.2 1.4,0.4 3.2,3.5 3.2,3.5 -0.2,0.1 -1.9,-2.9 -3.3,-3.3 -1.3,-0.3 -3.5,1.5 -4.9,1.3 -1.4,-0.3 -2.2,-2.2 -3.6,-2.5 -1.4,-0.4 -3.3,-0.3 -4.7,0.4 -1.3,0.7 -2,3 -3.4,3.9 -1.3,0.8 -4.5,1.1 -4.5,1.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river98", attribute "d" "m 893,758 c 0,0 -1.7,2 -2.7,2.6 -1.1,0.6 -1.8,0.4 -3.7,1 -2,0.7 -5.5,2.3 -8.3,3 -2.9,0.7 -5.7,2.5 -8.9,1.2 -3.3,-1.4 -7.3,-6.3 -10.6,-9.8 -3.3,-3.5 -9.2,-11.1 -9.2,-11.1 0.1,-0.1 6,7.5 9.3,11 3.3,3.4 7.3,8.3 10.6,9.7 3.1,1.3 5.9,-0.5 8.7,-1.2 2.9,-0.7 6.3,-2.4 8.3,-3.1 1.9,-0.6 2.6,-0.4 3.6,-1 1,-0.6 2.6,-2.6 2.6,-2.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river99", attribute "d" "m 1744.1,46.9 c 0,0 1.2,3.8 1.3,5.8 0.1,1.9 -1.2,3.7 -0.7,5.9 0.5,2.2 2.9,4.8 3.8,7.4 1,2.6 1,5.4 2,8.2 1,2.8 3,5.5 4,8.4 1.1,3 2.2,9.2 2.2,9.2 -0.1,0 -1.3,-6.2 -2.3,-9.1 -1,-2.9 -3.1,-5.7 -4.1,-8.5 -1,-2.7 -1,-5.5 -2,-8.1 -1,-2.6 -3.3,-5.2 -3.8,-7.5 -0.5,-2.2 0.7,-3.9 0.5,-5.9 -0.1,-1.9 -1.3,-5.8 -1.3,-5.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river100", attribute "d" "m 2180.1,937.2 c 0,0 0.4,3.2 0.1,4.6 -0.3,1.5 -1.8,2.2 -1.8,4.2 -0.1,2.1 1.4,5.5 1.6,8.3 0.2,2.8 -0.4,8.5 -0.4,8.5 -0.1,0 0.4,-5.7 0.2,-8.5 -0.2,-2.8 -1.7,-6.2 -1.7,-8.3 0.1,-2 1.5,-2.8 1.8,-4.2 0.3,-1.5 -0.1,-4.6 -0.1,-4.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river101", attribute "d" "m 1313.5,220.5 c 0,0 1.5,4.3 1.9,6.5 0.3,2.2 -0.9,5.2 -0.1,6.6 0.8,1.5 3.4,1.3 4.8,2.4 1.4,1 3.7,3.9 3.7,3.9 -0.1,0.1 -2.4,-2.8 -3.8,-3.8 -1.4,-1.1 -4.1,-0.9 -4.9,-2.3 -0.8,-1.6 0.3,-4.6 0,-6.8 -0.3,-2.2 -1.9,-6.4 -1.9,-6.4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river102", attribute "d" "m 1565.8,87.4 c 0,0 4.3,1.9 6.2,3.2 1.9,1.3 3.8,3.1 5.1,4.7 1.3,1.7 2.1,3.3 2.7,5.1 0.6,1.8 0.9,5.7 0.9,5.7 -0.2,0.1 -0.4,-3.8 -1,-5.6 -0.6,-1.8 -1.5,-3.4 -2.8,-5 -1.3,-1.7 -3.2,-3.4 -5,-4.7 -1.9,-1.3 -6.2,-3.1 -6.2,-3.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river103", attribute "d" "m 46.9,327.6 c 0,0 -1.2,2.3 -2.1,3 -0.9,0.8 -3.2,-0.2 -3.3,1.4 -0.1,1.8 2.7,6.3 3.6,9.6 0.9,3.3 1.6,10.1 1.6,10.1 -0.1,0 -0.9,-6.8 -1.8,-10.1 -0.9,-3.3 -3.7,-7.8 -3.6,-9.6 0,-1.6 2.4,-0.8 3.3,-1.6 0.9,-0.7 2.1,-2.9 2.1,-2.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river114", attribute "d" "m 651.2,552.1 c 0,0 3.3,-4.6 5.2,-6.5 1.9,-1.8 5.7,-2.6 6.3,-4.9 0.7,-2.3 -1.8,-5.8 -2.3,-8.9 -0.4,-3 -2,-7.7 -0.4,-9.5 1.6,-1.9 6.9,-1.4 10.3,-1.6 3.4,-0.2 8.6,0.9 10,0.4 1.3,-0.5 -0.9,-1.9 -0.8,-2.8 0.1,-1 -0.3,-2 1.5,-3.1 1.9,-1.2 7.1,-2.9 10.8,-3.9 3.7,-1 9,-0.3 11.3,-2 2.2,-1.7 1.5,-5.6 2.7,-8.2 1.2,-2.6 1.7,-5.6 4.5,-7.4 3,-1.9 8.9,-2.6 13.4,-3.4 4.5,-0.9 13.7,-1.5 13.7,-1.5 0,0.1 -9.2,0.8 -13.7,1.6 -4.5,0.9 -10.3,1.6 -13.3,3.5 -2.8,1.8 -3.2,4.7 -4.4,7.3 -1.2,2.6 -0.5,6.5 -2.7,8.3 -2.4,1.8 -7.7,1.1 -11.4,2.1 -3.7,1 -8.8,2.8 -10.7,3.9 -1.7,1.1 -1,1.8 -1.1,2.8 -0.2,1.1 1.8,2.9 0.4,3.4 -1.5,0.7 -6.9,-0.5 -10.2,-0.3 -3.3,0.1 -8.3,-0.4 -9.8,1.3 -1.5,1.8 0.1,6 0.6,9 0.5,3.1 3.1,6.8 2.3,9.2 -0.7,2.4 -4.5,3.3 -6.5,5.3 -1.9,1.9 -5.1,6.3 -5.1,6.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river116", attribute "d" "m 2288.6,937.2 c 0,0 -2.7,2.4 -4.3,3.1 -1.6,0.7 -4.3,-0.5 -5.1,1.2 -0.9,1.9 0.6,6.7 0.3,10 -0.2,3.3 -1.6,9.9 -1.6,9.9 -0.1,0 1.3,-6.6 1.5,-9.9 0.2,-3.3 -1.3,-8.2 -0.4,-10 0.8,-1.8 3.6,-0.7 5.2,-1.4 1.6,-0.8 4.3,-3.1 4.3,-3.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river117", attribute "d" "m 494.1,855.7 c 0,0 -6.3,1.8 -9.5,2.3 -3.2,0.4 -7.5,-0.2 -9.7,0.3 -2,0.4 -2.1,1.9 -3.4,2.4 -1.2,0.5 -4.1,0.5 -4.1,0.5 0,-0.1 2.8,-0.2 4.1,-0.7 1.2,-0.5 1.4,-1.9 3.4,-2.4 2.2,-0.5 6.5,0.1 9.7,-0.3 3.2,-0.5 9.5,-2.3 9.5,-2.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river118", attribute "d" "m 2328.6,135.1 c 0,0 6.4,-1.4 9.7,-1.6 3.2,-0.2 7.1,-0.8 9.8,0.4 2.8,1.2 4.7,4.3 6.6,6.7 1.9,2.4 5,7.9 5,7.9 -0.2,0.1 -3.2,-5.4 -5.1,-7.8 -2,-2.4 -3.8,-5.4 -6.5,-6.6 -2.8,-1.2 -6.6,-0.6 -9.8,-0.3 -3.2,0.2 -9.7,1.5 -9.7,1.5", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river119", attribute "d" "m 301.6,701.1 c 0,0 -4.6,-3.1 -6.5,-5 -2,-1.9 -4.2,-3.9 -5.2,-6.3 -1,-2.4 -0.7,-5.4 -0.6,-8.1 0.1,-2.6 2.2,-5.3 1.4,-7.8 -0.8,-2.5 -4.6,-4.4 -6.5,-6.9 -1.9,-2.6 -4.9,-8.2 -4.9,-8.2 0.1,-0.1 3.1,5.5 5,8.1 1.9,2.5 5.7,4.5 6.6,7 0.8,2.4 -1.2,5.2 -1.4,7.9 -0.1,2.6 -0.3,5.5 0.6,7.9 1,2.3 3.3,4.3 5.2,6.2 2,1.8 6.5,4.8 6.5,4.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river120", attribute "d" "m 2149.8,930.3 c 0,0 1.4,5.7 1.6,8.6 0.3,2.9 -1.2,5.6 -0.2,8.8 0.9,3.3 4.3,7.1 6.1,10.8 1.7,3.7 4.3,11.7 4.3,11.7 -0.1,0 -2.7,-7.9 -4.5,-11.6 -1.8,-3.8 -5.2,-7.5 -6.2,-10.8 -0.9,-3.2 0.5,-5.9 0.3,-8.8 -0.3,-3 -1.8,-8.7 -1.8,-8.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river136", attribute "d" "m 981.5,631.1 c 0,0 -3.1,2.5 -4.9,3.4 -1.8,0.9 -3.9,1.7 -5.8,1.7 -1.9,0 -4,-0.9 -5.8,-1.8 -1.8,-0.9 -4.8,-3.6 -4.8,-3.6 0.1,-0.2 3.2,2.5 4.9,3.3 1.8,0.9 3.8,1.7 5.7,1.7 1.9,0 3.9,-0.8 5.6,-1.7 1.8,-0.8 4.8,-3.4 4.8,-3.4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river137", attribute "d" "m 824.6,475.2 c 0,0 -0.9,7.5 -0.6,11.2 0.3,3.8 2.2,7.5 2.3,11.2 0.2,3.8 -0.5,8.4 -1.3,11.3 -0.8,2.8 -2.7,3.7 -3.1,5.9 -0.4,2.2 1.2,5.1 0.7,7.2 -0.6,2.1 -4,5.6 -4,5.6 -0.1,-0.1 3.3,-3.5 3.9,-5.6 0.5,-2.2 -1.1,-5 -0.7,-7.2 0.4,-2.2 2.3,-3.2 3,-5.9 0.8,-2.9 1.5,-7.5 1.3,-11.2 -0.1,-3.8 -2.1,-7.5 -2.4,-11.2 -0.3,-3.8 0.6,-11.3 0.6,-11.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river144", attribute "d" "m 1949.3,975.9 c 0,0 -2.4,3.2 -3.8,4.4 -1.5,1.3 -3.5,1.3 -5.1,2.9 -1.6,1.7 -2.9,5.1 -4.7,7.3 -1.9,2.3 -4,3.5 -6.3,6.1 -2.4,2.7 -4.9,6.8 -7.7,9.8 -2.8,3.1 -9.2,8.5 -9.2,8.5 0,-0.1 6.3,-5.5 9.1,-8.6 2.8,-3 5.3,-7.1 7.7,-9.8 2.2,-2.6 4.4,-3.9 6.2,-6.1 1.8,-2.3 3.1,-5.6 4.7,-7.4 1.6,-1.6 3.6,-1.7 5,-2.9 1.5,-1.3 3.7,-4.4 3.7,-4.4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river145", attribute "d" "m 1150.6,736.7 c 0,0 1,4.8 1,7.2 0,2.3 -0.9,5.1 -0.9,7.1 0,1.9 1,3 1,4.6 0,1.5 -1,2.3 -1,4.5 0.1,2.5 1.3,6.7 1.4,10 0.1,3.3 -0.7,10.1 -0.7,10.1 -0.1,0 0.7,-6.8 0.5,-10.1 -0.1,-3.3 -1.3,-7.5 -1.4,-10 0,-2.2 1,-3 1,-4.5 0,-1.6 -1,-2.7 -1.1,-4.6 0,-2 0.9,-4.8 0.9,-7.1 0,-2.4 -1.1,-7.1 -1.1,-7.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river146", attribute "d" "m 977.8,842.2 c 0,0 5.5,7.4 7.8,11.3 2.4,4 4.3,8.5 6.2,12.4 1.9,3.8 3.7,7 5,10.7 1.4,3.7 3.2,11.4 3.2,11.4 -0.1,0 -2,-7.7 -3.3,-11.4 -1.4,-3.6 -3.3,-6.8 -5.1,-10.6 -1.9,-3.9 -3.9,-8.4 -6.2,-12.3 -2.4,-4 -7.9,-11.3 -7.9,-11.3", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river148", attribute "d" "m 2104.8,941.1 c 0,0 2.2,5.8 2.8,8.8 0.6,3 0.4,5.8 0.8,9.2 0.4,3.5 1.2,7.6 1.4,11.5 0.1,3.8 -0.6,11.5 -0.6,11.5 -0.2,0 0.5,-7.7 0.4,-11.5 -0.2,-3.9 -1.1,-8 -1.5,-11.5 -0.4,-3.4 -0.2,-6.2 -0.8,-9.1 -0.6,-3 -2.8,-8.8 -2.8,-8.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river149", attribute "d" "m 1420.7,56.2 c 0,0 1.6,4.8 1.9,7.3 0.3,2.5 0.4,5.4 0,7.5 -0.4,2 -1.2,3.5 -2.3,4.9 -1,1.4 -3.9,3.7 -3.9,3.7 -0.1,-0.1 2.8,-2.4 3.8,-3.8 1,-1.4 1.8,-2.8 2.2,-4.8 0.4,-2.1 0.3,-5 0,-7.5 -0.4,-2.4 -2,-7.2 -2,-7.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river150", attribute "d" "m 125.1,266.5 c 0,0 0.1,-4.5 0.7,-6.6 0.5,-2.1 2.2,-4.2 2.5,-6.1 0.3,-1.9 -0.9,-3.4 -0.8,-5.1 0.1,-1.7 1.2,-5.1 1.2,-5.1 0.2,0 -1,3.4 -1,5.1 -0.1,1.7 1.1,3.3 0.8,5.1 -0.3,1.9 -2,4 -2.5,6.2 -0.5,2.1 -0.6,6.6 -0.6,6.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river151", attribute "d" "m 855.1,1034.6 c 0,0 -5.5,-1.2 -8.1,-2.3 -2.6,-1 -5.3,-2.4 -7.5,-4 -2.1,-1.7 -3.8,-3.7 -5.3,-5.9 -1.5,-2.1 -3.8,-6.9 -3.8,-6.9 0.2,-0.1 2.4,4.7 3.9,6.9 1.5,2.1 3.2,4.1 5.4,5.7 2.1,1.7 4.8,3 7.4,4 2.6,1.1 8.1,2.2 8.1,2.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river152", attribute "d" "m 1074.7,774.7 c 0,0 5.1,1.6 7.4,2.9 2.4,1.3 4.7,3.9 6.5,4.6 1.7,0.7 2.7,-0.4 4,-0.1 1.3,0.3 3.6,1.8 3.6,1.8 -0.1,0.1 -2.4,-1.4 -3.6,-1.7 -1.3,-0.2 -2.4,0.8 -4.1,0.2 -1.8,-0.7 -4.1,-3.4 -6.4,-4.6 -2.4,-1.3 -7.4,-2.9 -7.4,-2.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river153", attribute "d" "m 767,836.6 c 0,0 -4.9,0.2 -7.3,-0.3 -2.3,-0.4 -5.4,-0.5 -6.9,-2.2 -1.6,-1.8 -1.9,-5.6 -2.3,-8.4 -0.4,-2.8 -0.3,-8.7 -0.3,-8.7 0.1,0 0,5.8 0.4,8.7 0.5,2.8 0.8,6.5 2.3,8.3 1.6,1.7 4.5,1.8 6.9,2.2 2.3,0.4 7.2,0.2 7.2,0.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river154", attribute "d" "m 970.5,1080.9 c 0,0 -4.7,2.8 -7.2,3.8 -2.6,1 -6.7,0.4 -7.9,1.9 -1.3,1.5 0.5,4.7 0.2,7 -0.2,2.3 -1.7,6.8 -1.7,6.8 -0.1,0 1.4,-4.5 1.6,-6.8 0.2,-2.3 -1.5,-5.6 -0.3,-7.1 1.3,-1.5 5.5,-1 8,-2 2.5,-1 7.2,-3.8 7.2,-3.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river155", attribute "d" "m 2343.6,622.5 c 0,0 4.9,-4.8 7.6,-6.7 2.7,-2 7.3,-3 8.6,-5.1 1.3,-2 -0.7,-4.8 -0.5,-7.2 0.1,-2.4 1.4,-7.1 1.4,-7.1 0.2,0 -1.1,4.7 -1.2,7.1 -0.1,2.4 1.9,5.3 0.6,7.3 -1.3,2.2 -6,3.2 -8.8,5.2 -2.7,2 -7.5,6.7 -7.5,6.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river156", attribute "d" "m 827.2,455.8 c 0,0 -5,-0.9 -7.4,-1.8 -2.4,-0.9 -5.1,-2.2 -6.8,-3.7 -1.7,-1.5 -2.5,-3.4 -3.2,-5.3 -0.8,-1.9 -1.4,-6 -1.4,-6 0.2,-0.1 0.9,4.1 1.6,5.9 0.8,1.9 1.6,3.7 3.2,5.2 1.7,1.5 4.4,2.7 6.7,3.6 2.4,0.8 7.4,1.7 7.4,1.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river157", attribute "d" "m 390.7,1010.7 c 0,0 2.3,-4.7 3.9,-6.7 1.5,-2.1 4.5,-2.6 5.4,-5.6 1,-3.2 -0.4,-8.9 -0.2,-13.3 0.3,-4.4 1.8,-13.2 1.8,-13.2 0.2,0.1 -1.4,8.8 -1.6,13.2 -0.3,4.4 1.1,10.1 0.2,13.3 -0.9,3 -3.9,3.6 -5.5,5.7 -1.5,2 -3.8,6.8 -3.8,6.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river182", attribute "d" "m 910.1,524.1 c 0,0 1.5,7.7 1.8,11.6 0.3,3.9 -1.1,8.9 -0.2,11.8 0.9,2.7 3.8,3.2 5.3,5.2 1.5,1.9 3.7,6.5 3.7,6.5 -0.2,0.1 -2.4,-4.4 -3.9,-6.3 -1.5,-2 -4.5,-2.6 -5.4,-5.3 -0.9,-2.9 0.4,-7.9 0.2,-11.8 -0.3,-3.9 -1.9,-11.7 -1.9,-11.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river197", attribute "d" "m 617.2,37.4 c 0,0 2,4.7 2.5,7.2 0.5,2.5 -0.4,5.5 0.5,7.6 0.9,2 3.6,2.9 5,4.7 1.4,1.8 3.4,6 3.4,6 -0.1,0.1 -2.1,-4.1 -3.5,-5.9 -1.5,-1.8 -4.1,-2.7 -5.1,-4.7 -0.9,-2.1 0,-5.2 -0.5,-7.7 -0.6,-2.4 -2.5,-7.2 -2.5,-7.2", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river198", attribute "d" "m 1029.9,814.1 c 0,0 3.3,4.8 4.5,7.4 1.2,2.6 1.3,7 2.6,8.2 1.2,1.1 3.2,-1 4.9,-1 1.6,0.1 4.9,1.1 4.9,1.1 0,0.2 -3.3,-0.8 -4.9,-0.8 -1.7,0 -3.8,2 -5.1,0.9 -1.4,-1.2 -1.5,-5.6 -2.7,-8.2 -1.2,-2.6 -4.5,-7.4 -4.5,-7.4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river201", attribute "d" "m 0,916 c 0,0 8.8,-1.7 9.9,0.1 1.2,1.7 -1.7,7.1 -3,10.4 -1.3,3.4 -4.9,9.7 -4.9,9.7 -0.1,-0.1 3.4,-6.4 4.7,-9.7 1.3,-3.3 4.2,-8.6 3,-10.3 -1.1,-1.7 -9.7,0.1 -9.7,0.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river215", attribute "d" "m 959.1,102.5 c 0,0 5.8,4.1 8.3,6.4 2.6,2.4 6.4,5.8 7.1,8 0.6,2 -1.5,3.6 -2.6,5 -1.1,1.5 -4.2,3.8 -4.2,3.8 -0.1,-0.1 3,-2.4 4.1,-3.9 1.1,-1.4 3.1,-2.8 2.5,-4.9 -0.7,-2.1 -4.5,-5.4 -7,-7.8 -2.6,-2.3 -8.4,-6.4 -8.4,-6.4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river216", attribute "d" "m 929.4,923.6 c 0,0 6.6,-1.5 10,-1.7 3.3,-0.3 7,1.2 10.1,0.2 3.1,-1 5.5,-4.6 8.5,-6.4 3,-1.9 9.6,-4.8 9.6,-4.8 0,0.2 -6.5,3 -9.5,4.9 -3,1.9 -5.4,5.4 -8.6,6.5 -3.1,1 -6.8,-0.5 -10.1,-0.2 -3.4,0.2 -10,1.7 -10,1.7", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river217", attribute "d" "m 855.6,54.2 c 0,0 3.2,3.8 4.4,5.9 1.2,2.1 2,4.9 2.7,6.9 0.7,1.9 1.4,3.3 1.6,5 0.3,1.7 -0.3,5.2 -0.3,5.2 -0.1,0 0.4,-3.5 0.2,-5.2 -0.3,-1.7 -1,-3 -1.7,-5 -0.7,-1.9 -1.5,-4.7 -2.7,-6.8 -1.2,-2.1 -4.4,-5.8 -4.4,-5.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river227", attribute "d" "m 855,1034.5 c 0,0 -2.3,-5.5 -3,-8.4 -0.7,-2.9 0,-7.3 -1.2,-8.8 -1.1,-1.5 -3.7,-0.2 -5.4,-0.7 -1.7,-0.6 -4.8,-2.7 -4.8,-2.7 0.1,-0.1 3.2,2 4.9,2.5 1.7,0.6 4.4,-0.8 5.5,0.7 1.2,1.6 0.5,6.1 1.2,8.9 0.7,2.9 3.1,8.4 3.1,8.4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river228", attribute "d" "m 1823.8,109.4 c 0,0 -4.1,2.4 -6.3,3.1 -2.1,0.7 -4.9,1.3 -6.8,1.2 -1.9,-0.1 -3.3,-0.9 -4.6,-1.8 -1.4,-0.9 -3.5,-3.5 -3.5,-3.5 0.1,-0.1 2.2,2.5 3.6,3.3 1.3,0.9 2.7,1.7 4.5,1.8 1.9,0.1 4.6,-0.5 6.8,-1.2 2.1,-0.7 6.1,-3.1 6.1,-3.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river229", attribute "d" "m 362,288.4 c 0,0 -2.1,5.8 -3.5,8.5 -1.5,2.7 -4.2,5.6 -5.3,7.6 -0.9,1.7 -0.4,2.7 -1.1,3.8 -0.7,1.1 -2.9,2.8 -2.9,2.8 0,0 2.1,-1.8 2.7,-2.9 0.7,-1.1 0.1,-2.1 1.1,-3.9 1,-1.9 3.7,-4.9 5.2,-7.5 1.4,-2.7 3.5,-8.6 3.5,-8.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river264", attribute "d" "m 1911,812.1 c 0,0 0.8,-2.3 0.6,-3.5 -0.2,-1.2 -1.7,-2.5 -1.8,-3.7 -0.1,-1.3 0.9,-2.5 1.3,-3.8 0.3,-1.3 0.8,-2.7 0.6,-4.1 -0.2,-1.4 -1.8,-2.7 -2,-4.2 -0.1,-1.4 1.2,-2.6 1.3,-4.2 0.2,-1.7 0.2,-4 -0.5,-5.8 -0.6,-1.9 -2.8,-3.4 -3.3,-5.3 -0.6,-1.9 0.9,-4.9 0.2,-6 -0.6,-1.1 -3.1,0 -4,-0.7 -1,-0.8 -1.6,-3.9 -1.6,-3.9 0.1,0 0.8,3 1.7,3.7 0.9,0.8 3.4,-0.3 4.1,0.7 0.7,1.2 -0.7,4.2 -0.2,6.1 0.6,1.9 2.8,3.4 3.4,5.3 0.7,1.8 0.7,4.2 0.6,5.9 -0.1,1.7 -1.4,2.8 -1.2,4.2 0.1,1.4 1.8,2.7 2.1,4.1 0.2,1.5 -0.3,3.1 -0.6,4.4 -0.2,1.3 -1.3,2.3 -1.2,3.5 0.1,1.2 1.6,2.4 1.8,3.7 0.2,1.2 -0.6,3.8 -0.6,3.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river265", attribute "d" "m 236.8,287.1 c 0,0 -7.2,1.5 -10.8,1.7 -3.7,0.3 -8.4,0.6 -11,-0.2 -2.5,-0.7 -3.4,-2.3 -4.8,-3.8 -1.3,-1.4 -3.1,-5 -3.1,-5 0.1,-0.1 2,3.5 3.3,4.9 1.3,1.5 2.2,3 4.6,3.7 2.6,0.7 7.3,0.4 11,0.1 3.6,-0.2 10.8,-1.8 10.8,-1.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river290", attribute "d" "m 2219.7,912.4 c 0,0 -0.9,5.5 -1.7,8.1 -0.9,2.6 -3.7,5.1 -3.5,7.5 0.2,2.4 3.4,4.6 4.6,7.1 1.3,2.6 0.5,5.7 2.9,8.1 2.4,2.5 8.1,4.1 11.9,6.6 3.8,2.5 10.9,8.3 10.9,8.3 -0.1,0.1 -7.2,-5.7 -11,-8.1 -3.8,-2.5 -9.5,-4.1 -12,-6.6 -2.4,-2.4 -1.7,-5.5 -3,-8.1 -1.3,-2.6 -4.5,-4.8 -4.7,-7.3 -0.2,-2.5 2.6,-5 3.4,-7.6 0.9,-2.6 1.6,-8.1 1.6,-8.1", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river291", attribute "d" "m 1644.6,980.4 c 0,0 -0.3,6.7 -0.9,9.9 -0.6,3.2 -2.1,6.9 -2.7,9.5 -0.5,2.5 -0.1,4.1 -0.6,6.1 -0.5,1.9 -1.1,3.4 -2.5,5.6 -1.5,2.2 -4.1,5.4 -6.5,7.7 -2.4,2.4 -7.9,6.4 -7.9,6.4 -0.1,-0.1 5.4,-4.1 7.8,-6.5 2.4,-2.3 5,-5.5 6.5,-7.7 1.4,-2.2 1.9,-3.6 2.4,-5.6 0.5,-1.9 0.1,-3.5 0.6,-6 0.5,-2.7 2.1,-6.3 2.7,-9.6 0.5,-3.2 0.7,-9.8 0.7,-9.8", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river292", attribute "d" "m 1984.9,986.2 c 0,0 -1.1,2.8 -2.1,4 -0.9,1.1 -2.7,0.6 -3.6,2.6 -1,2.2 -1,7.2 -1.9,10.7 -1,3.5 -3.9,10.1 -3.9,10.1 -0.2,0 2.7,-6.7 3.7,-10.2 0.9,-3.4 0.9,-8.4 1.9,-10.7 0.9,-2 2.7,-1.6 3.6,-2.7 1,-1.1 2.1,-4 2.1,-4", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river293", attribute "d" "m 2026.1,987 c 0,0 4.4,4.4 6.2,6.9 1.8,2.5 3.3,5.8 4.6,8 1.2,2.2 2.3,3.3 3,5.1 0.6,1.9 1,5.9 1,5.9 -0.1,0 -0.5,-4 -1.2,-5.8 -0.7,-1.8 -1.7,-3 -3,-5.1 -1.2,-2.2 -2.8,-5.5 -4.6,-8 -1.8,-2.5 -6.2,-6.9 -6.2,-6.9", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river294", attribute "d" "m 1339.5,1013 c 0,0 3.7,5 5.1,7.7 1.4,2.7 2.1,6.4 3.4,8.6 1.2,2 3.1,2.6 4.3,4.3 1.2,1.6 2.8,5.5 2.8,5.5 -0.1,0 -1.7,-3.8 -2.9,-5.4 -1.2,-1.7 -3.1,-2.3 -4.4,-4.4 -1.3,-2.1 -1.9,-5.8 -3.4,-8.5 -1.4,-2.7 -5.1,-7.6 -5.1,-7.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) [], Svg.node "path" ([attribute "id" "river309", attribute "d" "m 1677.2,1174 c 0,0 -0.1,-5.2 0,-7.6 0.2,-2.5 1.3,-4.8 1,-7.2 -0.3,-2.4 -2.9,-4.8 -3,-7.2 -0.2,-2.4 1.9,-7.2 1.9,-7.2 0,0 -2.1,4.8 -1.9,7.2 0.2,2.4 2.7,4.8 3.1,7.2 0.3,2.4 -0.8,4.7 -1,7.2 -0.1,2.5 0.1,7.6 0.1,7.6", attribute "style" "fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1"]) []], Svg.node "g" ([attribute "id" "coastline", attribute "style" "display:inline;fill:none;stroke-linejoin:round;shape-rendering:geometricPrecision", attribute "transform" "matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)"]) [ Svg.node "g" ([attribute "id" "sea_island", attribute "auto-filter" "1", attribute "style" "display:inline;opacity:0.5;fill:none;stroke:#1f3846;stroke-width:0.69999999;stroke-linejoin:round;filter:url(#dropShadow)"]) [ Svg.node "path" ([attribute "d" "m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2", attribute "id" "island_2", attribute "data-f" "2", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9", attribute "id" "island_3", attribute "data-f" "3", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2", attribute "id" "island_4", attribute "data-f" "4", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3", attribute "id" "island_6", attribute "data-f" "6", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6", attribute "id" "island_15", attribute "data-f" "15", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5", attribute "id" "island_19", attribute "data-f" "19", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5", attribute "id" "island_20", attribute "data-f" "20", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0", attribute "id" "island_29", attribute "data-f" "29", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5", attribute "id" "island_31", attribute "data-f" "31", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5", attribute "id" "island_32", attribute "data-f" "32", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7", attribute "id" "island_33", attribute "data-f" "33", attribute "inkscape:connector-curvature" "0"]) [], Svg.node "path" ([attribute "d" "m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9", attribute "id" "island_34", attribute "data-f" "34", attribute "inkscape:connector-curvature" "0"]) []]], Svg.node "g" ([attribute "id" "ice", attribute "style" "display:inline;shape-rendering:geometricPrecision;-webkit-filter:url(#dropShadow05)", attribute "transform" "matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)", attribute "filter" "url(#dropShadow05)", attribute "stroke-width" "3", attribute "stroke" "#e8f0f6", attribute "fill" "#e8f0f6", attribute "opacity" "0.35"]) [ Svg.node "path" ([attribute "id" "polygon392", attribute "class" "", attribute "d" "M 117,-17 103.36328,-2.3886719 86.910156,-12.443359 87,-13 84,-16 61.945312,-1.6152344 51.958984,-7.4414062 52,-8 51,-9 38.244141,-2.1308594 16,-6 H 15 L 15.05273,-4.8417969 -2,-2 -13,18 -9,22 16.132812,16.199219 18,19 31,22 38.611328,6.7773438 49,20 l -9,7 2,4 4,3 17,-2 1,-1 L 66,21 55.351562,19.667969 68,21 70.083984,18.916016 82,18 82.117188,17.279297 85,18 h 9 l 5,5 22,-5 v -5 l 5.65234,-4.7109375 16.5293,7.3476565 L 143,16 v 4 l 6,8 12,-6 5.38477,-9.871094 L 184,18 188,14 187.9883,13.91797 198,13.083984 V 14 h 14 l 8,6 1,-0.888672 V 22 l 8,12 h 2 L 240,13 234.48242,12.498047 241,13 245.16602,12.166016 250,17 268.53125,9.1972656 272,17 272.93359,17.220703 270,27 l 15,5 3,-6 -1,-5 -9.33398,-2.666016 L 289,21 290,17 289.75586,16.59375 301.75391,10.132812 307,18 321.29492,11.328125 329.39844,20.332031 310,31 v 1 l 12,10 9,-7 2,-13 v -0.25 l 1,0.25 1,-1 -0.0703,-1.888672 L 355.13672,-0.17578125 357,11 l 12,19 4,-2 0.19336,-0.962891 L 389,30 h 1 L 389.00391,13.066406 390,13 393,9 394.44531,8.2773438 402,13 408.99219,10.503906 403,13 l 1,14 15,-4 1,-6 14.40039,-4.800781 L 440,15 447.67773,9.2421875 453,19 468.91406,12.447266 469,13 l 1,3 16,6 12,-5 1,-2 2,-2 0.10938,-0.283203 L 517,23 l 8.83008,-3.923828 9.1543,0.832031 L 535,20 v 1 L 548.16406,20.123047 552,23 574,18 v -1 l -0.0566,-0.09375 8.14844,-0.814453 L 584,18 600,18.941406 V 19 l 5,7 L 617.9707,14.882812 618,15 l 6,4 0.95703,0.136719 L 621,32 l 14,-1 -2,-7 19,-6 15,8 h 2 l 8.35742,-13 H 681 l 9.4375,-2.832031 11.6875,4.496093 L 702,15 l 3,5 h 1 l -3,8 21,11 4,-5 -13,-14 h -1 l 11.69141,-8.769531 7.51367,2.503906 L 733,14 l 4,8 20,-2 1,-1 -0.0352,-0.138672 L 764,18 l 11.65234,-8.7382812 0.0195,0.00781 L 765,18 l 12,13 6,-1 6,-12 -1,-3 -7.99609,-3.998047 9.16211,3.664063 L 789,15 l 1,3 8,3 18,-3 5,-3 0.0391,-0.320312 11.56446,-3.558594 L 839,23 849.26758,21.132812 855,24 870,12 870.70117,9.1914062 891.06641,14.746094 891,15 l 1,3 12.56641,-3.867188 0.0644,0.01563 L 895,18 913,29 h 1 L 918,18 908.24414,14.998047 921,18 921.78516,17.607422 922,18 936.40039,14.400391 941,19 954.125,18.0625 960,21 l 8,1 5,-5 -0.0293,-0.07031 12.06446,-0.861329 L 986,18 1005.1309,15.130859 1008,18 1018.084,17.083984 1020,19 1030.666,18.333984 1022,19 l 3,9 1,2 h 13 L 1035.0195,18.060547 1036,18 1037.7266,11.097656 1052,13 1056.6406,8.359375 1072,17 l 4,-4 -0.062,-0.275391 15.2441,-4.4843746 L 1094,12 1095.0039,12.04492 1096,27 l 3,3 10,-3 9,-11 7,3 h 1 v 15 l 11,3 5,-4 -4,-14 h 1 l 8,-7 14,6 8.5176,-6.625 L 1180,19 l 7,-2 0.01,-0.130859 L 1209,14 l 0.5996,-1.199219 14.8848,7.441407 L 1224,21 l 2,1 19,-9 1.6328,-4.0800781 0.252,0.3671875 L 1245,14 l 1,14 v 1 h 7 l 3,-6 -4.502,-7.003906 L 1257,24 1264.4961,14.628906 1265,15 1271.2227,13.222656 1274,16 h 15 l 2,2 0.9883,0.06641 L 1290,29 l 9,3 5,-13 -8,-0.666016 L 1306,19 1310.1953,15.644531 1322,22 l 11,-7 h 2 l 13,7 5.5996,-3.732422 L 1362,22 h 8 L 1372.9043,4.5761719 1393.2148,17.5 1393,18 v 1 l 17,4 11.5,-7.666016 L 1424,17 l 21,1 1,-1 h 2 l 18,6 9,-10 0.7383,-1.478516 L 1492,23 h 3 l 0.2734,-0.544922 L 1498,27 l 15,1 5,-9 10,3 L 1540.4004,9.5996094 1544,15 1553.166,18.666016 1553,19 1553.5938,18.837891 1554,19 l 0.1406,-0.310547 19.6367,-5.355469 L 1574,14 l 2,4 14,4 7.8789,-8.865234 L 1610,15 l 6,-5 0.1152,-0.2773438 L 1632,20 l -1,8 3,3 h 3 l 12,-6 1,-4 -6,-9 -8,2 8.6152,-2.871094 L 1650,21 1659.0117,18.496094 1651,21 l -1,4 7,8 12,-11 -1,-5 15.2969,-5.736328 L 1692,19 1703.2949,16.175781 1708,19 l 2,-1 0.4199,-0.677734 L 1731,22 1734.7148,19.214844 1744,22 l 9.8008,-7.839844 0.016,0.0039 L 1745,22 l 3,12 11,3 10,-5 v -1 l -11,-16 11.5762,-6.7539062 0.022,0.00977 L 1759,15 l 11,16 1,-1 6.8398,-11.724609 L 1778,19 1778.9434,19.105469 1773,30 l 19,3 2,-3 V 21 L 1784,19.666016 1796,21 v 9 l 16,7 6,-4 v -3 l -4,-12 -7,-4 -7,1 6.3145,-1.804688 L 1814,18 1832.3457,8.3457031 1840,16 l 2,5 2,3 1,1 20,-8 -0.033,-0.322266 15.9609,-5.320312 L 1881,12 l 3,5 13,1 4.9434,-5.931641 L 1915,13 l 2,-1 V 11.9375 L 1931.0801,11.056641 1938,16 h 4 l 6,5 14,-3 3.7656,-1.882812 L 1978,18 l 0.7734,-0.773438 15.293,4.498047 L 1994,22 l 1,2 h 2 L 2012.916,13.701172 2013,14 l 6,7 8,-1 4.7676,-2.861328 L 2042,19 2042.3125,18.445312 2049,28 l 9,1 0.8242,-2.470703 L 2059,27 2066.918,17.101562 2084,19 v -0.460938 l 11.1035,5.978516 L 2095,25 v 1 l 12,-4 7.6211,-8.574219 L 2130,24 l 7,-6 -0.061,-0.1875 8.291,-1.658203 L 2151,20 h 13 l 0.8828,-0.882812 L 2179,21 2183.834,14.232422 2201,19 l 3,-2 h 10 l 4,-4 -0.01,-0.08984 L 2228,12 l 9,8 15,-2 1,-3 -0.1875,-0.324219 3.7637,-1.505859 L 2273,18 2279.7695,14.615234 2284,18 2298.1426,16.115234 2303,20 2316.8691,10.753906 2317,11 l 7,4 h 3 l 7,-3 0.096,-0.177734 L 2349,23 2356,13 2365.2598,9.296875 2372,17 l 4,-2 17.0527,4.421875 L 2378,16 l -3,1 v 4 l 17,7 6,-2 1.9199,-4.798828 L 2403,22 l 4,-4 -8,-18 -5,-2 -10,-11 -18.4863,9.7304688 L 2348,-13 2340.2285,-5.2285156 2314,-13 l -5,9 0.07,0.1328125 -5.293,0.7558594 L 2304,-4 l -24,-3 -0.055,1.140625 -13.1562,1.7539062 L 2247,-14 2241.0996,-6.1328125 2216.0137,-9.8496094 2216,-10 l -2,-3 -20.7539,8.4902344 L 2193,-5 2181,-7 2166.4141,-2.1386719 2150.9492,-5.7773438 2151,-6 l -4,-5 -17.8691,6.9492188 -15.127,-0.890625 L 2114,-5 2113,-6 2101.1738,-3.0429688 2084,-3.9472656 V -5 l -5,-3 -16.8184,6.9257812 -9.2168,-0.8378906 L 2053,-2 2046,-9 2030.3477,-3.1308594 2011,-7 l -2,2 -9,2 -0.2227,0.9277344 -14.7949,-0.8691406 L 1985,-3 l -8,-8 -17.7559,7.8925781 -5.3164,-0.7597656 L 1954,-4 l -10,-11 -10,7 h -17 l -7,-7 -15.8457,10.8945312 L 1879,-6 l -2,-2 -15,6 h -1 L 1842,-17 1830.1699,-3.1972656 1810.957,-7.7714844 1811,-8 l -3,-5 -20.3477,7.7519531 L 1774,-15 l -7,6 0.022,0.1855469 -19.2559,3.6679687 L 1740,-10 l -10,7 h -7 l -17,-13 -8,9 0.025,0.1152344 -15.1816,1.7851562 L 1672,-12 1659,-2 h -9 L 1639,-13 1620.6094,-2.3535156 1620,-3 1619.9414,-2.859375 1605,-15 1593.1543,-4.140625 1570,-8 l -2,4 0.1055,0.3164062 L 1564,-3 1538,-6 1525.623,-3.1445312 1505.9668,-10.630859 1506,-11 l -2,-3 -26,12 h -1 l -6,-7 -27.1699,4.8515625 L 1436,-11 1423.3965,-5.1835938 1401,-12 l -3,5 0.01,0.0625 L 1367,-5 l 0.2637,0.4746094 -8.7403,2.3828125 L 1349,-5 1348.5488,-4.3554688 1335,-15 l -10,9 0.066,0.1972656 -16.9394,3.5664063 L 1308,-3 l -7,-5 -6,2 -0.3066,1.125 -18.7813,1.7871094 L 1267,-12 1245.3535,-1.6464844 1245,-2 l -5,-2 -0.3906,0.609375 L 1233,-10 1208.4863,-2.4570312 1200,-10 1187.1133,-4.0527344 1171.9922,-4.9414062 1172,-5 l -1,-2 -4,-6 -26.3008,8.7675781 L 1132,-11 1124.2227,-5.1660156 1097,-11 l -1,2 -1.9258,1.9257812 -23.0566,-1.84375 L 1071,-9 l -7,-5 -8.9629,8.9628906 L 1030,-6 1029.3594,-5.359375 1029,-6 l -3,1 -0.3008,0.8300781 L 1001,-6 1001.1055,-5.4472656 996,-8 l -7.80273,4.8769531 -24.25,-3.7304687 L 964,-7 V -8 -9 L 941.57617,-2.4589844 930,-15 910,-4 897.92578,-7.7148438 898,-8 896,-11 867.70703,-3.1953125 862,-7 847.21484,-2.0722656 837.96875,-2.9121094 838,-3 l -10,-9 -5,3 -0.043,0.3476562 -16.5293,5.5097657 -6.53906,-1.6347657 L 800,-5 794,-14 771.56055,-5.21875 760,-11 752.04688,-4.8144531 752,-5 747,-4 746.73633,-3.6601562 725,-15 l -6.55078,8.4238281 -8.7793,2.3925781 L 692,-14 v 1 l -0.0391,0.439453 L 667.41406,-2.1757812 658,-5 652,-1.5722656 V -2 H 642 L 641.57617,-1.2246094 625,-10 614.07617,-1.0625 601,-1.9335938 V -2 l -10,-5 -0.39648,1.0136719 -30.00586,0.9667969 L 560,-6 l -4,-1 -2,2 -0.24023,1 H 532 l -9,-4 -6,4 -11.27539,3.7578125 L 490,-14 471,-1 467.68555,-0.171875 457,-6 h -1 -24 l -10,-5 -5.95312,5.953125 L 397.99023,-5.9511719 398,-6 389,-15 371,-3 369.125,-1.125 357.75,-2.75 358,-3 355,-6 h -21 l -14,-5 -4,5 0.10547,0.3554688 -13.41797,2.515625 L 286,-10 278,-3 273.58789,-1.234375 253,-13 247.03906,-7.0390625 225.19922,-7.9492188 225,-9 l -5,-5 -7,4 -0.0527,1.2871094 L 203.57422,-6.15625 185,-13 l -2,1 0.0586,0.376953 -23.64257,9.4570314 -4.6875,-1.3398438 L 155,-4 l -3,-3 -21.0957,1.9179688 z m 2167,35 -4,-3 -7,3 -4,15 13,3 5,-4 z m -133,2 -6,-3 -8,1 -6,6 v 3 l 5,5 12,-1 z m -420,2 -3,12 6,4 h 9 l 4,-4 -4,-12 -8,-2 z m -187,-7 -4,-4 -10,10 4,7 h 5 z m -450,-3 -3,-3 -15,4 -3,4 v 7 l 2,4 20,-1 z m -296,9 -7,-2 -6,12 4,7 13,-6 z m -174,-2 -6,-3 -11,10 v 1 l 1,1 9,9 3,-5 z m -24,0 h -14 l 3,11 15,-4 v -1 z m -198,-6 -7,-4 -2,1 -2,3 v 16 l 8,1 4,-4 z m -130,4 -4,-7 -16,7 3,11 5,3 9,-4 z M 99,23 94,19 h -8 v 19 l 9,4 5,-3 1,-5 z M 2050.4004,4.0664062 2050.8379,5.234375 2045,13.666016 Z M 1374,8 l -2,13 5,6 12,-6 1,-3 V 17 Z M 39,9 33,21 v 1 l 7,4 7,-7 z m 89,0 -5,4 v 5 l 2,6 17,-5 v -3 z m 1704,0 -16,9 3,12 22,-9 -2,-5 z m -775,1 -4,4 -2,14 h 2 l 16,-4 v -7 z m 719.1855,0.832031 0.8165,3.673828 L 1776,11 Z M 448,11 l -6,5 1,9 6,2 2,-2 1,-6 z m 243,0 -8,3 5,13 12,1 1,-1 3,-7 -3,-5 z m 182,0 -1,3 5,14 9,-2 3,-8 v -2 z m 743,0 -5,4 5,14 13,-2 1,-8 z m 748,0 -8,3 -5,8 v 4 l 4,3 8,1 3,-1 4,-8 v -4 z m -2044,1 -11,6 v 9 l 1,2 18,-9 z m 512,0 -10,3 -3,3 3,9 h 12 l 4,-5 z m 207,0 -2,5 4,12 3,1 4,-3 2,-14 z m 892,0 -13,1 -1,1 1,12 12,4 6,-14 z m -826,0.5 11,0.5 1.1562,0.578125 L 1117,14 l -2,-1 z m -671,0.5 -12,4 -1,6 7,8 h 4 l 8,-5 -1,-11 z m 292,0 -9,7 11,12 4,-2 3,-8 -3,-7 z m 444,0 -7,6 v 6 l 9,8 4,-1 3,-13 z m 340.502,0 6.6035,1.761719 L 1517,15 Z m 172.498,0 -12,5 1,4 9,11 2,-1 7,-13 z m 197,0 -14,4 8,11 1,1 2,-2 6,-10 z M 382.5332,13.498047 376,14 l -1.50195,6.505859 1.3125,-6.560547 z M 869,14 l -11,10 2,6 12,2 3,-3 z m 375,0 -15,7 2,5 14,1 z m 27,0 -6,2 -7,8 -3,6 6,6 15,-6 -2,-13 z m 205,0 v 2 l 4,16 9,-9 z m 97,0 -18,5 1,9 11,1 8,-11 z m 330,0 -4,5 1,10 3,4 h 4 l 7,-7 -2,-11 z m 355,0 -4,2 -1,2 3,15 8,1 3,-2 4,-14 z m 76,0 -5,2 6,14 12,-3 -1,-4 z m -2136,1 -9,1 -3,3 -1,12 17,-2 -4,-13 z m 268,0 -11,4 -1,6 h 9 l 4,-8 z m 36,0 -1,2 -1,2 3,13 13,3 V 23 Z m 703,0 -17,3 8,15 h 4 z m 807,0 -13,8 5,7 h 9 l 4,-9 z m 103,0 -7,7 11,10 8,-6 v -2 z m -1914,1 3,12 3,2 10,-8 v -2 l -6,-4 z m 803,0 -15,2 2,13 12,-5 4,-8 z m 329,0 -8,6 v 4 l 7,7 11,-4 3,-3 v -4 l -10,-6 z m -397,1 -12,2 -1,1 -4,10 8,6 12,-7 v -8 z m 374,0 -4,3 -5,13 3,3 5,4 12,-14 v -3 z m 111,0 -10,7 2,8 8,4 1,-2 1,-15 z m 124,0 -4,10 9,3 3,-3 -1,-7 z m 421,0 -3,2 1,10 6,4 5,-3 1,-11 z m 332,0 -11,2 3,11 h 1 l 11,-5 V 20 Z M 14,18 -5,22 0,33 12,28 16,20 Z m 457,0 -4,10 4,9 10,-1 3,-13 z m 111,0 -8,1 v 1 l -1,10 v 1 l 11,4 2,-4 -3,-11 z m 392,0 -4,4 4,11 13,-1 -2,-13 -1,-1 z m 44,0 -9,1 -3,8 4,5 12,-3 -2,-9 z m 101,0 -8,10 8,10 6,-4 V 21 Z m 68,0 -6,1 -2,14 7,3 10,-2 z m 524,0 -1,1 2,14 3,5 12,-4 3,-12 z m 174,0 -5,11 17,1 -2,-11 z m 54,0 -6,13 1,4 12,7 v -1 l 3,-8 -2,-11 -5,-4 z m 93,0 -4,3 4,10 9,2 5,-4 -5,-9 z m 36,0 -6,8 -1,3 3,3 8,-1 9,-12 z m -1986,1 -10,1 -2,3 -1,9 12,6 4,-1 V 20 Z m 37,0 -17,4 3,10 16,-6 v -1 z m 646,0 -6,1 -1,1 v 6 l 9,11 9,-7 z m 50,0 -16,2 4,10 7,7 7,-4 2,-6 -3,-9 z m 611,0 -1,15 11,1 5,-6 v -9 z m 438,0 -15,6 11,9 11,-4 z m 97,0 -11,2 2,12 11,-4 z m 19,0 v 1 l -1,11 6,5 9,-11 -1,-2 z m 103,0 v 1 l -10,12 9,6 h 10 l 2,-2 V 26 25 Z m 121,0 -3,1 -5,9 2,14 h 3 l 13,-20 -2,-4 z M 627.49805,19.5 630.07227,19.867188 630,20 Z M 496,20 l -9,4 -3,12 2,2 11,-2 2,-3 z m 29,0 -6,4 v 10 l 11,-2 3,-10 v -1 z m 125,0 -14,4 1,7 2,4 9,-2 3,-13 z m 244,0 -3,8 1,4 18,2 2,-4 z m 50,0 v 9 l 1,2 9,3 2,-2 3,-10 -5,-2 z m 451,0 -2,4 7,13 h 3 l 8,-5 -2,-8 z m 854,0 -10,1 -5,13 h 1 15 l 2,-1 z m -2229,1 -3,9 4,9 h 4 l 5,-14 -1,-1 z m 1499,0 -3,8 v 4 l 12,5 3,-8 -4,-7 z m 58,0 -7,10 8,8 1,1 9,-5 1,-7 -1,-5 z m 590,0 -1,1 v 4 l 1,4 9,5 4,-9 -3,-4 z m -1619,1 -11,1 -3,10 3,3 h 14 l 1,-4 -2,-8 z m 207,0 -16,1 -3,9 7,5 5,1 7,-11 z m 94,0 -9,2 -3,5 3,8 h 13 l 3,-5 -2,-7 z m 112,0 -3,10 13,2 -4,-11 z m -800,1 -9,5 v 2 l 20,4 z m 1679,0 -19,8 v 2 l 8,5 13,-13 z m 267,0 -9,3 v 10 h 18 l 2,-3 z m -1888,1 -10,9 v 8 l 11,1 6,-7 z m 116,0 -1,12 6,5 9,2 5,-7 -8,-8 z m 1880,0 -12,19 7,2 h 2 l 9,-10 z m 160,0 -4,7 10,8 10,-9 z m -884,1 -9,9 -1,1 4,5 9,4 2,-1 V 29 l -3,-4 z m -1459,2 -5,13 3,1 9,-9 -2,-2 z m 1814,0 -2,15 8,8 3,-1 3,-12 z m -1242,1 -15,4 -2,4 1,10 9,1 8,-18 z m 1313,0 -7,9 2,4 4,3 h 8 l 7,-7 -2,-5 z m 245,0 -7,8 1,6 h 2 l 6,-10 z m 21,0 -4,8 2,5 12,1 -2,-12 z m 120,0 -10,5 12,12 h 2 l 1,-13 z m -1930,1 -3,2 -3,2 4,7 10,9 7,-17 z m 315,0 -6,6 16,12 2,-17 z m 381,0 -13,4 10,12 h 1 l 4,-3 V 32 Z m 92,0 -8,6 5,8 7,-1 3,-6 z m 161,0 -9,12 1,3 3,4 h 4 l 8,-5 v -7 z m 69,0 -8,4 v 2 l 2,6 5,3 2,-1 4,-5 z m 258,0 -8,4 9,8 4,-5 -1,-2 z m 669,0 -6,3 -2,14 3,2 12,-3 2,-3 v -1 z m -1901,1 -8,2 -2,2 2,5 3,2 h 5 l 4,-7 z m 25,0 -8,4 11,14 h 7 l -4,-17 z m 315,0 -6,9 3,3 8,4 1,-2 2,-5 z m 336,0 -15,1 v 11 l 10,2 7,-11 z m 257,0 -2,2 3,12 2,1 5,-8 -2,-2 z m 150,0 v 12 l 4,2 3,-1 5,-9 -1,-3 z m 629,0 -8,5 -1,3 2,9 11,-1 2,-2 -1,-10 z M 14,31 0,36 l -2,10 14,3 7,-8 z m 188,0 -15,2 -1,1 4,8 11,2 4,-3 -1,-8 z m 69,0 -6,3 4,8 6,3 4,-2 2,-2 v -7 z m 734,0 -11,4 2,6 11,7 3,-1 -2,-13 z m 104,0 -8,2 7,13 2,1 6,-5 v -3 z m 181,0 -8,2 2,13 1,1 16,-9 -3,-4 z m 246,0 -3,8 2,4 7,1 5,-2 2,-9 -9,-2 z m 20,0 -3,2 -2,10 8,4 7,-15 z m 791,0 -10,3 -3,6 v 1 l 11,1 4,-8 z m -1326,1 -9,2 1,12 5,-2 4,-10 z m 210,0 v 1 l 2,11 4,2 4,-2 2,-10 v -1 z m 46,0 -14,6 1,8 10,3 7,-3 -2,-13 z m 351,0 -10,1 -2,2 -1,5 15,7 1,-13 z m 145,0 -2,1 6,11 12,2 2,-12 z m 190,0 -8,2 -2,7 10,3 4,-9 z m 69,0 -8,8 6,10 h 3 l 5,-2 3,-13 z M 41,33 31,43 l 1,2 11,4 1,-13 z m 113,0 -1,3 3,7 h 7 l 7,-8 z m 100,0 -5,3 5,17 10,-8 -5,-10 z m 55,0 -6,11 5,8 h 4 l 8,-5 v -4 z m 298,0 -6,11 5,2 7,-6 -1,-2 z m 16,0 -2,3 v 2 l 9,3 3,-5 -2,-3 z m 179,0 -11,5 2,6 11,1 4,-7 z m 138,0 -11,5 3,8 5,3 2,-1 2,-14 z m 287,0 -13,7 9,11 7,-7 z m 340,0 -7,15 3,3 12,-9 z m 437,0 -5,12 2,4 4,1 11,-12 -3,-5 z m -1879,1 -14,12 5,7 12,-10 1,-5 z m 436,0 v 3 l 1,3 4,1 h 2 l 2,-7 z m 333,0 1,11 1,1 2,-1 8,-4 1,-5 z m 22,0 -2,3 -2,6 6,8 11,-3 -4,-9 -8,-5 z m 28,0 -1,15 7,1 6,-4 -4,-9 z m 467,0 -6,5 7,8 5,-3 2,-6 z m 638,0 -4,3 -3,11 7,2 9,-9 v -4 l -2,-3 z m -1659,1 -6,14 2,7 13,-13 -2,-7 -6,-1 z m 39,0 -5,12 v 2 l 11,4 8,-4 -11,-14 z m 144,0 -2,7 9,1 v -6 z m 674,0 -2,10 9,6 4,-5 -1,-7 -5,-4 z m 128,0 -13,4 -6,12 2,2 16,-2 5,-6 z m 334,0 -15,4 5,8 12,-1 1,-3 v -3 z m 19,0 -12,5 v 3 l 13,4 4,-8 z m 144,0 -10,4 -2,9 7,3 10,-2 1,-1 -5,-13 z m -746,1 -5,4 v 2 l 11,7 h 3 l 1,-10 z m 17,0 -4,3 -1,10 4,2 9,1 4,-7 -6,-9 z m 372,0 -6,10 16,4 3,-4 -1,-5 z m 283,0 -1,2 -1,6 v 1 l 9,1 1,-2 1,-4 z m 178,0 -3,2 -5,8 2,2 5,3 8,-8 -2,-3 z m 97,0 -7,1 v 3 l 5,8 4,-1 4,-7 z m -1927,1 -14,2 -1,5 9,11 9,-4 2,-4 z m 1032,0 -4,2 -3,6 3,6 h 10 V 40 Z m 591,0 -7,4 v 6 l 3,6 h 4 l 4,-8 z m 501,0 -3,2 3,9 2,2 h 4 l 3,-5 v -5 z m -2040,1 -5,7 1,4 6,7 6,-5 V 40 l -7,-2 z m 274,0 -1,2 2,8 1,1 6,-2 1,-1 v -6 z m 27,0 -9,1 v 7 l 9,3 1,-1 1,-8 z m 118,0 -7,2 -2,6 v 1 l 1,1 14,-3 h 1 l -1,-3 z m 190,0 -1,6 7,9 h 10 l -2,-15 z m 586,0 -1,1 -2,6 6,6 h 6 l 2,-7 v -5 z m 507,0 -7,7 4,9 13,-2 3,-7 z m -1757,1 -7,9 2,3 10,2 3,-8 -4,-6 z m 157,0 -7,5 v 3 l 6,7 7,-10 z m 486,0 -5,3 -4,6 3,4 8,5 h 2 l 2,-10 z m 653,0 -4,4 -1,5 8,2 6,-7 -3,-4 z m 630,0 3,7 11,4 2,-3 -2,-7 z m -512,1 -7,4 1,4 12,4 3,-2 z m 493,0 -6,9 8,2 8,-11 z m 175,0 -1,1 -1,12 11,-3 -3,-10 z m -1514,1 -4,11 2,4 9,-10 -3,-4 z m 658,0 -5,6 8,7 h 3 l 3,-5 -7,-8 z m 333,0 -3,6 2,4 7,1 1,-11 z m 168,0 -10,8 9,5 6,-10 -2,-3 z m -1800,3 -5,2 -2,5 14,11 3,-5 -1,-2 -4,-6 z m 1107,0 -2,8 3,7 9,-2 v -4 l -7,-9 z m 1170,2 -13,6 -2,4 12,5 5,-12 z m -538,1 -6,1 -1,3 1,7 1,1 h 6 l 4,-7 z m 83,0 -6,1 1,12 h 3 l 4,-6 z m 410,0 -1,2 5,10 h 2 l 7,-6 -2,-5 z m -2204,1 -7,6 v 2 l 10,2 3,-3 z m 162,0 -1,2 5,7 1,1 5,-6 -2,-4 z m 1326,0 -2,3 5,4 h 1 l 3,-3 -1,-1 z m 370,0 -9,8 3,6 1,2 7,-1 6,-11 -2,-2 z m -1776,1 -2,2 v 6 h 1 l 7,-5 -1,-2 z m 697,0 -5,3 7,7 2,-1 v -4 z m 212,0 -2,3 1,3 2,1 3,-4 z m 299,0 -5,3 -2,5 4,5 h 1 l 7,-8 z m 89,0 -2,1 5,14 4,-1 7,-8 v -2 z m 73,0 -1,11 5,4 h 5 l 5,-10 z m 128,0 -10,1 -2,6 2,5 11,-3 z m 199,0 -3,5 1,2 3,2 1,-1 -1,-6 z m 41,0 v 1 l -2,5 1,11 1,1 5,-1 7,-13 -1,-1 z m 376,0 -12,4 2,12 17,4 1,-5 z m -1925,1 -8,7 2,2 6,2 3,-10 z m 840,0 v 7 h 1 5 l 1,-4 -5,-3 z m 202,0 v 1 l 1,2 2,-1 v -1 z m 207,0 -9,4 5,8 h 5 l 3,-7 z m -1652,1 -4,3 3,7 15,8 4,-5 -5,-10 z m 1043,0 -8,4 1,6 3,5 4,-1 2,-13 z m 4,0 -1,16 7,2 1,-15 z m 263,0 -12,8 8,5 6,-4 2,-6 z m 508,0 -1,1 2,5 9,1 -1,-6 z m -710,1 -10,2 -2,10 6,2 11,-5 -3,-8 z m 444,0 -3,1 2,6 7,-1 -1,-3 -1,-1 z m 663,0 1,10 3,2 h 5 v -7 l -8,-5 z m -1507,1 4,8 9,3 -2,-11 z m 576,0 -5,1 v 10 l 2,1 7,-7 -3,-5 z m 796,0 -2,1 v 5 l 4,1 4,-1 -2,-5 z m -1982,1 -5,6 2,2 h 11 1 v -1 z m 494,0 -2,8 12,5 5,-3 -3,-7 -6,-3 z m 743,0 -3,2 3,3 3,-3 z m 348,0 -2,3 1,4 10,3 1,-1 -2,-4 z m 319,0 -5,12 h 16 l 1,-5 -8,-6 z m -1758,1 -7,5 12,8 6,-5 -2,-5 z m 529,0 v 1 h -1 l 2,4 h 6 v -3 z m 1194,0 -6,13 3,1 12,-4 -3,-6 z m -1645,1 -3,1 2,5 5,-2 -1,-1 z m 622,0 -2,1 -2,9 4,3 9,-1 -2,-11 z m 595,0 -2,1 v 1 l 4,5 2,-2 -1,-5 z m 637,0 -2,1 -2,6 2,4 h 8 l 1,-1 z m 130,0 -4,3 -3,4 3,8 8,-6 -1,-8 -1,-1 z m -1633,1 -1,6 3,1 3,-5 -3,-2 z m 302,0 -2,8 13,7 4,-5 -7,-10 z m -273,1 -5,3 2,8 h 4 l 2,-5 z m 435,0 -4,6 1,1 h 6 v -6 l -1,-1 z m 42,0 v 3 l 2,2 4,-3 v -2 h -1 z m 760,0 -5,1 -2,3 4,2 3,-1 z m 336,0 -3,6 h 1 2 l 4,-3 -2,-3 z m -1735,1 -1,1 v 2 l 2,2 4,-1 -1,-3 z m 270,0 -5,5 2,3 11,2 v -6 z m 1555,1 v 3 l 5,13 2,1 h 5 l 2,-2 1,-3 -4,-8 z m -2243,4 -3,4 5,8 5,2 6,-7 -2,-4 z m 109,0 -12,5 2,8 h 1 10 z m 617,0 -1,1 1,1 1,-2 z m -516,1 -11,3 -2,2 5,10 2,1 4,-3 5,-10 v -1 z m 441,1 v 1 l 3,6 5,-2 v -4 -1 z m 456,0 -3,13 h 10 l 4,-11 -3,-1 z m 1116,0 -2,1 -1,4 v 6 h 1 12 l -1,-6 z m -1576,1 -9,6 v 3 l 3,4 h 6 l 5,-3 z m 762,0 v 1 h 1 z m 183,0 -8,3 -1,1 -1,7 10,1 v -1 z m -599,1 -10,4 3,8 h 9 l 3,-3 v -5 -2 z m 789,2 -3,2 1,3 4,-2 v -2 z m 89,0 -8,1 v 10 l 3,4 11,-5 -5,-9 z m -1735,1 -3,2 -2,6 2,1 7,-3 1,-4 -1,-1 z m 754,0 v 6 l 10,7 4,-3 -7,-8 z m 575,0 -9,10 14,5 3,-3 v -2 l -3,-8 v -1 z m 87,0 -7,5 -1,1 1,2 12,5 5,-2 z m -1382,1 -6,3 v 8 l 1,1 8,-3 v -7 l -1,-1 z m -152,1 -8,9 2,7 15,-8 2,-3 h -1 z m 1752,0 -1,1 1,2 2,1 1,-1 -1,-3 z M 306,74 v 6 l 2,2 8,-2 -3,-6 z m 1561,0 -4,8 2,1 9,-3 -1,-4 z m 173,0 -3,4 v 3 l 8,3 6,-5 -8,-5 z m -1965,1 -1,5 4,-1 1,-2 v -1 l -1,-1 z m 2045,0 v 2 h 2 v -2 z m 134,0 -2,6 2,1 h 4 V 77 Z M 96,76 v 1 l 4,3 2,-4 z m 945,0 -3,4 2,2 6,-2 1,-2 -1,-1 -4,-1 z m 109,0 -3,1 v 4 l 4,-2 v -3 z m -1129,1 -1,1 -1,1 2,2 2,-1 v -3 z m 254,0 -1,2 1,2 4,1 v -5 z m 657,0 -2,2 1,3 2,1 1,-5 z m 205,0 v 1 l 1,-1 z m 1037,0 v 2 l 3,3 1,-5 z m 95,0 -1,8 3,3 h 1 l 4,-8 -3,-2 z m -778,3 v 1 h 1 1 z m -282,3 -1,1 2,2 h 1 v -2 z m -7,1 -3,1 -1,9 13,-1 z m -459,1 -1,1 h 1 l 1,-1 z m 498,0 3,11 3,-1 8,-7 -1,-2 z m 1118,0 -1,10 2,1 6,-11 h -1 z m -2136,2 1,4 3,-3 -1,-1 z m 109,0 -3,2 v 7 l 6,4 3,-1 v -8 z m -178,3 v 1 h 1 v -1 z m 1917,0 v 1 h 1 v -1 z m 232,0 -1,8 10,7 8,-3 -5,-12 z m -1930,2 -6,9 h 8 l 3,-6 z m -261,1 -1,1 -1,1 h 1 2 z m 1109,2 -3,2 v 6 l 13,5 h 4 l 2,-5 z m 930,1 v 4 h 3 v -1 l -2,-3 z M 766,98 v 1 h 1 v -1 z m -567,4 -10,8 -1,6 3,2 9,3 2,-17 z m 1687,0 v 1 h 1 v -1 z m -874,1 -5,10 4,5 6,-2 -2,-11 z m 1165,0 -3,1 v 1 l 1,3 v 1 l 2,-1 h 1 v -4 z m -1820,1 -4,3 3,7 4,-4 v -3 z m 1558,0 v 1 h 1 v -1 z m -1608,3 -1,1 -1,8 v 2 l 12,-4 -4,-7 z m 876,2 v 1 l 1,1 h 1 v -1 -1 h -1 z m 752,0 1,1 v -1 z m 326,0 1,2 h 2 l -1,-2 z m 58,2 -3,2 -2,4 2,1 5,-4 1,-2 z m -2081,1 h 1 z m 2003,2 v 1 l 2,1 v -1 -1 z m -235,1 -1,3 v 4 h 5 l 3,-4 -1,-2 z m -139,2 -1,2 3,3 h 1 l 2,-3 z m -684,9 -1,1 v 1 h 2 l 1,-2 z m -1047,1 -3,1 v 1 h 3 l 1,-1 z"]) [], Svg.node "path" ([attribute "id" "polygon1246", attribute "class" "", attribute "d" "m 502,60 -11,3 -6,8 -9,-5 -10,4 -11,-6 -1,1 -18,4 v -1 l -18,3 h -1 l 3,8 -7,10 2,11 4,2 14,-3 v 17 l 6,3 6,15 9,6 v 2 l -3,11 v 5 l 11,7 v 6 l 10,9 -4,15 -17,-14 -3,1 -3,19 1,1 4,2 16,-3 -2,18 h 1 19 l 2,-5 12,2 7,15 -16,1 -5,-6 -14,9 6,12 -11,8 h -8 l -3,4 -1,1 -1,3 9,19 -10,8 -7,-5 -14,3 -8,-1 -2,5 11,17 -6,9 1,3 -4,11 3,4 7,4 7,-3 11,2 5,-4 v -16 l 18,4 6,-5 8,4 3,14 2,2 7,-2 9,1 7,-3 4,-8 16,3 8,9 8,1 3,6 9,7 h 6 l 7,-4 h 10 l 4,-1 3,-12 9,-5 4,2 1,15 11,1 2,6 14,4 1,9 4,5 14,-10 8,4 8,-3 4,4 13,-4 2,-13 12,4 10,-12 9,14 9,-7 -2,-13 15,2 2,1 -4,16 v 2 2 l 2,2 11,8 7,-4 -7,-12 4,-6 16,11 -6,7 3,14 16,2 2,-2 4,-7 -1,-1 3,-20 9,-2 7,8 14,-10 -4,-10 4,-3 4,-11 13,-4 5,18 3,1 14,-7 -16,-16 10,-3 15,10 -4,9 4,11 20,-2 1,-2 16,-8 1,-8 8,-5 6,1 3,16 16,-6 1,-3 13,-2 5,-5 9,2 7,-5 -6,-14 3,-7 -1,-4 19,-11 15,4 1,-1 17,2 1,1 19,6 -1,8 2,4 11,7 10,-7 6,1 8,-8 13,2 3,6 10,4 6,-3 11,-3 1,-1 -5,-16 -1,-1 -6,-3 -4,-12 -3,-4 -15,4 -2,-2 1,-17 h -1 l 5,-11 -13,-8 -5,3 -7,-10 -15,-7 -1,-2 5,-12 -1,-2 -16,-9 -2,-3 17,-13 v -1 l 1,-10 17,-4 v -16 l 18,8 3,4 14,-5 -3,-16 3,-3 14,-2 1,-15 1,-1 3,-12 -10,-6 -11,5 -7,-14 -15,3 -10,-3 -10,13 h -8 l -17,6 v 3 l -15,11 3,10 -4,10 1,6 -13,5 -10,-6 -10,7 h -2 l -7,-14 -2,-1 -16,13 -6,-4 -2,-9 -14,-5 1,-14 -5,-4 -16,9 -5,-11 -13,-1 -5,6 h -5 l -1,-1 -19,3 1,11 -5,4 -14,-5 v -10 l -3,-3 -9,-2 -3,5 h -16 l -3,-6 -14,2 -6,11 1,6 -12,6 -15,-5 -2,1 -2,13 -3,6 -19,-10 v -3 l -12,-9 -1,-1 -13,1 -3,6 -10,4 -7,-18 -13,8 -11,-11 -8,2 -5,-4 4,-17 -3,-5 h -16 l -2,-4 -12,-7 -5,18 h -12 l 2,-14 -7,-6 -9,4 -14,-4 -1,1 -14,-17 -4,2 -6,18 -13,-7 -3,-7 -18,11 3,-17 -7,-5 -6,6 -7,-2 -10,3 z m -111,240 -13,15 13,8 5,-2 3,-16 z m -3,30 -13,7 v 3 l 21,11 4,-1 v -2 z"]) [], Svg.node "path" ([attribute "id" "polygon1266", attribute "class" "", attribute "d" "m 1332,67 -12,9 -2,5 -16,-4 -7,4 -3,3 7,15 -8,10 1,3 -5,18 7,6 -4,10 3,5 18,4 -5,-24 15,-2 1,20 8,1 6,13 h 5 l 4,-14 10,2 6,-5 1,-8 9,-2 2,-21 7,-2 v -8 l -8,-8 7,-13 -21,-3 h -17 l -4,-10 -2,-4 z m 113,36 -13,4 -2,8 11,9 6,-13 -1,-7 z m -51,12 -5,3 v 12 l -16,7 7,11 -5,15 3,2 7,-2 13,-13 13,10 6,-9 14,-4 v -10 l -7,-5 2,-13 -17,-2 -1,1 z"]) [], Svg.node "polygon" ([attribute "points" "1652,189 1645,201 1660,205 1663,212 1645,219 1649,229 1662,231 1665,240 1657,252 1662,257 1663,269 1656,273 1646,273 1641,268 1632,269 1619,252 1613,252 1612,251 1607,241 1595,240 1591,242 1580,238 1581,222 1570,220 1564,212 1567,203 1559,193 1559,186 1574,180 1571,166 1576,162 1578,148 1580,144 1590,147 1599,130 1605,134 1615,128 1615,122 1625,115 1635,122 1643,120 1647,101 1659,102 1662,118 1677,116 1679,113 1695,116 1699,113 1713,116 1714,117 1723,120 1735,111 1744,114 1746,128 1735,133 1728,128 1710,144 1694,147 1688,143 1674,147 1672,152 1666,154 1665,167 1660,174 1662,184 1661,185 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1344"]) [], Svg.node "polygon" ([attribute "points" "95,149 92,149 91,149 70,151 69,166 49,167 48,165 50,152 36,145 30,158 16,154 21,137 34,136 38,132 36,122 16,117 13,113 0,116.54545 0,194.47368 8,197 12,205 27,197 33,206 45,205 47,218 54,221 64,215 72,219 84,211 85,212 99,214 101,204 116,204 117,218 137,216 138,215 130,198 134,194 134,192 129,182 115,185 112,167 105,165 99,153 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1360"]) [], Svg.node "path" ([attribute "id" "polygon1368", attribute "class" "", attribute "d" "m 1496,112 -6,11 2,11 2,2 11,2 -8,21 v 2 l 11,3 1,4 1,12 -5,3 -9,17 -13,-2 -7,18 19,5 -6,15 5,8 15,-11 v -9 l 9,-7 1,-2 -19,-13 18,-5 -2,-14 16,-3 -3,-14 1,-5 -6,-9 -12,6 -6,-20 6,-4 v -12 z m -26,107 -7,15 1,5 7,4 h 1 l 11,-7 -11,-17 z"]) [], Svg.node "path" ([attribute "id" "polygon1376", attribute "class" "", attribute "d" "m 1933,136 -17,2 -2,12 v 1 l -18,1 -1,1 3,9 -6,7 1,16 3,1 6,-2 16,16 h 7 l 1,14 3,4 19,-9 5,11 -4,10 4,6 -14,17 h 2 l 14,16 -2,3 -5,10 -1,2 7,14 -14,9 h -3 l -5,-6 -17,1 -3,2 -15,-2 -3,17 -8,1 -2,11 -16,-3 -4,5 -14,1 -4,6 -11,-2 -13,12 9,8 15,-15 v 22 l -7,2 -1,6 6,14 -1,1 -5,14 9,9 14,-12 1,-5 11,-3 7,-10 11,7 6,-10 11,6 9,-7 9,7 10,-18 h 1 l 5,-1 1,-5 18,-11 6,5 9,1 2,-3 16,-5 3,5 14,4 1,7 14,2 7,-12 7,1 7,-5 2,-7 10,-8 h 1 l 9,19 9,-1 3,-3 -4,-19 -10,-3 1,-11 h 12 l 6,-3 1,-9 7,-2 7,-6 v -10 l 8,-3 3,-8 10,-10 -8,-9 6,-10 h 11 l 2,-18 -2,-1 -3,-4 5,-12 5,-2 7,-5 5,3 10,-2 6,-8 17,2 2,-16 -1,-1 -1,-14 -19,-6 2,-10 -17,-7 -4,4 -7,3 -4,5 -17,-1 -2,1 -13,-12 -5,2 -4,19 -9,-2 -6,-5 v -4 l -15,-14 -4,4 -8,3 1,14 -7,6 8,12 -11,5 -10,-2 -2,13 -18,3 -1,2 -15,-3 -5,-12 h -1 l -13,-10 -7,3 -7,10 -10,-7 -6,-15 -3,-1 -1,-7 2,-9 1,-8 z m 287,14 -7,5 2,11 -2,4 -14,-1 -5,11 14,5 -6,19 18,-2 3,1 11,-1 1,2 3,2 13,1 9,-7 -12,-15 v -1 l 20,-7 -16,-16 v -7 l -2,-2 -18,1 -3,-2 z"]) [], Svg.node "path" ([attribute "id" "polygon1380", attribute "class" "", attribute "d" "m 2347,146 -12,9 v 11 l 3,4 -5,12 -13,2 -7,-16 -11,4 -2,1 -3,7 3,2 3,17 12,1 3,7 4,-1 19,11 3,-2 12,4 3,-1 10,5 14,-8 -1,-3 18,-23.68359 V 173.69922 L 2382,162 l -1,-6 -9,-4 -11,6 -10,-4 z"]) [], Svg.node "polygon" ([attribute "points" "1323,269 1329,265 1340,263 1341,260 1345,253 1365,256 1361,264 1342,266 1346,283 1326,280 1324,279 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1398"]) [], Svg.node "path" ([attribute "id" "polygon1406", attribute "class" "", attribute "d" "m 232,319 -7,2 -5,10 -3,3 -12,-6 -4,4 4,16 -9,2 1,19 h 1 l 6,10 -18,11 -2,6 1,3 2,1 17,-1 2,1 11,4 4,-3 -4,-19 -2,-2 7,-11 11,-3 4,-13 -3,-3 v -15 l 3,-5 z m -128,66 -9,8 v 3 h 1 l 18,4 -8,16 7,5 20,-11 -16,-12 1,-2 -7,-10 z m 29,25 -4,21 8,3 11,-5 v -2 l -14,-17 z"]) [], Svg.node "polygon" ([attribute "points" "2235,338 2234,342 2241,352 2246,351 2264,359 2270,351 2267,343 2255,339 2252,325 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1410"]) [], Svg.node "path" ([attribute "id" "polygon1412", attribute "class" "", attribute "d" "m 544,372 -14,15 5,5 v 10 l 6,6 10,-2 3,4 h 13 v 14 l 3,3 2,1 12,-3 7,-6 -13,-13 -8,-1 -5,-12 -10,-3 -2,-16 z m -21,49 -1,6 3,14 -5,10 23,4 -4,-15 8,-7 -8,-11 z m 36,29 -1,1 -14,5 -3,12 15,3 4,4 15,-6 -4,-16 z"]) [], Svg.node "polygon" ([attribute "points" "2400,400.26923 2381,401 2379,400 2371,400 2363,391 2369,382 2362,373 2364,370 2384,370 2386,368 2400,365.45455 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1414"]) [], Svg.node "polygon" ([attribute "points" "750,402 740,404 739,405 738,419 743,425 754,429 756,429 762,415 759,410 772,397 762,387 758,388 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1418"]) [], Svg.node "polygon" ([attribute "points" "1481,398 1480,397 1478,389 1492,380 1499,389 1492,400 1487,401 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1420"]) [], Svg.node "polygon" ([attribute "points" "2221,413 2220,400 2214,397 2200,408 2190,405 2184,407 2180,416 2183,423 2197,427 2206,419 2212,421 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1422"]) [], Svg.node "polygon" ([attribute "points" "1429,417 1442,417 1445,422 1438,434 1452,437 1447,449 1440,450 1437,468 1422,466 1422,449 1409,443 1401,454 1385,451 1388,437 1395,430 1393,419 1395,416 1411,416 1413,418 1415,432 1429,431 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1426"]) [], Svg.node "polygon" ([attribute "points" "458,484 457,498 453,500 438,494 436,491 436,487 450,480 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1430"]) [], Svg.node "polygon" ([attribute "points" "1831,533 1828,541 1802,538 1800,537 1820,523 1831,531 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1432"]) [], Svg.node "polygon" ([attribute "points" "1760,556 1760,569 1742,577 1739,575 1742,558 1757,553 ", attribute "type" "iceShield", attribute "class" "", attribute "id" "polygon1434"]) [], Svg.node "path" ([attribute "id" "polygon1436", attribute "class" "", attribute "d" "m 2131,599 -19,13 -5,-5 -5,-2 -9,5 -13,-3 -4,-4 h -7 l -6,13 17,8 v 1 l -4,7 5,12 1,4 1,1 -9,20 h -2 l -11,7 6,12 -3,8 h -3 l -13,-12 -10,4 -7,-6 -16,2 -3,7 3,11 -4,6 -3,1 -4,22 -7,1 v 1 l 1,18 -3,1 -2,16 8,6 -1,11 15,8 6,-3 -2,-15 18,-2 -6,15 10,5 11,-13 h 1 l 17,-6 v 16 l 9,9 h 2 l 5,-18 14,10 5,-15 7,-1 2,-2 17,-4 1,5 10,5 11,-7 8,1 3,-4 20,-1 3,-2 -1,-15 -2,-6 v -6 l -2,-3 -21,1 -1,-17 18,2 2,-5 -2,-14 4,-4 -1,-8 1,-2 2,-18 h -1 l -13,-15 h -4 l -5,-2 -13,5 -7,-6 5,-15 -4,-5 1,-6 -10,-11 4,-13 -4,-4 z"]) [], Svg.node "path" ([attribute "id" "polygon1442", attribute "class" "", attribute "d" "m 1172,792 -8,3 -4,9 2,4 -8,16 8,6 5,6 -1,4 7,14 h 3 l 11,-2 2,-5 6,-4 h 10 l 5,-6 1,-7 -5,-8 -1,-11 h -10 l -11,-5 -1,1 z m -116,29 -3,13 8,8 -2,10 -18,-2 -1,-2 -19,13 1,7 5,4 -7,17 -12,-3 -1,3 v 18 l 14,-4 v -11 l 17,-3 1,10 -16,5 7,14 10,-1 1,-1 17,5 2,2 h 4 l 11,6 11,-8 1,-2 18,2 5,-3 v -3 l -17,-18 v -1 l 8,-7 1,-1 15,-1 3,-12 11,-2 v -18 l -6,-1 -9,-11 h -6 l -3,-22 -9,8 -9,-5 -13,8 -4,-8 -15,-3 z"]) [], Svg.node "path" ([attribute "id" "polygon1444", attribute "class" "", attribute "d" "m 388,806 -6,15 -9,-1 -4,3 v 17 l -8,2 -9,-10 -14,6 -14,5 -6,13 4,3 -3,19 -4,12 4,6 -1,6 3,3 12,1 2,16 14,-5 2,-13 6,-3 16,12 v 4 l 15,1 5,-15 6,-2 1,-6 -1,-4 10,-15 5,-1 3,-17 5,-4 -3,-12 -20,-3 -4,-13 8,-7 -1,-6 z m 65,99 -5,4 3,13 3,7 16,-4 2,-4 -5,-15 z m 0,25 -8,5 -4,6 -18,1 -3,14 h -10 l -11,5 11,15 10,-4 2,-13 13,2 9,-13 14,8 v 1 l 6,2 2,4 h 14 l 8,-15 v -2 l -5,-3 -4,-1 h -1 l -19,-1 z"]) [], Svg.node "path" ([attribute "id" "polygon1450", attribute "class" "", attribute "d" "m 720,909 -4,20 -11,1 -4,-2 h -9 l -2,2 -3,7 1,2 -7,18 h -8 l -3,2 -7,-1 -13,19 1,2 16,1 4,10 2,1 6,11 -16,6 12,13 3,-1 8,7 13,1 5,-4 11,4 3,9 22,5 v -1 l 13,-8 10,8 5,-1 8,-8 1,-6 8,-1 14,14 8,-16 14,2 v -16 l -1,-2 2,-13 10,-4 1,-1 -12,-17 11,-5 3,-14 h -16 l -2,1 -12,-2 -2,-10 -1,-1 -13,-4 v -16 l -2,-2 -14,4 -2,2 -17,-8 -6,4 -10,-3 h -4 z"]) [], Svg.node "path" ([attribute "id" "polygon1454", attribute "d" "m 61,958 -12,3 -2,3 1,9 -20,4 v 3 l 3,11 -1,6 7,12 h 1 l -9,19 1,5 -1,5 15,6 2,13 5,6 -5,10 -4,1 -8,7 -20,-10 -3,3 4,12 6,6 -12,15 -9,-4.0918 V 1176 h 101.66602 l 3.33398,-1 2,1 h 130 467 313 l 4,-1 0.666,1 H 1829 h 404 163.5 l 2.5,-1 1,-1.8887 v -61.2109 l -9,-0.9004 -7,-15 -9,-4 -6,1 -2,-2 v -10 l 9,-9 11,-2 v -12 l -4,-5 h -13 l -2,-12 -1,-2 2,-7 -3,-4 7,-18 -7,-6 -2,-8 15,-6 5,-6 v -1 l -16,-10 -1,-4 h -17 l -4,7 h -11 l -2,3 5,13 7,5 -1,4 -12,10 -4,-15 -9,-9 -2,2 -6,17 9,7 11,-2 8,11 -2,9 1,4 -9,13 3,5 -3,8 8,11 -1,4 -18,2 v 11 h -1 l -16,4 -3,-5 h -16 l -2,1 v 12 l -11,5 -3,5 -13,-1 -7,-5 -13,5 h -1 -12 l -9,-13 -5,-2 -3,2 -18,-3 -3,-3 -11,1 -5,-4 h -1 l -19,7 -2,-1 3,-27 -16,8 1,14 -11,3 -4,4 -2,13 -13,4 -10,-18 -14,13 2,6 -4,7 -8,1 -4,-3 -15,7 v 3 l -13,7 -10,-6 -9,4 -3,8 -11,-1 -3,-3 -14,11 4,8 -6,3 -20,-3 -1,3 -9,3 -11,-5 2,-10 -14,-13 -3,9 -2,14 -11,3 -3,-3 -18,4 -4,2 -9,-5 v -1 l -22,-1 -1,-12 -2,-3 -8,-1 -5,-16 v -1 l -13,4 -3,14 -15,-1 -5,3 h -11 l -11,-3 -4,-6 3,-11 -6,-6 -11,10 -2,6 -15,-1 -1,-11 2,-5 -9,-10 2,-13 h 2 l 10,-17 -13,-4 2,-15 h -15 l -4,6 h -14 l -2,-2 -7,-1 -13,12 -4,-1 -3,-3 -6,-2 -11,18 2,5 h 7 l 2,-1 13,1 6,12 17,-10 5,3 -2,19 h -1 l -1,11 v 1 l -2,12 -5,4 h -5 l -10,7 3,8 -10,7 -7,-7 h -9 l -2,-2 -14,3 -5,-4 v -8 l -21,-3 -1,-2 -13,-2 -7,2 -10,-1 -2,1 -12,-4 -9,10 -8,-4 -6,3 -10,-1 -6,-6 -5,2 -13,-3 -3,-15 -13,1 -3,3 -1,1 -8,5 -20,-7 -1,2 -20,3 2,14 -21,1 -8,-5 -1,-2 -17,3 -8,-5 -3,2 -12,-13 3,-4 1,-6 -16,-6 3,-10 16,-5 2,15 13,6 3,-8 13,-2 2,-11 v -1 l -3,-15 -13,2 -8,-9 -14,5 -2,2 -10,-2 -4,1 -3,16 -6,1 -10,-6 -9,4 -10,-13 h -2 l -8,21 1,2 -7,11 -11,-2 -1,1 -12,-14 h -2 l -5,-6 h -16 l -4,-4 -14,2 -2,4 -9,2 -1,16 -18,-5 -4,5 -9,-3 -13,18 h -1 l -7,-4 -3,-8 -1,-1 -11,-2 -1,-4 -22,1 5,-19 -2,-2 -18,9 -9,-17 v -1 l -8,21 -18,-8 3,-10 -13,-11 -10,7 1,11 -10,2 -3,15 -9,-2 -8,10 5,9 -2,4 -1,14 -12,-3 -12,-12 -9,-5 -13,7 -8,-4 2,-12 -3,-6 -7,-4 -6,5 -16,-3 -6,5 6,11 -14,12 -6,-3 -2,1 -6,-5 -18,3 -1,-6 -12,-3 -7,5 -15,1 -1,-7 4,-6 -2,-17 -19,3 v 1 l 1,9 -8,8 -8,-3 -12,10 -3,-1 -5,6 -12,-2 -4,16 -10,-7 -13,5 13,17 -27,-3 -1,3 h -9 l -7,-3 -14,16 -14,-15 v -5 l -4,-6 v -10 l -4,-4 -10,-1 -3,-2 -8,-1 -5,-17 h -1 l -13,2 -1,12 -15,8 -3,-4 -20,1 -2,3 -14,-2 -9,13 -7,-1 -3,-2 h -5 l -6,4 -6,10 h -12 v -15 l -1,-4 -18,8 -2,3 -13,2 -2,-2 -15,2 -5,-9 8,-13 -1,-1 -19,-5 -4,-9 -3,-2 -8,2 -9,-5 -16,5 -3,-1 h -5 l -6,-11 -17,-4 -2,-3 h -3 l -6,-2 -4,-17 -12,-2 -6,8 -8,-1 -10,-6 -7,4 -5,11 -15,-18 -8,5 h -5 l -8,-12 -17,5 -1,1 -11,6 -6,-13 -14,-1 -1,-2 -12,2 -2,-1 -8,-16 -4,-1 -9,14 -9,-3 -2,-4 -10,-5 -6,1 -4,11 h -14 l -11,-13 -5,1 -5,-1 -9,2 -3,-4 -18,-7 2,-14 -4,-5 h -1 l -16,9 v 1 l -17,9 -4,-11 v -10 l -16,-4 h -1 l -13,-3 -3,-7 -5,-6 H 80 l -3,-18 -10,-3 -1,-8 z m 2161,31 -7,5 2,9 -8,11 -4,-2 -9,-12 -8,12 -12,-6 -9,7 -5,-2 -3,-18 -11,4 -4,12 -15,-4 -5,2 7,18 -6,5 -13,-1 -2,10 8,12 1,9 -9,4 -4,-1 -13,7 9,13 8,-5 6,4 11,-10 -7,-12 14,-4 12,5 6,-18 h 5 l 15,13 6,-8 21,2 v -17 l 13,-7 17,-2 1,-11 -2,-4 11,-14 -5,-6 z m -155,34 -4,17 5,5 15,-7 3,-4 v -7 l -4,-3 z m -72,15 -2,3 h -14 v 15 l -6,3 -7,-1 -5,5 -10,-2 -7,-16 -9,1 -4,7 v 3 l 3,4 8,5 4,7 -9,8 1,10 -8,3 -2,13 8,8 5,-1 6,-6 13,2 2,-1 v -15 l 1,-1 17,-3 6,4 7,-1 9,5 12,-5 8,5 11,-10 -2,-6 3,-9 -12,-9 7,-4 6,-14 -22,3 -1,2 z m -1568,6 h 1 z m 687,2 -1,1 h 1 l 1,1 v -1 z m -641,3 v 1 l 1,3 3,-2 v -2 z m 1391,2 -16,5 -5,-3 -13,7 -5,-3 -12,1 -4,15 -16,-3 -4,10 10,12 12,-2 2,-2 13,5 8,-6 h 6 l 15,-8 v -4 l 16,-17 z m -1467,2 v 1 h 1 v -1 z m 597,0 1,1 v -1 z m -654,1 v 1 h 1 v -1 z m 889,7 v 3 l 1,4 2,2 4,2 3,-1 v -9 z m -520,1 1,1 v -1 z m 317,1 -1,1 v 6 l 1,1 5,-2 v -4 -1 z m -462,2 -1,1 -2,6 3,3 4,-3 -2,-6 z m 264,1 -1,1 -2,4 2,3 5,-3 -1,-4 z m 1084,0 -11,19 -4,-1 -2,-5 -16,-9 -2,6 2,16 v 1 l 2,8 14,3 9,-16 7,3 8,-3 1,-12 -5,-9 z m -1129,1 -2,4 4,3 2,-1 -3,-6 z m 676,5 -10,5 v 18 l 4,1 7,12 13,4 v -17 l 16,-3 5,6 9,1 5,-9 1,-7 -14,-6 -2,2 -16,-1 -6,16 -1,-1 -10,-20 z m -903,6 -1,1 2,1 v -1 z m 368,0 -1,7 3,6 9,-2 1,-9 -2,-2 z m -276,2 v 1 l 1,-1 z m 583,4 v 1 z m -440,5 v 1 h 1 v -1 z m -189,6 v 1 h 1 l 1,-1 h -1 z m 23,0 -3,2 3,9 4,3 3,-2 2,-7 z m 152,17 -1,5 1,1 h 3 v -4 z m 12,4 v 2 l 1,1 2,-2 v -1 z m 854,9 -3,1 8,18 17,-6 -1,-1 z m -888,13 -6,10 17,5 v -14 z"]) []], Svg.node "g" ([attribute "inkscape:groupmode" "layer", attribute "id" "layer1", attribute "inkscape:label" "Labels", attribute "style" "display:inline"]) [ Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "-234.19965", attribute "y" "709.50055", attribute "id" "text709", attribute "transform" "rotate(-59.37762)"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan707", attribute "x" "-234.19965", attribute "y" "709.50055", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("The vast continent of R")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1078.3359", attribute "y" "47.320759", attribute "id" "text815", attribute "transform" "rotate(22.449543)"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan813", attribute "x" "1078.3359", attribute "y" "47.320759", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"]) [ Svg.text("Programming")], Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "x" "1078.3359", attribute "y" "97.434967", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle", attribute "id" "tspan817"]) [ Svg.text("Ocean")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "209.73439", attribute "y" "-71.457466", attribute "id" "text1242", attribute "transform" "rotate(45.986589)"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1240", attribute "x" "209.73439", attribute "y" "-71.457466", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Bay of Bayes")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "214.50117", attribute "y" "400.50565", attribute "id" "text1246", attribute "transform" "rotate(-3.5262992)", attribute "inkscape:transform-center-x" "-20.413001", attribute "inkscape:transform-center-y" "1.4179341"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1244", attribute "x" "214.50117", attribute "y" "400.50565", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Sea 14")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "299.10535", attribute "y" "344.67349", attribute "id" "text1250", attribute "transform" "rotate(37.849424)", attribute "inkscape:transform-center-x" "-13.907201", attribute "inkscape:transform-center-y" "15.846844"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1248", attribute "x" "299.10535", attribute "y" "344.67349", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Land of Dating")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "357.46152", attribute "y" "576.42523", attribute "id" "text1254", attribute "transform" "rotate(30.154136)", attribute "inkscape:transform-center-x" "-15.744578", attribute "inkscape:transform-center-y" "10.872309"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1252", attribute "x" "357.46152", attribute "y" "576.42523", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("South Artefact Ocean")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "-437.99774", attribute "y" "557.47095", attribute "id" "text1258", attribute "transform" "rotate(-61.581071)", attribute "inkscape:transform-center-x" "-10.309419", attribute "inkscape:transform-center-y" "-16.206225"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1256", attribute "x" "-437.99774", attribute "y" "557.47095", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Gulf of calibration")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "634.62994", attribute "y" "424.33575", attribute "id" "text1262", attribute "transform" "rotate(33.699223)", attribute "inkscape:transform-center-x" "-15.494072", attribute "inkscape:transform-center-y" "11.752989"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1260", attribute "x" "634.62994", attribute "y" "424.33575", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Data Storage Avalon")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "634.00623", attribute "y" "564.82593", attribute "id" "text1266", attribute "transform" "rotate(33.699223)", attribute "inkscape:transform-center-x" "-15.494072", attribute "inkscape:transform-center-y" "11.752989"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1264", attribute "x" "634.00623", attribute "y" "564.82593", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("(R)Markdown reef")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "332.49655", attribute "y" "860.86316", attribute "id" "text1339", attribute "transform" "rotate(15.02823)", attribute "inkscape:transform-center-x" "-18.04214", attribute "inkscape:transform-center-y" "6.3837415"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1337", attribute "x" "332.49655", attribute "y" "860.86316", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Icy Plateau of Latex")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "640.65735", attribute "y" "811.8045", attribute "id" "text1343", attribute "transform" "rotate(1.5599143)", attribute "inkscape:transform-center-x" "-16.256403", attribute "inkscape:transform-center-y" "11.543572"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1341", attribute "x" "640.65735", attribute "y" "811.8045", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"]) [ Svg.text("Linked Open")], Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "x" "640.65735", attribute "y" "845.21399", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle", attribute "id" "tspan1345"]) [ Svg.text("Island")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1061.6815", attribute "y" "-136.37398", attribute "id" "text1349", attribute "transform" "rotate(53.510639)", attribute "inkscape:transform-center-x" "-10.068006", attribute "inkscape:transform-center-y" "16.659193"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1347", attribute "x" "1061.6815", attribute "y" "-136.37398", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Shoals of Wikidata")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "819.34967", attribute "y" "965.08252", attribute "id" "text1353", attribute "transform" "rotate(-1.9812092)", attribute "inkscape:transform-center-x" "-19.803371", attribute "inkscape:transform-center-y" "2.7586301"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1351", attribute "x" "819.34967", attribute "y" "965.08252", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Blogging Coast")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "503.2959", attribute "y" "1220.7661", attribute "id" "text1357", attribute "transform" "rotate(-26.913675)", attribute "inkscape:transform-center-x" "-18.67202", attribute "inkscape:transform-center-y" "-5.6640496"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1355", attribute "x" "503.2959", attribute "y" "1220.7661", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Javascript Sea")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "381.1861", attribute "y" "1080.525", attribute "id" "text1361", attribute "transform" "rotate(-26.913675)", attribute "inkscape:transform-center-x" "-18.67202", attribute "inkscape:transform-center-y" "-5.6640496"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1359", attribute "x" "381.1861", attribute "y" "1080.525", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Public Outreach Island")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "488.69992", attribute "y" "685.71515", attribute "id" "text1774", attribute "transform" "rotate(-12.297004)", attribute "inkscape:transform-center-x" "-20.102851", attribute "inkscape:transform-center-y" "-4.8405568"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1772", attribute "x" "488.69992", attribute "y" "685.71515", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"]) [ Svg.text("Jungle of")], Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "x" "488.69992", attribute "y" "719.12463", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle", attribute "id" "tspan1776"]) [ Svg.text("incomprehensible")], Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "x" "488.69992", attribute "y" "752.53418", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle", attribute "id" "tspan1778"]) [ Svg.text("statistics")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "475.84653", attribute "y" "252.16711", attribute "id" "text1782", attribute "transform" "rotate(-5.9729606)"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1780", attribute "x" "475.84653", attribute "y" "252.16711", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("HighR mountain range")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "707.16949", attribute "y" "432.37146", attribute "id" "text1786", attribute "transform" "rotate(-12.289979)", attribute "inkscape:transform-center-x" "-19.885997", attribute "inkscape:transform-center-y" "0.0015220918"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1784", attribute "x" "707.16949", attribute "y" "432.37146", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Bash Forests")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "325.50275", attribute "y" "-919.94769", attribute "id" "text1790", attribute "transform" "rotate(71.880184)", attribute "inkscape:transform-center-x" "-3.7779208", attribute "inkscape:transform-center-y" "18.814873"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1788", attribute "x" "325.50275", attribute "y" "-919.94769", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Archaeological Theory Passage")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1297.9855", attribute "y" "-400.19702", attribute "id" "text1794", attribute "transform" "rotate(45.565803)", attribute "inkscape:transform-center-x" "-10.006552", attribute "inkscape:transform-center-y" "17.142197"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1792", attribute "x" "1297.9855", attribute "y" "-400.19702", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Rolling Hills of Photography")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1056.0248", attribute "y" "1007.8676", attribute "id" "text1798", attribute "transform" "rotate(-16.058922)", attribute "inkscape:transform-center-x" "-19.62393", attribute "inkscape:transform-center-y" "-1.665494"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1796", attribute "x" "1056.0248", attribute "y" "1007.8676", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Digital Fieldwork Desert")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1427.3667", attribute "y" "1342.5848", attribute "id" "text1804", attribute "transform" "rotate(-20.93002)"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "x" "1427.3667", attribute "y" "1342.5848", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle", attribute "id" "tspan1802"]) [ Svg.text("South Artefact Ocean")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1617.7301", attribute "y" "-926.66522", attribute "id" "text1810", attribute "transform" "rotate(44.474421)", attribute "inkscape:transform-center-x" "-11.834589", attribute "inkscape:transform-center-y" "13.726068"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1808", attribute "x" "1617.7301", attribute "y" "-926.66522", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("GIS Passage")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1848.709", attribute "y" "-408.39664", attribute "id" "text1814", attribute "transform" "rotate(25.631027)", attribute "inkscape:transform-center-x" "-16.021199", attribute "inkscape:transform-center-y" "11.918389"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1812", attribute "x" "1848.709", attribute "y" "-408.39664", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Geophysics Marshes")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1478.6812", attribute "y" "1066.475", attribute "id" "text1818", attribute "transform" "rotate(-16.058922)", attribute "inkscape:transform-center-x" "-19.62393", attribute "inkscape:transform-center-y" "-1.665494"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1816", attribute "x" "1478.6812", attribute "y" "1066.475", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("3D peak")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "774.11865", attribute "y" "1516.2793", attribute "id" "text1822", attribute "transform" "rotate(-42.620968)", attribute "inkscape:transform-center-x" "-17.416968", attribute "inkscape:transform-center-y" "-9.4917185"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1820", attribute "x" "774.11865", attribute "y" "1516.2793", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Lake LIDAR")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1715.6658", attribute "y" "-371.70309", attribute "id" "text1826", attribute "transform" "rotate(22.034727)", attribute "inkscape:transform-center-x" "-16.380753", attribute "inkscape:transform-center-y" "7.604309"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1824", attribute "x" "1715.6658", attribute "y" "-371.70309", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Spatial Data Wastelands")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1857.8152", attribute "y" "125.45741", attribute "id" "text1830", attribute "transform" "rotate(3.481433)", attribute "inkscape:transform-center-x" "-19.966129", attribute "inkscape:transform-center-y" "4.7864199"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1828", attribute "x" "1857.8152", attribute "y" "125.45741", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Satellite Sea")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1928.8497", attribute "y" "46.259201", attribute "id" "text1834", attribute "transform" "rotate(3.481433)", attribute "inkscape:transform-center-x" "-19.966129", attribute "inkscape:transform-center-y" "4.7864199"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1832", attribute "x" "1928.8497", attribute "y" "46.259201", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Big Datia")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "959.85822", attribute "y" "1366.3275", attribute "id" "text1838", attribute "transform" "rotate(-45.304885)", attribute "inkscape:transform-center-x" "-16.8386", attribute "inkscape:transform-center-y" "-10.503359"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan1836", attribute "x" "959.85822", attribute "y" "1366.3275", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Machine Learning Mountains")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "671.63116", attribute "y" "1028.9729", attribute "id" "text2238", attribute "transform" "rotate(-38.201327)", attribute "inkscape:transform-center-x" "-18.106222", attribute "inkscape:transform-center-y" "-8.1069245"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan2236", attribute "x" "671.63116", attribute "y" "1028.9729", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Isla DNA")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1088.3958", attribute "y" "736.54938", attribute "id" "text2242", attribute "transform" "rotate(-13.401477)", attribute "inkscape:transform-center-x" "-18.194865", attribute "inkscape:transform-center-y" "-2.2701272"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan2240", attribute "x" "1088.3958", attribute "y" "736.54938", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Bio- and Zooarch Coast")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1437.9337", attribute "y" "-293.51471", attribute "id" "text2246", attribute "transform" "rotate(18.998404)", attribute "inkscape:transform-center-x" "-16.803955", attribute "inkscape:transform-center-y" "7.9853467"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan2244", attribute "x" "1437.9337", attribute "y" "-293.51471", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Python bay")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1206.5577", attribute "y" "185.63713", attribute "id" "text2250", attribute "transform" "rotate(2.861159)", attribute "inkscape:transform-center-x" "-19.323032", attribute "inkscape:transform-center-y" "2.4058416"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan2248", attribute "x" "1206.5577", attribute "y" "185.63713", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("ABMtis")]], Svg.node "text" ([attribute "xml:space" "preserve", attribute "style" "font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none", attribute "x" "1161.3313", attribute "y" "-855.96277", attribute "id" "text2254", attribute "transform" "rotate(39.103562)", attribute "inkscape:transform-center-x" "-12.336889", attribute "inkscape:transform-center-y" "15.311423"]) [ Svg.node "tspan" ([attribute "sodipodi:role" "line", attribute "id" "tspan2252", attribute "x" "1161.3313", attribute "y" "-855.96277", attribute "style" "font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'"]) [ Svg.text("Netlogostan")]]]] \ No newline at end of file From b1e303f3b4c9508c06e41f7ddf439a2fd8b08bf3 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Thu, 15 Feb 2024 16:48:02 +0100 Subject: [PATCH 9/9] created js for deployment --- elm.min.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elm.min.js b/elm.min.js index 7dc1211..a4a9638 100644 --- a/elm.min.js +++ b/elm.min.js @@ -1 +1 @@ -!function(t){"use strict";function n(t,n,e){return e.a=t,e.f=n,e}function C(e){return n(2,e,function(n){return function(t){return e(n,t)}})}function T(a){return n(3,a,function(e){return function(n){return function(t){return a(e,n,t)}}})}function D(r){return n(4,r,function(a){return function(e){return function(n){return function(t){return r(a,e,n,t)}}}})}function s(i){return n(5,i,function(r){return function(a){return function(e){return function(n){return function(t){return i(r,a,e,n,t)}}}}})}function e(o){return n(6,o,function(i){return function(r){return function(a){return function(e){return function(n){return function(t){return o(i,r,a,e,n,t)}}}}}})}function a(c){return n(7,c,function(o){return function(i){return function(r){return function(a){return function(e){return function(n){return function(t){return c(o,i,r,a,e,n,t)}}}}}}})}function N(t,n,e){return 2===t.a?t.f(n,e):t(n)(e)}function M(t,n,e,a){return 3===t.a?t.f(n,e,a):t(n)(e)(a)}function P(t,n,e,a,r){return 4===t.a?t.f(n,e,a,r):t(n)(e)(a)(r)}function $(t,n,e,a,r,i){return 5===t.a?t.f(n,e,a,r,i):t(n)(e)(a)(r)(i)}function _(t,n,e,a,r,i,o){return 6===t.a?t.f(n,e,a,r,i,o):t(n)(e)(a)(r)(i)(o)}function x(t,n,e,a,r,i,o,c){return 7===t.a?t.f(n,e,a,r,i,o,c):t(n)(e)(a)(r)(i)(o)(c)}var r=T(function(t,n,e){for(var a=Array(t),r=0;ro)return r}var d=e.$;if(4===d){for(var m=e.k;4===m.$;)m=m.k;return t(n,m,a,r,i+1,o,n.elm_event_node_ref)}var p=e.e;var h=n.childNodes;for(var b=0;bo))return r;i=v}return r}(t,n,e,0,0,n.b,a)}function W2(t,n,e,a){return 0===e.length?t:(F2(t,n,e,a),H2(t,e))}function H2(t,n){for(var e=0;e li { position: relative;}.fa-li { left: calc(var(--fa-li-width, 2em) * -1); position: absolute; text-align: center; width: var(--fa-li-width, 2em); line-height: inherit;}.fa-border { border-color: var(--fa-border-color, #eee); border-radius: var(--fa-border-radius, 0.1em); border-style: var(--fa-border-style, solid); border-width: var(--fa-border-width, 0.08em); padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);}.fa-pull-left { float: left; margin-right: var(--fa-pull-margin, 0.3em);}.fa-pull-right { float: right; margin-left: var(--fa-pull-margin, 0.3em);}.fa-beat { -webkit-animation-name: fa-beat; animation-name: fa-beat; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); animation-timing-function: var(--fa-animation-timing, ease-in-out);}.fa-bounce { -webkit-animation-name: fa-bounce; animation-name: fa-bounce; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));}.fa-fade { -webkit-animation-name: fa-fade; animation-name: fa-fade; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));}.fa-beat-fade { -webkit-animation-name: fa-beat-fade; animation-name: fa-beat-fade; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));}.fa-flip { -webkit-animation-name: fa-flip; animation-name: fa-flip; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); animation-timing-function: var(--fa-animation-timing, ease-in-out);}.fa-shake { -webkit-animation-name: fa-shake; animation-name: fa-shake; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, linear); animation-timing-function: var(--fa-animation-timing, linear);}.fa-spin { -webkit-animation-name: fa-spin; animation-name: fa-spin; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 2s); animation-duration: var(--fa-animation-duration, 2s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, linear); animation-timing-function: var(--fa-animation-timing, linear);}.fa-spin-reverse { --fa-animation-direction: reverse;}.fa-pulse,.fa-spin-pulse { -webkit-animation-name: fa-spin; animation-name: fa-spin; -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); animation-timing-function: var(--fa-animation-timing, steps(8));}@media (prefers-reduced-motion: reduce) { .fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse { -webkit-animation-delay: -1ms; animation-delay: -1ms; -webkit-animation-duration: 1ms; animation-duration: 1ms; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; transition-delay: 0s; transition-duration: 0s; }}@-webkit-keyframes fa-beat { 0%, 90% { -webkit-transform: scale(1); transform: scale(1); } 45% { -webkit-transform: scale(var(--fa-beat-scale, 1.25)); transform: scale(var(--fa-beat-scale, 1.25)); }}@keyframes fa-beat { 0%, 90% { -webkit-transform: scale(1); transform: scale(1); } 45% { -webkit-transform: scale(var(--fa-beat-scale, 1.25)); transform: scale(var(--fa-beat-scale, 1.25)); }}@-webkit-keyframes fa-bounce { 0% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 10% { -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 30% { -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 50% { -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 57% { -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 64% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 100% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); }}@keyframes fa-bounce { 0% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 10% { -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 30% { -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 50% { -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 57% { -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 64% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 100% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); }}@-webkit-keyframes fa-fade { 50% { opacity: var(--fa-fade-opacity, 0.4); }}@keyframes fa-fade { 50% { opacity: var(--fa-fade-opacity, 0.4); }}@-webkit-keyframes fa-beat-fade { 0%, 100% { opacity: var(--fa-beat-fade-opacity, 0.4); -webkit-transform: scale(1); transform: scale(1); } 50% { opacity: 1; -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); transform: scale(var(--fa-beat-fade-scale, 1.125)); }}@keyframes fa-beat-fade { 0%, 100% { opacity: var(--fa-beat-fade-opacity, 0.4); -webkit-transform: scale(1); transform: scale(1); } 50% { opacity: 1; -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); transform: scale(var(--fa-beat-fade-scale, 1.125)); }}@-webkit-keyframes fa-flip { 50% { -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); }}@keyframes fa-flip { 50% { -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); }}@-webkit-keyframes fa-shake { 0% { -webkit-transform: rotate(-15deg); transform: rotate(-15deg); } 4% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 8%, 24% { -webkit-transform: rotate(-18deg); transform: rotate(-18deg); } 12%, 28% { -webkit-transform: rotate(18deg); transform: rotate(18deg); } 16% { -webkit-transform: rotate(-22deg); transform: rotate(-22deg); } 20% { -webkit-transform: rotate(22deg); transform: rotate(22deg); } 32% { -webkit-transform: rotate(-12deg); transform: rotate(-12deg); } 36% { -webkit-transform: rotate(12deg); transform: rotate(12deg); } 40%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }}@keyframes fa-shake { 0% { -webkit-transform: rotate(-15deg); transform: rotate(-15deg); } 4% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 8%, 24% { -webkit-transform: rotate(-18deg); transform: rotate(-18deg); } 12%, 28% { -webkit-transform: rotate(18deg); transform: rotate(18deg); } 16% { -webkit-transform: rotate(-22deg); transform: rotate(-22deg); } 20% { -webkit-transform: rotate(22deg); transform: rotate(22deg); } 32% { -webkit-transform: rotate(-12deg); transform: rotate(-12deg); } 36% { -webkit-transform: rotate(12deg); transform: rotate(12deg); } 40%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }}@-webkit-keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }}@keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }}.fa-rotate-90 { -webkit-transform: rotate(90deg); transform: rotate(90deg);}.fa-rotate-180 { -webkit-transform: rotate(180deg); transform: rotate(180deg);}.fa-rotate-270 { -webkit-transform: rotate(270deg); transform: rotate(270deg);}.fa-flip-horizontal { -webkit-transform: scale(-1, 1); transform: scale(-1, 1);}.fa-flip-vertical { -webkit-transform: scale(1, -1); transform: scale(1, -1);}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical { -webkit-transform: scale(-1, -1); transform: scale(-1, -1);}.fa-rotate-by { -webkit-transform: rotate(var(--fa-rotate-angle, none)); transform: rotate(var(--fa-rotate-angle, none));}.fa-stack { display: inline-block; vertical-align: middle; height: 2em; position: relative; width: 2.5em;}.fa-stack-1x,.fa-stack-2x { bottom: 0; left: 0; margin: auto; position: absolute; right: 0; top: 0; z-index: var(--fa-stack-z-index, auto);}.svg-inline--fa.fa-stack-1x { height: 1em; width: 1.25em;}.svg-inline--fa.fa-stack-2x { height: 2em; width: 2.5em;}.fa-inverse { color: var(--fa-inverse, #fff);}.sr-only,.fa-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;}.svg-inline--fa .fa-primary { fill: var(--fa-primary-color, currentColor); opacity: var(--fa-primary-opacity, 1);}.svg-inline--fa .fa-secondary { fill: var(--fa-secondary-color, currentColor); opacity: var(--fa-secondary-opacity, 0.4);}.svg-inline--fa.fa-swap-opacity .fa-primary { opacity: var(--fa-secondary-opacity, 0.4);}.svg-inline--fa.fa-swap-opacity .fa-secondary { opacity: var(--fa-primary-opacity, 1);}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary { fill: black;}.fad.fa-inverse,.fa-duotone.fa-inverse { color: var(--fa-inverse, #fff);}')])),bt=function(t){return t<0||1114111>>32-c3,Ja=o,Ya=T(function(t,n,e){for(;;){var a=N(Ja,Ha&n>>>t,e);if(a.$)return N(Ja,Ha&n,a.a);t=t-c3,n=n,e=a.a}}),qa=C(function(t,n){var e=n.a,a=n.b,r=n.c,n=n.d;return t<0||-1>>5<<5)?j(N(Ja,Ha&t,n)):j(M(Ya,a,t,r))}),Xa={$:0},Za={$:2},Qa=C(function(t,n){var e=N(Ie,V(["relatedTarget","attributes","data-select-id","value"]),Oe),e=N(x3,h(Za),N(x3,e4(function(t){return I(t,n.M)?Xa:Za}),X4(V([N(x3,j,e),A3(m)]))));return N(W8,"focusout",e)}),Ea=N(Ie,V(["target","value"]),Oe),_a=N(G5,"keyCode",K5),tr=C(function(t,n){return N(F8,t,{$:2,a:n})}),nr={$:6},er={$:5},ar={$:7},rr=C(function(t,n){return N(o9,"data-select-id",n.M)}),ir=s(function(t,n,e,a,r){var i,o,a=a.b?G:t.dK,r=1===r.$?m:(r=r.a,1===(i=n.ev).$?y0(r):N(qa,i.a%Z0(r),(i=r).b?M(Wa,i,G,0):f3));return K(V([N(T4,"autocomplete","off"),N(o9,"autocorrect","off"),N(tt,t.fi,N(Qa,t,n)),N(tt,t.fi,(o=1===(i=r).$?Ke("not Enter"):A3({$:9,a:i.a}),N(tr,"keyup",N(x3,function(t){return{a:t,b:!0}},N(H4,function(t){switch(t){case 13:return o;case 38:return A3(ar);case 40:return A3(nr);case 27:return A3(er);default:return Ke("not ENTER")}},_a))))),N(tt,t.fi,function(n){return N(tr,"keypress",N(x3,function(t){return{a:t,b:!0}},N(H4,function(t){switch(t){case 9:case 13:return N(h,Ke("nothing selected"),N(e4,N(H3,A3,i8),n));default:return Ke("not TAB or ENTER")}},_a)))}(r)),N(tt,t.fi,N(Ga,"input",N(x3,r8,N(x3,a8,Ea)))),N(tt,t.fi,N(W8,"focus",A3(Fa))),N(rr,t,n)]),K(V([J(oa)]),K(t.dp,a)))}),or=T4("placeholder"),cr=T4("value"),fr=s(function(t,n,e,a,r){var i=1===(i=n.e2).$?N(h,"",N(e4,t.g7,y0(a))):i.a;return V([N(ja,K($(ir,t,n,e,a,r),V([cr(i),or(t.gM)])),G)])}),sr=C(function(t,n){return N(Y,V([J(pa),N(tt,t.fi,n8({$:4,a:n}))]),V([function(t){return N(Y8,K(V([Z8("14"),V8("14"),X8("0 0 20 20")]),t.e3),V([N(k6,V([h6("M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z")]),G)]))}(t)]))}),lr=C(function(t,n){return 1===t.gE.$?E(""):N(sr,t,n)}),ur=C(function(t,n){return N(Y,K(V([J(da)]),t.dy),V([N(Y,V([J(ha)]),V([E(t.g7(n))])),N(lr,t,n)]))}),dr=C(function(t,n){return N(Y,K(V([J(ma)]),t.dz),N(W,ur(t),n))}),mr=s(function(t,n,e,a,r){var i=N(h,"",n.e2);return V([N(dr,t,a),N(ja,K($(ir,t,n,e,a,r),K(V([cr(i)]),a.b?G:V([or(t.gM)]))),G)])}),pr=s(function(t,n,e,a,r){var i=a.b&&t.f6?e8(t):E(""),n=$(t.gi?mr:fr,t,n,e,a,r);return N(Y,K(V([J(ca)]),t.dq),K(n,V([i])))}),hr=e(function(t,n,e,a,r,i){var o=t.g7(i),c=1===(c=t.gk).$?E(o):(0,c.a)(i),a=N(rt,i,a)?t.dS:G,f=1!==(f=n.ev).$&&I(f.a%e,r)?t.de:G;return N(Y,K(V([J(la),J(ua),N(o9,"data-select-item",o),(e=t.fi({$:9,a:i}),N(W8,"mousedown",A3(e))),N(rr,t,n)]),K(f,a)),V([c]))}),br=D(function(t,n,e,a){var r=I(e,G)?function(t){return""===t.gz?E(""):N(Y,K(V([J(la)]),t.dA),V([E(t.gz)]))}(t):E(""),i=Z0(e),o=!t.gA&&I(e,G)?V([N(X,"display","none")]):G,n=N(t3,P(hr,t,n,i,a),e);return N(Y,K(V([J(fa)]),K(o,t.b4)),N(b,r,n))}),gr=D(function(t,n,e,a){return 1===e.$?E(""):P(br,t,n,e.a,a)}),vr=D(function(t,n,e,a){return N(Y,V([J(sa)]),V([P(gr,t,n,e,a)]))}),yr=D(function(t,n,e,a){var r=1===(r=t.fO).$||1===(i=n.e2).$||""===(i=i.a)?e:K(N(W,r.a,N(za,t.fr,i)),e),i=P(Ua,t,n.e2,r,a);return N(Y,V([ya(n.M),J(ba)]),V([$(pr,t,n,e,a,i),N(Y,V([J(va)]),V([N(Y,V([J(ga)]),G)])),P(vr,t,n,i,a)]))}),kr=D(function(t,n,e,a){return P(yr,z0(t),D0(n),e,a)}),wr=m2("caption"),xr=T(function(t,n,e){switch(n.$){case 0:return e;case 1:return(a=n.a)(e);case 2:return y((a=n.a)(e));case 3:var a=n.a;return t?y(a(e)):a(e);default:a=n.a;return t?a(e):y(a(e))}}),zr=C(function(t,n){for(;;){if(!n.b)return m;var e=n.a.cJ,a=n.b;if(I(n.a.ae,t))return j(e);t=t,n=a}}),Ar=T(function(t,n,e){var a=t.b,t=N(zr,t.a,n);return 1===t.$?e:M(xr,a,t.a,e)}),Lr=T(function(t,n,e){return M(Ar,n,t.fK,e)}),Sr=m2("tfoot"),Br=m2("thead"),Rr={$:0},Cr=T(function(t,n,e){return N(W8,"click",N(x3,e,M(z3,r5,A3(t),A3(n))))}),Tr=T(function(t,n,e){var a=t.a,r=t.b,i=e.ae;switch(e.cJ.$){case 0:return{a:i,b:Rr,c:M(Cr,a,r,n)};case 1:return{a:i,b:{$:1,a:!I(i,a)},c:M(Cr,i,!1,n)};case 2:return{a:i,b:{$:1,a:I(i,a)},c:M(Cr,i,!1,n)};case 3:return I(i,a)?{a:i,b:{$:2,a:j(!r)},c:M(Cr,i,!r,n)}:{a:i,b:{$:2,a:m},c:M(Cr,i,!1,n)};default:return I(i,a)?{a:i,b:{$:2,a:j(r)},c:M(Cr,i,!r,n)}:{a:i,b:{$:2,a:m},c:M(Cr,i,!1,n)}}}),Dr=b2,Nr=C(function(t,n){n=(0,n.cZ)(t);return N(ee,n.aW,n.aZ)}),Mr=T(function(t,n,e){return N(ae,n(e),N(W,Nr(e),t))}),Pr=D(function(t,n,e,a){return{a:t(a),b:P(Dr,Mr,n,e,a)}}),$r=T(function(t,n,e){var a=t.g6,r=t.fK,i=t.fP,o=i.d5(N(W,N(Tr,n,t.fi),r)),o=N(Br,o.aW,V([N(ae,G,o.aZ)])),t=M(Lr,t,n,e),n=M(M7,"tbody",i.d3,N(W,M(Pr,a,r,i.dQ),t)),a=1===(e=i.d4).$?N(b,n,G):N(b,N(Sr,e.a.aW,e.a.aZ),N(b,n,G));return N(_n,i.gZ,1===(r=i.c3).$?N(b,o,a):N(b,N(wr,r.a.aW,r.a.aZ),N(b,o,a)))}),Ir=C(function(t,n){return U(n,{bo:j(t)})}),Or={$:0},Ur=T(function(t,n,e){return{$:7,a:t,b:n,c:e}}),Kr=function(t){return{$:1,a:t}},Gr=C(function(t,n){return t*i3(n/t)}),Vr=C(function(t,n){var e=t/n;return I(e,O9(e))?t:N(Gr,n,t)}),jr=g1,Fr=C(function(t,n){return K(t&&N(w4,function(t){return"0"!==t&&"."!==t},M(jr,b,G,n))?"-":"",n)}),Wr=function(t){return t===1/0||t===-1/0},Hr=T(function(t,n,e){return 0>1,K(n,n),1&t?K(e,n):e):e}),Jr=C(function(t,n){return M(Hr,t,n,"")}),Yr=T(function(t,n,e){return K(e,N(Jr,t-B3(e),u0(n)))}),qr=function(t){for(var n=t.length,e=Array(n),a=0;a "),N(vt,V([N(X,"color","#FFCA00")]),V([E("Intermediate")])),E(" -> "),N(vt,V([N(X,"color","#EF3159")]),V([E("Advanced")]))])),N(P9,G,V([E("You can hover or click on the dots to get more information. Click "),N(vt,V([N(X,"color","#EF3159")]),V([E("Clear filters")])),E(" to reset the list.")]))]),M(Yt,G,V([E("The didactic map of computational archaeology")]),N(Xt,!0,S7(p7(f4))))))),S=function(){var t;return 1===v.$?N(Ve,g,M(Jt,G,V([E("Error - this should never happen")]),N(Xt,!0,U(t=p7(c4),{dD:U(t.dD,{a8:j(1)})})))):(t=v.a,N(Ve,g,M(Tt,G,V([N(I4,V([M9,{$:4,a:V([B9(c4)])}]),V([E("Close")]))]),M(A4,G,V([N(pt,G,V([N(w,"Name: ",t.ae),N(w,"Author: ",N(q0,", ",t.bC)),N(w,"Year: ",t.d9),N(w,"Topic: ",t.hg),N(w,"Description: ",t.fV),N(w,"Language: ",t.gl),N(w,"Prog. language: ",N(q0,", ",t.co)),N(w,"Tools: ",N(q0,", ",t.hf)),N(w,"Level: ",function(t){switch(t){case 0:return"beginner";case 1:return"intermediate";default:return"advanced"}}(t.eM)),N(w,"Material type: ",t.gp),N(w,"Tags: ",N(q0,", ",t.cL)),N(w,"Tags OpenArchaeo: ",N(q0,", ",t.g_)),N(w,"Link: ",t.dt),N(w,"Citation: ",t.fG)]))]),M(Jt,G,V([E(t.M)]),N(sn,!0,N(Xt,!0,S7(p7(c4)))))))))}(),B=l.b?N(J3,e,f):f,R=T(function(t,e,a){return Pe({ae:t,cJ:Ne,cZ:function(t){return n=e(t),N(s4,G,V([N(Y,G,V([N(h9,V([xe,z4,M9,{$:4,a:V([z7(n),N(X,"margin-bottom","-5px"),N(X,"width","40px")])}]),V([t8(p9)])),N(I4,V([xe,z4,M9,{$:4,a:V([B9({$:14,a:i(a(t))}),N(X,"margin-bottom","10px"),N(X,"width","40px")])}]),V([t8(a9)]))]))]));var n}})}),c=function(t){var n=t.g6,e=t.fi,a=t.fP;return{fK:N(W,function(t){return t},t.fK),fP:a,g6:n,fi:e}}({fK:O(c,500)<0?V([N(A,"ID",function(t){return t.M}),P(k,"Material",function(t){return t.d9},function(t){return t.ae},function(t){return t.bC}),M(R,"",function(t){return t.dt},function(t){return t.M})]):V([N(A,"ID",function(t){return t.M}),P(k,"Material",function(t){return t.d9},function(t){return t.ae},function(t){return t.bC}),M(y,"Language",function(t){return t.co},a),M(y,"Tags",function(t){return t.cL},r),M(R,"",function(t){return t.dt},function(t){return t.M})]),fP:U(xt,{gZ:V([N(X,"width","100%")])}),g6:function(t){return t.M},fi:P0}),y=N(ut,V([qt(300),ot(600),I9(V([Fo(p),O4(d.B)])),zt(V([Fo(p),O4(d.D)])),N(S9,N0,N(jt,20,Lt)),N(R9,M0,Nt),N(A9,"mousemove",P(y9,u4,Nt,Dt,N(jt,20,Lt))),N(A9,"mouseup",M(v9,d4,Nt,Dt)),N(A9,"mouseleave",N(L9,C9(l4),Dt)),e9(V([N(X,"user-select","none"),N(X,"cursor",function(){if(C0(b).b)return"pointer";switch(m.$){case 0:case 1:return"grabbing";default:return"grab"}}())]))]),V([R8(V([o8,k4(10),L7,Ct(9)])),T8(V([o8,k4(10),L7,Ct(9)])),C8(V([o8,k4(10),L7])),D8(V([o8,k4(10),L7])),_(n9,function(t){return t.eO},function(t){return t.eO},-5,-5,V([N(X,"transform","translateX(-100%)")]),V([N(vt,V([N(X,"margin-right","5px")]),V([E(q(p)+"%")])),N(I4,V([{$:4,a:V([B9(m4),k9])},M9,xe]),V([E("+")])),N(I4,V([{$:4,a:V([B9(p4),k9])},M9,xe]),V([E("-")])),N(I4,V([{$:4,a:V([B9(h4),k9])},M9,xe]),V([E("⨯")]))])),$(Le,function(t){return 0},function(t){return 100},0,0,V([(A=V([N(H,"width",q(p/100*600)),N(H,"height",q(p/100*300)),N(H,"viewBox","0 0 2000 1000")]),M(Q,"svg",K(V([N(H,"xmlns:xhtml","http://www.w3.org/1999/xhtml"),N(H,"xmlns:dc","http://purl.org/dc/elements/1.1/"),N(H,"xmlns:cc","http://creativecommons.org/ns#"),N(H,"xmlns:rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#"),N(H,"xmlns:svg","http://www.w3.org/2000/svg"),N(H,"xmlns","http://www.w3.org/2000/svg"),N(H,"xmlns:xlink","http://www.w3.org/1999/xlink"),N(H,"xmlns:sodipodi","http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"),N(H,"xmlns:inkscape","http://www.inkscape.org/namespaces/inkscape"),N(H,"id","fantasyMap"),N(H,"width","100%"),N(H,"height","100%"),N(H,"viewBox","0 0 2000 1000"),N(H,"version","1.1"),N(H,"background-color","#000000"),N(H,"sodipodi:docname","comparchmap.svg"),N(H,"inkscape:version","0.92.3 (2405546, 2018-03-11)")]),A),V([M(Q,"metadata",V([N(H,"id","metadata393")]),V([M(Q,"rdf:RDF",G,V([M(Q,"cc:Work",V([N(H,"rdf:about","")]),V([M(Q,"dc:format",G,V([Z("image/svg+xml")])),M(Q,"dc:type",V([N(H,"rdf:resource","http://purl.org/dc/dcmitype/StillImage")]),G)]))]))])),M(Q,"sodipodi:namedview",V([N(H,"id","namedview1962"),N(H,"pagecolor","#ffffff"),N(H,"bordercolor","#666666"),N(H,"borderopacity","1.0"),N(H,"inkscape:showpageshadow","2"),N(H,"inkscape:pageopacity","0.0"),N(H,"inkscape:pagecheckerboard","0"),N(H,"inkscape:deskcolor","#d1d1d1"),N(H,"showgrid","false"),N(H,"inkscape:zoom","0.67048425"),N(H,"inkscape:cx","799.31644"),N(H,"inkscape:cy","394.06479"),N(H,"inkscape:window-width","1920"),N(H,"inkscape:window-height","1021"),N(H,"inkscape:window-x","0"),N(H,"inkscape:window-y","36"),N(H,"inkscape:window-maximized","1"),N(H,"inkscape:current-layer","layer1")]),G),M(Q,"defs",V([N(H,"id","defs198")]),V([M(Q,"g",V([N(H,"id","filters")]),V([M(Q,"filter",V([N(H,"id","dropShadow"),N(H,"name","Shadow 2"),N(H,"x","-0.0021458333"),N(H,"y","-0.0044831713"),N(H,"width","1.0047083"),N(H,"height","1.0107236")]),V([M(Q,"feGaussianBlur",V([N(H,"in","SourceAlpha"),N(H,"stdDeviation","2"),N(H,"id","feGaussianBlur2")]),G),M(Q,"feOffset",V([N(H,"dx","1"),N(H,"dy","2"),N(H,"id","feOffset4")]),G),M(Q,"feMerge",V([N(H,"id","feMerge10")]),V([M(Q,"feMergeNode",V([N(H,"id","feMergeNode6")]),G),M(Q,"feMergeNode",V([N(H,"in","SourceGraphic"),N(H,"id","feMergeNode8")]),G)]))])),M(Q,"filter",V([N(H,"id","dropShadow05"),N(H,"name","Shadow 0.5"),N(H,"x","-0.0012632986"),N(H,"y","-0.0027448815"),N(H,"width","1.0027051"),N(H,"height","1.0055948")]),V([M(Q,"feGaussianBlur",V([N(H,"in","SourceAlpha"),N(H,"stdDeviation",".5"),N(H,"id","feGaussianBlur13")]),G),M(Q,"feOffset",V([N(H,"dx",".5"),N(H,"dy",".7"),N(H,"id","feOffset15")]),G),M(Q,"feMerge",V([N(H,"id","feMerge21")]),V([M(Q,"feMergeNode",V([N(H,"id","feMergeNode17")]),G),M(Q,"feMergeNode",V([N(H,"in","SourceGraphic"),N(H,"id","feMergeNode19")]),G)]))])),M(Q,"filter",V([N(H,"id","paper"),N(H,"name","Paper"),N(H,"x","-0.014160214"),N(H,"y","-0.15921271"),N(H,"width","1.0283717"),N(H,"height","1.316945"),N(H,"filterUnits","objectBoundingBox"),N(H,"primitiveUnits","userSpaceOnUse"),N(H,"color-interpolation-filters","sRGB")]),V([M(Q,"feGaussianBlur",V([N(H,"stdDeviation","1 1"),N(H,"x","0%"),N(H,"y","0%"),N(H,"width","100%"),N(H,"height","100%"),N(H,"in","SourceGraphic"),N(H,"edgeMode","none"),N(H,"result","blur"),N(H,"id","feGaussianBlur24")]),G),M(Q,"feTurbulence",V([N(H,"type","fractalNoise"),N(H,"baseFrequency","0.05 0.05"),N(H,"numOctaves","4"),N(H,"seed","1"),N(H,"stitchTiles","stitch"),N(H,"result","turbulence"),N(H,"id","feTurbulence26")]),G),M(Q,"feDiffuseLighting",V([N(H,"surfaceScale","2"),N(H,"diffuseConstant","1"),N(H,"lighting-color","#707070"),N(H,"in","turbulence"),N(H,"result","diffuseLighting"),N(H,"id","feDiffuseLighting30")]),V([M(Q,"feDistantLight",V([N(H,"azimuth","45"),N(H,"elevation","20"),N(H,"id","feDistantLight28")]),G)])),M(Q,"feComposite",V([N(H,"in","diffuseLighting"),N(H,"in2","blur"),N(H,"operator","lighter"),N(H,"result","composite"),N(H,"id","feComposite32")]),G),M(Q,"feComposite",V([N(H,"in","composite"),N(H,"in2","SourceGraphic"),N(H,"operator","in"),N(H,"x","0%"),N(H,"y","0%"),N(H,"width","100%"),N(H,"height","100%"),N(H,"result","composite1"),N(H,"id","feComposite34")]),G)])),M(Q,"filter",V([N(H,"id","filter-sepia"),N(H,"name","Sepia"),N(H,"x","0"),N(H,"y","0"),N(H,"width","1"),N(H,"height","1")]),V([M(Q,"feColorMatrix",V([N(H,"values","0.393 0.769 0.189 0 0 0.349 0.686 0.168 0 0 0.272 0.534 0.131 0 0 0 0 0 1 0"),N(H,"id","feColorMatrix37")]),G)]))])),M(Q,"g",V([N(H,"id","deftemp")]),V([M(Q,"mask",V([N(H,"id","land")]),V([M(Q,"path",V([N(H,"d","m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2"),N(H,"fill","#ffffff"),N(H,"id","land_2")]),G),M(Q,"path",V([N(H,"d","m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9"),N(H,"fill","#ffffff"),N(H,"id","land_3")]),G),M(Q,"path",V([N(H,"d","m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2"),N(H,"fill","#ffffff"),N(H,"id","land_4")]),G),M(Q,"path",V([N(H,"d","m 905,166.3 c -1.3,0.7 -2.7,0.7 -3.7,0.4 -1,-0.4 -1.6,-1 -1.6,-3 0,-2 0.6,-5.4 1.8,-7.4 1.2,-2 2.8,-2.6 4.2,-1.3 1.3,1.3 2.3,4.7 2.1,7 -0.1,2.3 -1.5,3.7 -2.8,4.3"),N(H,"fill","#000000"),N(H,"id","land_5")]),G),M(Q,"path",V([N(H,"d","m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3"),N(H,"fill","#ffffff"),N(H,"id","land_6")]),G),M(Q,"path",V([N(H,"d","m 916.8,227.7 c -1.5,1 -4.1,2.6 -6,3.5 -1.8,0.8 -2.8,0.8 -4,0 -1.1,-0.9 -2.5,-2.5 -2.3,-4.7 0.2,-2.2 1.8,-4.8 4.3,-5.7 2.5,-0.8 5.9,0.2 7.7,1.4 1.8,1.1 2.2,2.5 2.2,3.3 0,0.8 -0.4,1.2 -1.9,2.2"),N(H,"fill","#000000"),N(H,"id","land_7")]),G),M(Q,"path",V([N(H,"d","m 1311,270.2 c -0.3,2.8 -1.7,4.8 -2.7,5.8 -1,1 -1.6,1 -3.3,0 -1.7,-1 -4.3,-3 -5,-5.8 -0.7,-2.9 0.7,-6.5 1.7,-8.5 1,-2 1.6,-2.4 3,-2.4 1.3,0 3.3,0.4 4.6,2.4 1.4,2 2,5.6 1.7,8.5"),N(H,"fill","#000000"),N(H,"id","land_10")]),G),M(Q,"path",V([N(H,"d","m 669.3,294.4 c -0.5,1.8 -1.6,2.9 -2.8,4.1 -1.2,1.2 -2.3,2.3 -3.9,1.4 -1.6,-0.9 -3.6,-3.9 -4.1,-6.6 -0.5,-2.6 0.5,-5 2.5,-5.8 2,-0.8 5,-0.2 6.7,1.3 1.6,1.5 2,3.9 1.6,5.6"),N(H,"fill","#000000"),N(H,"id","land_11")]),G),M(Q,"path",V([N(H,"d","m 897.3,300.8 c 1,1.2 1.4,3.2 0.5,4.9 -0.8,1.6 -2.8,3 -4.6,3 -1.9,0 -3.5,-1.4 -4.4,-2.5 -0.8,-1.2 -0.8,-2.2 0,-3.4 0.9,-1.1 2.5,-2.5 4.2,-3 1.7,-0.5 3.3,-0.1 4.3,1"),N(H,"fill","#000000"),N(H,"id","land_12")]),G),M(Q,"path",V([N(H,"d","m 741.2,343.5 c 0.5,1.5 0.1,2.5 -1.7,3.7 -1.8,1.1 -5.2,2.5 -7.3,2.8 -2.2,0.3 -3.2,-0.3 -3.7,-1.2 -0.5,-0.8 -0.5,-1.8 0.8,-3.8 1.4,-2 4,-5 5.7,-6.3 1.7,-1.4 2.3,-1 3.3,0.1 1,1.2 2.4,3.2 2.9,4.7"),N(H,"fill","#000000"),N(H,"id","land_13")]),G),M(Q,"path",V([N(H,"d","m 697.2,382.3 c -2.2,1.7 -5.2,1.7 -7,0.5 -1.9,-1.1 -2.5,-3.5 -2.4,-5.8 0.2,-2.3 1.2,-4.7 2.9,-6 1.6,-1.3 4,-1.7 6,-1 2,0.7 3.6,2.3 3.8,4.8 0.2,2.5 -1.2,5.9 -3.3,7.5"),N(H,"fill","#000000"),N(H,"id","land_14")]),G),M(Q,"path",V([N(H,"d","m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6"),N(H,"fill","#ffffff"),N(H,"id","land_15")]),G),M(Q,"path",V([N(H,"d","m 332.2,391.5 c 2.1,0.2 4.5,0.8 6.3,2.5 1.8,1.7 3.2,4.3 3.2,7.2 0,2.8 -1.4,5.8 -2,8 -0.7,2.1 -0.7,3.5 -0.2,4.5 0.5,1 1.5,1.6 4,2.3 2.5,0.7 6.5,1.3 8.8,1.8 2.4,0.5 3,0.9 4.4,1 1.3,0.2 3.3,0.2 4.6,0 1.4,-0.1 2,-0.5 3.9,-0.6 1.8,-0.2 4.8,-0.2 6.6,-0.4 1.9,-0.1 2.5,-0.5 4.4,-0.6 1.8,-0.2 4.8,-0.2 6.8,-0.4 2,-0.1 3,-0.5 4.5,-0.5 1.5,0 3.5,0.4 4.9,0.5 1.4,0 2.3,-0.1 3.1,-0.3 0.8,-0.2 1.7,-0.3 3.6,-1.6 1.9,-1.2 4.9,-3.6 6.3,-5.2 1.4,-1.7 1.3,-2.7 1.1,-3.7 -0.2,-1 -0.3,-2 -0.6,-3.8 -0.2,-1.9 -0.6,-4.5 0.2,-6.1 0.7,-1.6 2.6,-2.1 4.4,-2.6 1.8,-0.5 3.7,-1 4.9,-0.6 1.3,0.4 1.9,1.8 2.9,2.8 1,1 2.4,1.6 3.9,1.8 1.5,0.2 3.1,-0.2 5,0.4 1.8,0.6 3.8,2.1 5.8,3.6 2,1.5 4,3 4.5,5.1 0.5,2.1 -0.5,4.7 -0.8,6.6 -0.4,1.8 0,2.8 -0.4,4.6 -0.3,1.9 -1.3,4.5 -1.8,6.2 -0.5,1.7 -0.5,2.3 -0.7,3.7 -0.1,1.3 -0.5,3.3 -1.1,5 -0.7,1.6 -1.7,3 -2.4,3.8 -0.6,0.8 -1,1.2 -1.6,1.8 -0.7,0.7 -1.7,1.7 -3.5,2.5 -1.9,0.9 -4.5,1.5 -6.4,3 -1.8,1.5 -2.8,3.9 -2.6,5.9 0.1,2 1.5,3.6 1.3,5.6 -0.2,2 -1.8,4.4 -3.8,5.2 -2,0.8 -4.4,0.2 -6.2,-1.5 -1.8,-1.7 -3.2,-4.3 -5.2,-5.8 -2,-1.5 -4.6,-1.9 -6.8,-1 -2.2,0.8 -3.8,2.8 -4.7,5 -0.8,2.1 -0.8,4.5 -1.5,6.6 -0.6,2.2 -2,4.2 -3.3,5.4 -1.3,1.1 -2.7,1.5 -4.8,3 -2.2,1.5 -5.2,4.1 -6.9,6 -1.6,1.8 -2,2.8 -4.3,4.1 -2.3,1.4 -6.7,3 -9.2,3.9 -2.5,0.8 -3.1,0.8 -5,1.1 -1.8,0.4 -4.8,1 -7,1.4 -2.1,0.3 -3.5,0.3 -5.1,0.6 -1.7,0.4 -3.7,1 -5.9,1.2 -2.1,0.2 -4.5,-0.2 -6.5,0.2 -2,0.3 -3.6,1.3 -6,1.6 -2.3,0.4 -5.3,0 -7.1,-1.5 -1.9,-1.5 -2.5,-4.1 -2.4,-6.5 0.2,-2.3 1.2,-4.3 1.3,-6.2 0.1,-1.9 -0.8,-3.8 -1.6,-5.6 -0.8,-1.8 -1.7,-3.7 -2.2,-4.6 -0.6,-0.9 -1,-0.9 -2.8,-0.1 -1.8,0.9 -5.2,2.5 -7,3.5 -1.8,1 -2.2,1.4 -3.5,1.9 -1.3,0.5 -3.7,1.1 -5.8,2.6 -2.2,1.5 -4.2,3.9 -5.5,5 -1.4,1.2 -2,1.2 -3,1.9 -1,0.6 -2.4,2 -4.9,2.1 -2.5,0.2 -6.1,-0.8 -8.1,-1.6 -2,-0.9 -2.4,-1.5 -2.7,-2.4 -0.3,-0.8 -0.7,-1.8 -1.7,-3 -1,-1.1 -2.6,-2.5 -3.5,-3.8 -0.8,-1.3 -0.8,-2.7 -1.5,-3.8 -0.6,-1.2 -2,-2.2 -4.3,-2.5 -2.3,-0.4 -5.7,0 -7.5,0.3 -1.8,0.3 -2.2,0.7 -3.3,0.8 -1.2,0.2 -3.2,0.2 -4.9,0.5 -1.6,0.4 -3,1 -4.6,0.9 -1.7,-0.2 -3.7,-1.2 -5.7,-1.4 -2,-0.1 -4,0.5 -6.3,0 -2.4,-0.5 -5,-2.1 -5.9,-4 -0.8,-1.8 0.2,-3.8 0.2,-6 0,-2.1 -1,-4.5 -1.2,-6.3 -0.1,-1.8 0.5,-3.2 0.2,-4.8 -0.3,-1.7 -1.7,-3.7 -1.7,-5.7 0,-2 1.4,-4 3,-4.8 1.7,-0.9 3.7,-0.5 5.7,-1.2 2,-0.7 4,-2.3 5.7,-2.8 1.6,-0.5 3,0.1 5,0 2,-0.2 4.6,-1.2 6.5,-2.4 1.8,-1.1 2.8,-2.5 4.1,-3.3 1.4,-0.8 3,-1.2 4.7,-2.2 1.7,-1 3.3,-2.6 4.3,-3.8 1,-1.2 1.4,-1.8 3,-3.8 1.7,-2 4.7,-5.4 6.2,-7.7 1.5,-2.3 1.5,-3.7 1.7,-4.8 0.1,-1.2 0.5,-2.2 1.8,-3.4 1.3,-1.1 3.7,-2.5 6,-3 2.3,-0.5 4.7,-0.1 6.5,0.5 1.8,0.7 3.2,1.7 4.8,2.2 1.7,0.5 3.7,0.5 5.5,1 1.9,0.5 3.5,1.5 5,1.8 1.5,0.4 2.9,0 4.7,-1.3 1.8,-1.3 4.2,-3.7 5.3,-5.3 1.2,-1.7 1.2,-2.7 2.1,-3.8 0.9,-1.1 2.8,-2.2 4.6,-3.4 1.8,-1.2 3.7,-2.3 5.6,-2.1 1.9,0.3 3.9,1.9 5.9,2.6 2,0.7 4,0.3 6.2,0.5"),N(H,"fill","#000000"),N(H,"id","land_16")]),G),M(Q,"path",V([N(H,"d","m 634,385.2 c 3,0.5 4,1.1 4.5,1.8 0.5,0.7 0.5,1.3 0,2.3 -0.5,1 -1.5,2.4 -3.8,4 -2.4,1.7 -6,3.7 -7.9,6 -1.8,2.4 -1.8,5 -3,7 -1.1,2 -3.5,3.4 -4.6,5.2 -1.2,1.8 -1.2,4.2 -2.5,6.3 -1.4,2.2 -4,4.2 -7,4.4 -3,0.1 -6.4,-1.5 -8.2,-3.5 -1.8,-2 -2.2,-4.4 -1.7,-6.5 0.5,-2.2 1.9,-4.2 2.9,-5.5 1,-1.4 1.6,-2 2.1,-3.2 0.5,-1.2 0.9,-2.8 3,-4.5 2.2,-1.7 6.2,-3.3 8.4,-5.5 2.1,-2.2 2.5,-4.8 3,-6.5 0.5,-1.7 1.1,-2.3 4,-2.5 2.8,-0.2 7.8,0.2 10.8,0.7"),N(H,"fill","#000000"),N(H,"id","land_17")]),G),M(Q,"path",V([N(H,"d","m 2273.5,455 c 0.5,0.3 1,0.7 1.8,2.7 0.7,2 1.7,5.6 1.2,8.5 -0.5,2.8 -2.5,4.8 -4.7,5.8 -2.1,1 -4.5,1 -6,-1.3 -1.5,-2.4 -2.1,-7 -1,-10.2 1.2,-3.2 4.2,-4.8 6,-5.5 1.7,-0.7 2.2,-0.3 2.7,0"),N(H,"fill","#000000"),N(H,"id","land_18")]),G),M(Q,"path",V([N(H,"d","m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5"),N(H,"fill","#ffffff"),N(H,"id","land_19")]),G),M(Q,"path",V([N(H,"d","m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5"),N(H,"fill","#ffffff"),N(H,"id","land_20")]),G),M(Q,"path",V([N(H,"d","m 760.2,538.3 c -1.5,0.7 -2.9,0.7 -4.4,-0.1 -1.5,-0.9 -3.1,-2.5 -3.6,-4.4 -0.5,-1.8 0.1,-3.8 2.1,-5 2,-1.1 5.4,-1.5 7.4,-0.3 2,1.2 2.6,3.8 2.1,5.8 -0.5,2 -2.1,3.4 -3.6,4"),N(H,"fill","#000000"),N(H,"id","land_21")]),G),M(Q,"path",V([N(H,"d","m 823.5,524.8 c -0.2,2.5 -1.8,4.9 -4,5.7 -2.2,0.8 -4.8,0.2 -6.3,-0.7 -1.5,-0.8 -1.9,-1.8 -0.9,-3.8 1,-2 3.4,-5 4.9,-6.7 1.5,-1.6 2.1,-2 2.6,-2.1 0.5,-0.2 0.9,-0.2 1.7,1.1 0.8,1.4 2.2,4 2,6.5"),N(H,"fill","#000000"),N(H,"id","land_22")]),G),M(Q,"path",V([N(H,"d","m 114.2,538.7 c -0.5,1.6 -1.9,4 -3.4,5.5 -1.5,1.5 -3.1,2.1 -5,2 -1.8,-0.2 -3.8,-1.2 -4.8,-2.9 -1,-1.6 -1,-4 0.7,-6.1 1.6,-2.2 5,-4.2 7.3,-4.5 2.3,-0.4 3.7,1 4.5,2.1 0.8,1.2 1.2,2.2 0.7,3.9"),N(H,"fill","#000000"),N(H,"id","land_23")]),G),M(Q,"path",V([N(H,"d","m 651.8,555.5 c -2.1,0.8 -4.5,-0.8 -5.8,-3 -1.3,-2.2 -1.7,-4.8 -0.8,-6.8 0.8,-2 2.8,-3.4 4.3,-3.9 1.5,-0.5 2.5,-0.1 3.8,1 1.4,1.2 3,3.2 2.9,5.9 -0.2,2.6 -2.2,6 -4.4,6.8"),N(H,"fill","#000000"),N(H,"id","land_24")]),G),M(Q,"path",V([N(H,"d","m 801.2,544 c 0.1,2.3 -0.5,4.7 -1.5,6.2 -1,1.5 -2.4,2.1 -4.4,2.1 -2,0 -4.6,-0.6 -6.5,-1.8 -1.8,-1.2 -2.8,-2.8 -3.1,-4.8 -0.4,-2 0,-4.4 0.8,-5.9 0.8,-1.5 2.2,-2.1 4.3,-2.5 2.2,-0.3 5.2,-0.3 7.2,0.9 2,1.1 3,3.5 3.2,5.8"),N(H,"fill","#000000"),N(H,"id","land_25")]),G),M(Q,"path",V([N(H,"d","m 759.7,572.8 c 2,0.2 4.6,-2.8 6.6,-3.6 2,-0.9 3.4,0.5 4.2,1.5 0.8,1 1.2,1.6 0.5,2.8 -0.7,1.2 -2.3,2.8 -4.5,3.8 -2.2,1 -4.8,1.4 -6.7,2 -1.8,0.7 -2.8,1.7 -4.6,2.9 -1.9,1.1 -4.5,2.5 -7.2,2.3 -2.7,-0.2 -5.3,-1.8 -6.8,-3.5 -1.5,-1.7 -1.9,-3.3 -0.9,-5.7 1,-2.3 3.4,-5.3 6,-7 2.7,-1.6 5.7,-2 7.9,-0.5 2.1,1.5 3.5,4.9 5.5,5"),N(H,"fill","#000000"),N(H,"id","land_26")]),G),M(Q,"path",V([N(H,"d","m 1950,586.8 c 3,0.5 5,1.9 6.9,2.5 1.9,0.7 3.8,0.7 5.6,0.7 1.8,0 3.7,0 5.3,0.5 1.5,0.5 2.9,1.5 4.9,1.7 2,0.1 4.6,-0.5 6.6,-1.2 2,-0.7 3.4,-1.3 5,-1.3 1.7,0 3.7,0.6 5.2,0.8 1.5,0.2 2.5,-0.2 4.7,-0.3 2.1,-0.2 5.5,-0.2 8.3,0.8 2.8,1 5.2,3 6.8,4.2 1.7,1.1 2.7,1.5 4.2,2.1 1.5,0.7 3.5,1.7 5.3,2 1.9,0.2 3.5,-0.3 5.2,-0.8 1.7,-0.5 3.3,-1 5.2,-3.1 1.8,-2.1 3.8,-5.7 6.3,-6.6 2.5,-0.8 5.5,1.2 7.2,3 1.6,1.9 2,3.5 2.3,5.2 0.3,1.7 0.7,3.3 1,5 0.3,1.7 0.7,3.3 0.9,4.8 0.3,1.4 0.4,2.5 0.6,3.7 0.2,1.2 0.3,2.3 1.8,3.6 1.4,1.2 4,2.6 5.7,4.1 1.7,1.5 2.3,3.1 3.3,4.3 1,1.2 2.4,1.8 4,3.3 1.7,1.5 3.7,3.9 5.2,5 1.5,1.2 2.5,1.2 4.3,2.2 1.9,1 4.5,3 5.4,4.9 0.8,1.9 -0.2,3.8 -1.2,5.6 -1,1.8 -2,3.7 -3.7,4.8 -1.6,1 -4,1.4 -6,2.5 -2,1.2 -3.6,3.2 -5,4.2 -1.3,1 -2.3,1 -3.3,0.8 -1,-0.1 -2,-0.5 -4.5,-0.3 -2.5,0.2 -6.5,0.8 -9,0.3 -2.5,-0.5 -3.5,-2.1 -6.2,-2.5 -2.6,-0.3 -7,0.7 -9.5,1 -2.5,0.4 -3.1,0 -4.1,0 -1,0 -2.4,0.4 -4.2,2.2 -1.8,1.8 -4.2,5.2 -5.3,7.3 -1.2,2.2 -1.2,3.2 -2.9,4.9 -1.6,1.6 -5,4 -7.1,5 -2.2,1 -3.2,0.6 -4.9,-0.2 -1.6,-0.8 -4,-2.2 -5.5,-2.7 -1.5,-0.5 -2.1,-0.1 -4.1,0 -2,0.2 -5.4,0.2 -7.5,1.4 -2.2,1.1 -3.2,3.5 -4.7,5 -1.5,1.5 -3.5,2.1 -5,3.3 -1.5,1.2 -2.5,2.8 -4,4 -1.5,1.2 -3.5,1.8 -4.8,2.8 -1.4,1 -2,2.4 -2.2,4 -0.2,1.7 0.2,3.7 1,5.2 0.8,1.5 2.2,2.5 4.5,3 2.3,0.5 5.7,0.5 7.7,0.3 2,-0.1 2.6,-0.5 4.6,0.5 2,1 5.4,3.4 6.7,5.7 1.3,2.3 0.7,4.7 0.5,6.8 -0.2,2.2 0.2,4.2 0,5.4 -0.2,1.1 -0.8,1.5 -1.3,2.8 -0.5,1.3 -0.9,3.7 -2.7,6.3 -1.8,2.7 -5.2,5.7 -7.5,6.8 -2.3,1.1 -3.7,0.2 -5,-0.6 -1.3,-0.8 -2.7,-1.7 -3.7,-2.7 -1,-1.1 -1.6,-2.5 -2.6,-3.8 -1,-1.3 -2.4,-2.7 -4.9,-3 -2.5,-0.3 -6.1,0.3 -8.5,1.8 -2.3,1.5 -3.3,3.9 -3.6,6 -0.4,2.2 0,4.2 -0.2,5.7 -0.2,1.5 -0.8,2.5 -1,3.5 -0.2,1 0.2,2 0.7,2.8 0.5,0.9 1.1,1.5 1.8,3.5 0.7,2 1.3,5.4 2.8,7.4 1.5,2 3.9,2.6 5.2,4.6 1.3,2 1.7,5.4 1.2,7.5 -0.5,2.2 -1.9,3.2 -4.2,3.7 -2.3,0.5 -5.7,0.5 -7.8,-0.3 -2.2,-0.9 -3.2,-2.5 -3.7,-3.9 -0.5,-1.3 -0.5,-2.3 -1.5,-3.8 -1,-1.5 -3,-3.5 -4,-5.3 -1,-1.9 -1,-3.5 -2.2,-5.5 -1.1,-2 -3.5,-4.4 -4.3,-6.7 -0.8,-2.3 -0.2,-4.7 0,-6.2 0.2,-1.5 -0.2,-2.1 -1.7,-3 -1.5,-0.8 -4.1,-1.8 -6.5,-1.8 -2.3,0 -4.3,1 -5.8,3 -1.5,2 -2.5,5 -3.7,7 -1.1,2 -2.5,3 -3.1,4 -0.7,1 -0.7,2 -0.5,3.5 0.1,1.5 0.5,3.5 0.3,5 -0.2,1.5 -0.8,2.5 -1.2,3.5 -0.3,1 -0.3,2 -1.5,4 -1.1,2 -3.5,5 -5.5,6.3 -2,1.4 -3.6,1 -4.1,-0.6 -0.5,-1.7 0.1,-4.7 -0.7,-7.2 -0.8,-2.5 -3.2,-4.5 -4.5,-5.8 -1.3,-1.4 -1.7,-2 -2.2,-2.9 -0.5,-0.8 -1.1,-1.8 -1.5,-2.8 -0.3,-1 -0.3,-2 -0.1,-3 0.1,-1 0.5,-2 0.1,-4.7 -0.3,-2.6 -1.3,-7 -2.5,-9.6 -1.1,-2.7 -2.5,-3.7 -3.1,-4.5 -0.7,-0.9 -0.7,-1.5 -0.5,-2.4 0.1,-0.8 0.5,-1.8 0.5,-4 0,-2.1 -0.4,-5.5 -0.8,-8.3 -0.4,-2.8 -0.9,-5.2 -1.4,-7.5 -0.5,-2.3 -1,-4.7 -1.4,-6.1 -0.4,-1.4 -0.8,-1.9 -1.1,-2.4 -0.3,-0.5 -0.7,-1 -1.3,-2.6 -0.7,-1.6 -1.7,-4.2 -2,-6.7 -0.4,-2.5 0,-4.9 0.1,-6.4 0.2,-1.5 0.2,-2.1 -0.1,-2.6 -0.4,-0.5 -1,-0.9 -2.4,-2.7 -1.3,-1.8 -3.3,-5.2 -4,-7.8 -0.6,-2.7 0,-4.7 -1.6,-6.5 -1.7,-1.9 -5.7,-3.5 -6.4,-5.5 -0.6,-2 2,-4.4 4.5,-4.2 2.5,0.2 4.9,2.8 7.7,2.8 2.8,0 6.2,-2.6 8.2,-4 2,-1.3 2.6,-1.3 3,-3.3 0.3,-2 0.3,-6 1.1,-8.8 0.9,-2.9 2.5,-4.5 5.4,-5.4 2.8,-0.8 6.8,-0.8 9.7,-1.2 2.9,-0.4 4.8,-1.3 6.6,-2.1 1.8,-0.8 3.7,-1.7 3.9,-4.4 0.3,-2.8 -1.1,-7.4 -2.2,-9.9 -1.2,-2.5 -2.2,-2.9 -2.9,-3.4 -0.6,-0.5 -1,-1.1 -0.8,-3 0.2,-1.8 0.8,-4.8 3.2,-5.8 2.3,-1 6.3,0 8.5,0.2 2.1,0.1 2.5,-0.5 4,-1.4 1.5,-0.8 4.1,-1.8 6.3,-2.1 2.2,-0.4 3.8,0 5.5,-0.4 1.7,-0.3 3.3,-1.3 4.2,-3.5 0.8,-2.1 0.8,-5.5 1.1,-7.5 0.4,-2 1,-2.6 3.4,-3.1 2.3,-0.5 6.3,-0.9 9.3,-0.4"),N(H,"fill","#000000"),N(H,"id","land_27")]),G),M(Q,"path",V([N(H,"d","m 1589.8,717 c -0.1,0.3 -0.5,0.7 -1.1,1 -0.7,0.3 -1.7,0.7 -3.9,0.3 -2.1,-0.3 -5.5,-1.3 -7,-3.1 -1.5,-1.9 -1.1,-4.5 0,-5.9 1.2,-1.3 3.2,-1.3 5.4,0 2.1,1.4 4.5,4 5.6,5.5 1.2,1.5 1.2,1.9 1,2.2"),N(H,"fill","#000000"),N(H,"id","land_28")]),G),M(Q,"path",V([N(H,"d","m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0"),N(H,"fill","#ffffff"),N(H,"id","land_29")]),G),M(Q,"path",V([N(H,"d","m 2050.8,740.3 c 2.2,0.4 4.2,2 5.4,3.7 1.1,1.7 1.5,3.3 1,5 -0.5,1.7 -1.9,3.3 -3.4,3.8 -1.5,0.5 -3.1,-0.1 -5,-1.5 -1.8,-1.3 -3.8,-3.3 -4.6,-5 -0.9,-1.6 -0.5,-3 0.8,-4.1 1.3,-1.2 3.7,-2.2 5.8,-1.9"),N(H,"fill","#000000"),N(H,"id","land_30")]),G),M(Q,"path",V([N(H,"d","m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5"),N(H,"fill","#ffffff"),N(H,"id","land_31")]),G),M(Q,"path",V([N(H,"d","m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5"),N(H,"fill","#ffffff"),N(H,"id","land_32")]),G),M(Q,"path",V([N(H,"d","m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7"),N(H,"fill","#ffffff"),N(H,"id","land_33")]),G),M(Q,"path",V([N(H,"d","m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9"),N(H,"fill","#ffffff"),N(H,"id","land_34")]),G),M(Q,"path",V([N(H,"d","m 89.7,1041.7 c -1.7,1 -4.7,2.6 -6.4,3.3 -1.6,0.7 -2,0.3 -2.6,-1.5 -0.7,-1.8 -1.7,-5.2 -1.4,-7 0.4,-1.8 2,-2.2 3.7,-2.5 1.7,-0.3 3.3,-0.7 4.8,0.3 1.5,1 2.9,3.4 3.4,4.7 0.5,1.3 0.1,1.7 -1.5,2.7"),N(H,"fill","#000000"),N(H,"id","land_35")]),G),M(Q,"path",V([N(H,"d","m 2221,1040.3 c 1.7,0 4.3,-0.6 6,-0.8 1.7,-0.2 2.3,0.2 3.8,0.2 1.5,0 3.9,-0.4 5.9,-0.2 2,0.2 3.6,0.8 5.5,0.8 1.8,0 3.8,-0.6 6,-0.3 2.1,0.3 4.5,1.7 7.3,2 2.8,0.3 6.2,-0.3 8.3,-1 2.2,-0.7 3.2,-1.3 4.7,-1.7 1.5,-0.3 3.5,-0.3 4.7,-0.5 1.1,-0.1 1.5,-0.5 2.6,-0.5 1.2,0 3.2,0.4 4.5,1 1.4,0.7 2,1.7 2.7,4.2 0.7,2.5 1.3,6.5 0.8,9.7 -0.5,3.1 -2.1,5.5 -2.6,7.3 -0.5,1.8 0.1,3.2 0.3,4.2 0.2,1 -0.2,1.6 -1.7,3.1 -1.5,1.5 -4.1,3.9 -6.6,5 -2.5,1.2 -4.9,1.2 -6.5,1.5 -1.7,0.4 -2.7,1 -4,0.9 -1.4,-0.2 -3,-1.2 -4.7,-1.9 -1.7,-0.6 -3.3,-1 -5.2,-2 -1.8,-1 -3.8,-2.6 -5,-4 -1.1,-1.3 -1.5,-2.3 -3.6,-4 -2.2,-1.6 -6.2,-4 -8.7,-5 -2.5,-1 -3.5,-0.6 -4.5,0 -1,0.7 -2,1.7 -3.5,2.5 -1.5,0.9 -3.5,1.5 -6.2,1.5 -2.6,0 -6,-0.6 -8.5,-1.8 -2.5,-1.2 -4.1,-2.8 -5,-4.6 -1,-1.7 -1.1,-3.6 -1.3,-5.4 -0.2,-1.8 -0.3,-3.7 1.6,-5.6 1.9,-1.9 5.9,-3.9 8.2,-4.6 2.4,-0.6 3,0 4.7,0"),N(H,"fill","#000000"),N(H,"id","land_36")]),G),M(Q,"path",V([N(H,"d","m 1537.5,1094.3 c 1.8,1.4 2.2,3 1.6,4.5 -0.6,1.5 -2.1,2.9 -3.6,4.2 -1.5,1.3 -3,2.7 -4.9,2.7 -1.9,0 -4.3,-1.4 -5.6,-3 -1.3,-1.7 -1.7,-3.7 -1.7,-5.2 0,-1.5 0.4,-2.5 1.4,-3.5 1,-1 2.6,-2 5.1,-2 2.5,0 5.9,1 7.7,2.3"),N(H,"fill","#000000"),N(H,"id","land_37")]),G),M(Q,"path",V([N(H,"d","m 1603.5,1093.5 c 1.5,-0.2 2.5,-0.8 4.8,-1 2.4,-0.2 6,0.2 9,0.2 3,0 5.4,-0.4 7.7,-0.7 2.3,-0.3 4.7,-0.7 6.3,0.3 1.7,1 2.7,3.4 2.7,5.5 0,2.2 -1,4.2 0.2,6.5 1.1,2.4 4.5,5 5.6,8.2 1.2,3.2 0.2,6.8 -0.3,9 -0.5,2.2 -0.5,2.8 -1.8,4.2 -1.4,1.3 -4,3.3 -6.3,4.7 -2.2,1.4 -4.1,2.3 -5.9,3.1 -1.8,0.8 -3.7,1.7 -5.9,1.3 -2.3,-0.5 -4.9,-2.1 -6.3,-3.6 -1.3,-1.5 -1.3,-2.9 -3,-4.5 -1.6,-1.7 -5,-3.7 -7.1,-5.4 -2.2,-1.6 -3.2,-3 -4.2,-4.3 -1,-1.3 -2,-2.7 -2.8,-3.5 -0.9,-0.8 -1.5,-1.2 -2,-1.5 -0.5,-0.3 -0.9,-0.7 -1,-3 -0.2,-2.3 -0.2,-6.7 0,-9.3 0.1,-2.7 0.5,-3.7 1.3,-4.5 0.8,-0.9 2.2,-1.5 3.8,-1.7 1.7,-0.2 3.7,0.2 5.2,0"),N(H,"fill","#000000"),N(H,"id","land_38")]),G),M(Q,"path",V([N(H,"d","m 1417.7,1123.6 c 2,-0.1 2.6,0.4 3.3,0.9 0.7,0.5 1.3,1 1.3,3.3 0,2.2 -0.6,6.2 -2.6,8.5 -2,2.4 -5.4,3 -7.7,3 -2.3,0 -3.7,-0.6 -4.5,-2.8 -0.8,-2.2 -1.2,-5.8 -1.3,-7.7 -0.2,-1.8 -0.2,-1.8 0.3,-2.1 0.5,-0.4 1.5,-1 3.7,-1.7 2.1,-0.7 5.5,-1.3 7.5,-1.4"),N(H,"fill","#000000"),N(H,"id","land_39")]),G),M(Q,"path",V([N(H,"d","m 1695.2,1135.2 c 0.5,2.5 0.1,6.1 -0.5,8.3 -0.7,2.2 -1.7,2.8 -1.7,4.5 0,1.7 1,4.3 -0.2,6.8 -1.1,2.5 -4.5,4.9 -7.3,4.9 -2.8,0 -5.2,-2.4 -7.7,-3.5 -2.5,-1.2 -5.1,-1.2 -7.1,-2.4 -2,-1.1 -3.4,-3.5 -3.4,-5.7 0,-2.3 1.4,-4.4 2.7,-6.6 1.3,-2.2 2.7,-4.3 4.5,-5.4 1.8,-1.1 4.2,-1.1 6,-1.9 1.8,-0.9 3.2,-2.5 4.3,-3.5 1.2,-1 2.2,-1.4 3.4,-1.4 1.1,0 2.5,0.4 3.8,1.2 1.3,0.8 2.7,2.2 3.2,4.7"),N(H,"fill","#000000"),N(H,"id","land_40")]),G),M(Q,"path",V([N(H,"d","m 1914,1126 c 0.7,1.3 1.3,3.7 0.8,6.2 -0.5,2.5 -2.1,5.1 -3,6.8 -0.8,1.7 -0.8,2.3 -0.8,3.2 0,0.8 0,1.8 -1,3.1 -1,1.4 -3,3 -4.2,5.2 -1.1,2.2 -1.5,4.8 -3.3,6.5 -1.8,1.7 -5.2,2.3 -7.5,3 -2.3,0.7 -3.7,1.3 -5.7,0.8 -2,-0.5 -4.6,-2.1 -4.8,-5 -0.2,-2.8 2.2,-6.8 4.3,-9 2.2,-2.1 4.2,-2.5 6,-4.1 1.9,-1.7 3.5,-4.7 4.2,-6.4 0.7,-1.6 0.3,-2 1.7,-3.8 1.3,-1.8 4.3,-5.2 6.5,-6.8 2.1,-1.7 3.5,-1.7 4.5,-1.5 1,0.1 1.6,0.5 2.3,1.8"),N(H,"fill","#000000"),N(H,"id","land_41")]),G),M(Q,"path",V([N(H,"d","m 486,1160 c -0.7,-2 -0.3,-5 1.3,-7 1.7,-2 4.7,-3 5.4,-1 0.6,2 -1,7 -2.7,9 -1.7,2 -3.3,1 -4,-1"),N(H,"fill","#000000"),N(H,"id","land_42")]),G),M(Q,"path",V([N(H,"d","m 2216.8,1162 c -1.6,2.7 -5.4,7.3 -7.3,9.7 -1.9,2.3 -1.9,2.3 -1.9,2.3 0,0 0,0 -0.4,0 -0.4,0 -1.3,0 -1.8,0 -0.4,0 -0.4,0 -0.4,0 0,0 0,0 0,0 0,0 0,0 -0.2,-1.8 -0.1,-1.9 -0.5,-5.5 -0.1,-8.2 0.3,-2.7 1.3,-4.3 3.5,-5.2 2.1,-0.8 5.5,-0.8 7.5,-0.5 2,0.4 2.6,1 1.1,3.7"),N(H,"fill","#000000"),N(H,"id","land_43")]),G)])),M(Q,"mask",V([N(H,"id","water")]),V([M(Q,"rect",V([N(H,"x","0"),N(H,"y","0"),N(H,"width","100%"),N(H,"height","100%"),N(H,"fill","#ffffff"),N(H,"id","rect82")]),G),M(Q,"path",V([N(H,"d","m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2"),N(H,"fill","#000000"),N(H,"id","water_2")]),G),M(Q,"path",V([N(H,"d","m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9"),N(H,"fill","#000000"),N(H,"id","water_3")]),G),M(Q,"path",V([N(H,"d","m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2"),N(H,"fill","#000000"),N(H,"id","water_4")]),G),M(Q,"path",V([N(H,"d","m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3"),N(H,"fill","#000000"),N(H,"id","water_6")]),G),M(Q,"path",V([N(H,"d","m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6"),N(H,"fill","#000000"),N(H,"id","water_15")]),G),M(Q,"path",V([N(H,"d","m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5"),N(H,"fill","#000000"),N(H,"id","water_19")]),G),M(Q,"path",V([N(H,"d","m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5"),N(H,"fill","#000000"),N(H,"id","water_20")]),G),M(Q,"path",V([N(H,"d","m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0"),N(H,"fill","#000000"),N(H,"id","water_29")]),G),M(Q,"path",V([N(H,"d","m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5"),N(H,"fill","#000000"),N(H,"id","water_31")]),G),M(Q,"path",V([N(H,"d","m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5"),N(H,"fill","#000000"),N(H,"id","water_32")]),G),M(Q,"path",V([N(H,"d","m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7"),N(H,"fill","#000000"),N(H,"id","water_33")]),G),M(Q,"path",V([N(H,"d","m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9"),N(H,"fill","#000000"),N(H,"id","water_34")]),G)])),M(Q,"g",V([N(H,"id","textPaths")]),V([M(Q,"path",V([N(H,"id","textPath_label1"),N(H,"d","m 1336,227 34,0.3 c 34,0.2 102,0.7 175.3,1.2 73.4,0.4 152,0.7 191.4,0.8 l 39.3,0.2")]),G),M(Q,"path",V([N(H,"id","textPath_label2"),N(H,"d","m 1259,508 38.2,-8.3 c 38.1,-8.4 114.5,-25 172.9,-24.5 58.4,0.5 98.8,18.1 140.5,37.3 41.7,19.2 84.5,39.8 106,50.2 L 1738,573")]),G),M(Q,"path",V([N(H,"id","textPath_label4"),N(H,"d","m 1230,665 20.5,25.4 c 20.5,25.3 61.4,76.1 111.7,98.5 50.2,22.3 109.8,16.3 169,7.8 59.1,-8.5 117.9,-19.6 176,-33.8 58.1,-14.2 115.5,-31.6 144.1,-40.2 L 1880,714")]),G),M(Q,"path",V([N(H,"id","textPath_label5"),N(H,"d","m 674,809 10.7,-76.3 c 10.6,-76.4 32,-229 97.8,-347.2 65.8,-118.2 176.2,-201.8 231.3,-243.7 L 1069,100")]),G),M(Q,"path",V([N(H,"id","textPath_label6"),N(H,"d","m 434,617 18.8,21 c 18.8,21 56.4,63 103.7,79.8 47.4,16.9 104.5,8.5 157.2,-16.3 52.7,-24.9 101,-66.2 125.1,-86.8 L 863,594")]),G),M(Q,"path",V([N(H,"id","textPath_label7"),N(H,"d","m 447,197 33,-2.6 c 32.9,-2.6 98.8,-7.8 162.8,-9.8 64,-2 126.1,-0.8 157.2,-0.2 l 31,0.6")]),G),M(Q,"path",V([N(H,"id","textPath_label8"),N(H,"d","m 1386,532 31.3,-8.5 c 31.4,-8.5 94,-25.5 157.9,-46.7 63.8,-21.1 128.8,-46.5 161.3,-59.1 L 1769,405")]),G),M(Q,"path",V([N(H,"id","textPath_label9"),N(H,"d","M 36,295 73.8,273.3 C 111.7,251.7 187.3,208.3 225.5,150 263.7,91.7 264.3,18.3 264.7,-18.3 L 265,-55")]),G),M(Q,"path",V([N(H,"id","textPath_label10"),N(H,"d","m 943.5,538 h 30.1 c 30.1,0 90.2,0 161,36.2 70.7,36.1 152.1,108.5 192.7,144.6 L 1368,755")]),G),M(Q,"path",V([N(H,"id","textPath_label11"),N(H,"d","m -101,284 26.7,32.5 c 26.6,32.5 80,97.5 125.8,130 45.8,32.5 84,32.5 103.1,32.5 h 19.2")]),G),M(Q,"path",V([N(H,"id","textPath_label14"),N(H,"d","m 1271,463 26.1,-6.2 c 26.1,-6.2 78.2,-18.6 127.9,-41.7 49.6,-23.2 96.8,-57.2 120.4,-74.1 l 23.6,-17")]),G),M(Q,"path",V([N(H,"id","textPath_label15"),N(H,"d","m 1554,179 24.1,7.2 c 24,7.3 72.2,21.7 119.5,37.2 47.3,15.5 93.9,32.1 117.1,40.3 l 23.3,8.3")]),G),M(Q,"path",V([N(H,"id","textPath_label16"),N(H,"d","m 650,930 29.7,12.5 c 29.7,12.4 89.1,37.3 138.6,58 49.5,20.7 89.1,37.1 108.9,45.3 l 19.8,8.2")]),G),M(Q,"path",V([N(H,"id","textPath_label17"),N(H,"d","m -6.6,1063 h 21.8 c 21.7,0 65.3,0 123.2,9.8 57.9,9.9 130.3,29.5 166.4,39.4 l 36.2,9.8")]),G),M(Q,"path",V([N(H,"id","textPath_label18"),N(H,"d","m 496.2,873.5 27.5,-6 c 27.5,-6 82.5,-18 135,-46.5 52.5,-28.5 102.5,-73.5 127.5,-96 l 25,-22.5")]),G),M(Q,"path",V([N(H,"id","textPath_label19"),N(H,"d","m 257.2,950 23.1,3.8 c 23,3.7 69.2,11.2 113.3,31 44.1,19.9 86.3,52 107.3,68.1 L 522,1069")]),G),M(Q,"path",V([N(H,"id","textPath_label20"),N(H,"d","m 1981.2167,699 h 197.5666")]),G),M(Q,"path",V([N(H,"id","textPath_label21"),N(H,"d","m 1837,842 11.3,-26.3 c 11.4,-26.4 34,-79 65.1,-105.4 31.1,-26.3 70.6,-26.3 90.4,-26.3 h 19.7")]),G),M(Q,"path",V([N(H,"id","textPath_label22"),N(H,"d","M 150.85001,438 H 407.14999")]),G),M(Q,"path",V([N(H,"id","textPath_label23"),N(H,"d","m -42,74 18,16.4 c 18,16.5 54,49.4 88.2,95 34.1,45.7 66.5,104.2 82.6,133.4 L 163,348")]),G),M(Q,"path",V([N(H,"id","textPath_label12"),N(H,"d","M 575.13333,976 H 860.86667")]),G),M(Q,"path",V([N(H,"id","textPath_label13"),N(H,"d","m 770,820 19.8,21 c 19.8,21.1 59.3,63.1 105.6,109.4 46.3,46.3 99.4,96.8 125.9,122 l 26.5,25.3")]),G),M(Q,"path",V([N(H,"id","textPath_label24"),N(H,"d","m 1879,368 18,-12.1 c 18,-12 54,-36.2 90.6,-60.9 36.6,-24.6 73.8,-49.8 110.7,-75.6 36.8,-25.7 73.3,-52.1 91.5,-65.2 L 2208,141")]),G),M(Q,"path",V([N(H,"id","textPath_label25"),N(H,"d","m 2132.9667,189 h 220.0666")]),G),M(Q,"path",V([N(H,"id","textPath_label26"),N(H,"d","M 820.4,1118 H 838 c 17.6,0 52.8,0 106.7,-4.7 54,-4.6 126.6,-14 163,-18.6 l 36.3,-4.7")]),G),M(Q,"path",V([N(H,"id","textPath_label27"),N(H,"d","m 2150,464 21.1,10.4 c 21,10.4 63.1,31.2 103,52 39.8,20.8 77.3,41.7 96.1,52.2 L 2389,589")]),G),M(Q,"path",V([N(H,"id","textPath_label28"),N(H,"d","m 826,-46 26.7,14.3 c 26.6,14.4 80,43 91.5,108.2 11.5,65.2 -18.9,166.8 -34,217.7 L 895,345")]),G),M(Q,"path",V([N(H,"id","textPath_label29"),N(H,"d","m 1882,896 37.2,-2.2 c 37.1,-2.1 111.5,-6.5 192,-38.6 C 2191.7,823 2278.3,763 2321.7,733 l 43.3,-30")]),G),M(Q,"path",V([N(H,"id","textPath_label30"),N(H,"d","m 1221,563 18.5,23.3 c 18.6,23.4 55.6,70.1 94.5,98.4 38.8,28.3 79.4,38.3 99.7,43.3 l 20.3,5")]),G),M(Q,"path",V([N(H,"id","textPath_label31"),N(H,"d","m 2012,260 26.2,0.2 c 26.1,0.1 78.5,0.5 120.6,0.6 42,0.2 73.9,0.2 89.8,0.2 h 15.9")]),G),M(Q,"path",V([N(H,"id","textPath_label32"),N(H,"d","m 1501,141 17.8,-14.7 c 17.9,-14.6 53.5,-44 98.5,-24.3 45,19.7 99.4,88.3 126.5,122.7 L 1771,259")]),G),M(Q,"path",V([N(H,"id","textPath_label33"),N(H,"d","m 1027.5,1020 22.8,-5.5 c 22.9,-5.4 68.5,-16.4 111.9,-35.2 43.5,-18.8 84.6,-45.6 105.2,-58.9 L 1288,907")]),G),M(Q,"path",V([N(H,"id","textPath_label34"),N(H,"d","m 773,386 25.3,-9.7 c 25.4,-9.6 76,-29 135.2,-46.6 C 992.7,312 1060.3,296 1094.2,288 l 33.8,-8")]),G),M(Q,"path",V([N(H,"id","textPath_label35"),N(H,"d","m 1,781 16.3,11.5 c 16.4,11.5 49,34.5 87.4,60.3 38.3,25.9 82.3,54.5 104.3,68.9 l 22,14.3")]),G),M(Q,"path",V([N(H,"id","textPath_label36"),N(H,"d","m 1962,400 22.5,18.4 c 22.5,18.4 67.5,55.1 113.4,90 45.8,34.8 92.5,67.7 115.8,84.2 L 2237,609")]),G)]))])),M(Q,"pattern",V([N(H,"id","oceanic"),N(H,"width","100"),N(H,"height","100"),N(H,"patternUnits","userSpaceOnUse")]),V([M(Q,"image",V([N(H,"id","oceanicPattern"),N(H,"opacity","0.4"),N(H,"xlink:href","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAPUExURbHj79ry+J/c68Pp8u35+3+J9HQAAAo8SURBVFjDNJiLleMqEEQbcADCEADCGwAyCsA6Uv4xvVvNvD07H48F9Ke6qrDl2Pux9daOYi223nsz4yt26/1Tvz3w5mZhiz2bpV/vZvy1h2uYtaPmwQY9soZVRy5ps30Lbwt1M7uMZ8LdrVnd2P3MMVpMR9a/9X2zXsxuiyHaMexiJwIJP/0W+GqWFaKiITBWx6YnjGCGvh08Ex+ej7slrda5/DmXYWsZufGyW45sZS1b56hqFu4WLaU6WgwX0Rk18JCmQquXxWPE1zDCJ+tQCd3Cr/nupbHRVSyZSnbsRNZ3ogpfsk+qVtpU1/0Z43V7HdJFYOl4cmmRCGJuLfAoOe+bpcEaa3cnlFbHDBZYqTOGluZ8UajGz6hK6lnlYuoNaaVrVNK1VHNSdB6YdVb4o2w4wtbs5Q053qyheEd+Ntv0tDLywCLtyS/WJKVyk/RXcacYtKYokIfn82iVFzTD8kOXvBk0SU14vdW7xJ47J4aLAtvqR66Pinv9hd+obw6DIoOVm/DC1duHwEly+BJVOqU5DTR9NrVLYRVg8rb9nuP1tkTBiCWNQHSkPZpjJAnQtOje321XiY4vy23GSHKfDJAO6qoSqbQLi+MPVVHYfTdKtN+mo5USheH3mpWyIMkRglNjKy0EJZF023GT8n1ubKJXW0pUeVtYJOzSeyrg0Iagl7WGfudJJc53jETordMhb8G+kpSeAUdkqg5WULYRNDVsWuN5zMq3j+0RfBQbJNA6qFIPHCffSJAEVq/YT2KadUsTqLDHoaaOpAHTcF82Wa7wR19zFEDci8fn8Wze5ibIDLBH5t12zsgnxWV8gvdb1fgcTE+enHEzQSwIRTiOgQJ82KMOEhF2Sd7BPbqmehZ1guoF24fxk/km+VZ8xerNbyWvyCGkRuxMCa9/mms7KHU0L5GviDrnc/lIUIHmzS7TeSM3UYvoAoZQu6iKnVp+jP65vhrw7DhMogMNDr9vLcEAmTR4QGcQptacNOwAmgR2aZXOIMURD023Slq3GNUSVmhraEMFSKQBIU7mO5fsJADktGYnv2NoOMVQn5+JsmDd2OIBk5A6MF8tDsUnjMkjl3x5UqS9a80X1q1O784QKrjQVJJ384jxQ+tyKuTCsEZhHqbmoAeOp5zAJPmKS5wZRISsKcz866eRbO8eRN5EK/o3US3pZwrFdoybOYC//Z8a8srE/5wbeSgvjuC9J9PFRPLpXojdvgwT5EsR6FL55GeyE02B0Xl/Hir+4r9VgN3Od9caNrgavdx8FmqZ4QGHzAfdJ3f2fvkZirlB6GHjAOq6i7a7uLylg97B0EtDRHHiQkqi3sXz209aOMY7BqQR5Epj+AeEBS/mz2tMyVpzYoXgDueR8+RXKqVOjzn/9E+sfajiVuHYS5xXF3ZgxE0oFewpITU9ZjEXQTFRA5cmMotCfs1iBoM/TfOi9T8JpooO60hmXbac1mlBdEwGIaFR58+9hjuXYy5CBCwwy/EI4sXZWuDvCIECOvNXKzt60c+cDsZcsjySoDnWhGpIKCStb1mKqAMATAenXd0eshhBIjqWiKerBwpeWNW8ALZSJHmYQ80uCm6BXXRELQW2j33ekWi0QhNGKVpu8SNEzaO6gtqx1tVrisBZHCYrwAxzouS7hFTgBYuxuVpdUx0q7NYAszzM0Z3YBbqfnsdQbC5Ym2MA3FMDGQJGN4v6oMlNeVziKnXkkI4ooqkSq2RL56JYsAnJjZ35f1nroGLXGjkn3k5usBTSahH7R4jgJ3T1z+b9Q3vRLbmIqOpdU9ZsSbCYmRcABuL+Yrc6ArqQAvDzH7GazNlYOuciTIfcrogrBOStsk1zdOk5eEJZg2Go4u/f4FEYPPjuhPVvs9cTWSOrST1NXOTbr8jaCuPbRH0igRxTyO/mHo2pDNkLVr2FY3rBQtb0knYXEbpyS8dkdXbl7v40eVzO+YcA4N0TlMR2YgD2wirUrewXQt9SdV/DYQxbmY9UU04CwNtyjPxgBoGWyGN3aM38uDVSEYo8pLii+2w55KHaXDpyLYrcWs0OkyTG52tIlRie7PC1CzQpET0wMD2fn1jg+N8SHcsPShY16ih9UlDjUu8hOQnCBg+8LgdwvnRA0joOd4G+5bX9x7KSIo8sA4MRhYXNH48THyKF+Epy3TWupWI2ce6x9NgESsKlAYv6mOMej+UUJMvMu7QIPMhVZY0nxkOpw8tqZlBgnW1cGqUpIxTZs6i88cd3AhAzQ5hpaTHboel5+RvO0XOIXfojwNsScqii1+L9p3R/JXOn+/HBIKlwIlufFepIch2yXw+xuXmmlBCXCNMe+QjJo6ReCKJXr5yG1qjBqzdNHBs/chHedmuPp5syKketw42RRvy54kwYMnsvpctEPNyrvclF4r0lpGXhYaq5Gkt9pbquU7Iyg2VsBhkPeSW2lUbAZJ9t/qFUQpxk4HSOrS3OjYgZGhmMqisXK9KlRPDQJBvTosnhPPMUN3Jwsuq0rdufGC97UAEuFZEv0yplkk+cczLh0LiEgt7pHlTsosNeMOFX4mKufU6baiyzd+iSOEeVniOF1dzYYVhVYBl8WT3FxWSW7DL10/hq29cWd+nMqNgsFTn9wdGzkXbOyXqMi1ogXMn7dM0PidDcdv6UR/JZEbNKOpXGsTkRapohjFOyRJI3a5ImAXkuTmLr5lgQnOy875YhB/cx8kU04ntK7OWnguTajMvVLGXW23zUdrlEW8kr0yTyUNe6gAsLLiRP6U2T6YteoK/5nQWXyDts0Y5HG6aqB6DaSq2c1uhvCstfcJll1pJLu9sV4aRw06pyPHP5EiHbmyaaAF5iZarq90XBhAEOWlbFZCKBIY5NCgLf6QbD/Oap69kQa65bY/NLuXjb1l8AhWhEfB7/yPla8cp+ifYRG3yvRPJa91wfLNJZd0ytSYIWol/kjP4+YXAxciOTy5Z+euL8SVSR1+H23c9n26l2r089pMhaH4P4i4u5dOOWQUN6pMVB8xT10UeWpDLDSXe16SZHIlkphUxF0cXc/FMMN2gKTJ7i8hvndOz/4DKnF8mw1eMXh19dXIvlCVy4u4NQxtRJ7IfHBY7qcHW/iYT1dckB1PoEw5NpjsuaLwlR+zBJgnONbSwl0y3CdCt0d7nCck2S0J8jYnDV1uOJ8fR5l9y7bldd2dTLZRLMFUGEfXZFRMM35A7ouIEE4KpscrlTh5e5FjT0SYl7XN19aM3g2aQZDo+8bnfvCoSf+kBFSahPqgwa4dzj1+/zXh8DcWkpy4/re0ODi+TEaXiLH3roiizTZvItwjWGH0/odt/R5vd2MVwPYJiz7hT5o9wktllW9OEi1xuqzxVXpMkBdZtopPTH7agajpPVx0n/lWAGNgCDMAxj8MCkPlD6QvfA/n+KOFwAqCKx25BY1feDPZwiC1evb5Y29tm8XamQq2mp1H1iMc58DDyWEJheYc1WJVRhFtdBrYDG028WevOF27GK0tqt3psnkcKYPvgegQkepOo+AAAAAElFTkSuQmCC")]),G)])),M(Q,"g",V([N(H,"id","rose"),N(H,"stroke-width","1")]),V([M(Q,"g",V([N(H,"id","sL"),N(H,"stroke","#3f3f3f")]),V([M(Q,"line",V([N(H,"id","sL1"),N(H,"x1","0"),N(H,"y1","-20000"),N(H,"x2","0"),N(H,"y2","20000")]),G),M(Q,"line",V([N(H,"id","sL2"),N(H,"x1","-20000"),N(H,"y1","0"),N(H,"x2","20000"),N(H,"y2","0")]),G)])),M(Q,"use",V([N(H,"transform","rotate(45)"),N(H,"xlink:href","#sL"),N(H,"id","use139")]),G),M(Q,"use",V([N(H,"transform","rotate(22.5)"),N(H,"xlink:href","#sL"),N(H,"id","use141")]),G),M(Q,"use",V([N(H,"transform","rotate(-22.5)"),N(H,"xlink:href","#sL"),N(H,"id","use143")]),G),M(Q,"use",V([N(H,"transform","rotate(11.25)"),N(H,"xlink:href","#sL"),N(H,"id","use145")]),G),M(Q,"use",V([N(H,"transform","rotate(-11.25)"),N(H,"xlink:href","#sL"),N(H,"id","use147")]),G),M(Q,"use",V([N(H,"transform","rotate(56.25)"),N(H,"xlink:href","#sL"),N(H,"id","use149")]),G),M(Q,"use",V([N(H,"transform","rotate(-56.25)"),N(H,"xlink:href","#sL"),N(H,"id","use151")]),G),M(Q,"g",V([N(H,"stroke-width","8"),N(H,"stroke-opacity","1"),N(H,"shape-rendering","geometricprecision"),N(H,"id","g161")]),V([M(Q,"circle",V([N(H,"r","9"),N(H,"stroke","#000000"),N(H,"fill","#1b1b1b"),N(H,"id","circle153"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","75"),N(H,"stroke","#008000"),N(H,"fill","#ffffff"),N(H,"fill-opacity","0.1"),N(H,"id","circle155"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","212"),N(H,"stroke","#1b1b1b"),N(H,"id","circle157"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","211"),N(H,"stroke","#008000"),N(H,"fill","#ffffff"),N(H,"fill-opacity","0.1"),N(H,"id","circle159"),N(H,"cx","0"),N(H,"cy","0")]),G)])),M(Q,"g",V([N(H,"stroke","#1b1b1b"),N(H,"stroke-opacity","1"),N(H,"shape-rendering","geometricprecision"),N(H,"id","g175")]),V([M(Q,"circle",V([N(H,"r","71"),N(H,"id","circle163"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","79"),N(H,"id","circle165"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","94"),N(H,"id","circle167"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","152"),N(H,"id","circle169"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","164"),N(H,"id","circle171"),N(H,"cx","0"),N(H,"cy","0")]),G),M(Q,"circle",V([N(H,"r","207"),N(H,"id","circle173"),N(H,"cx","0"),N(H,"cy","0")]),G)])),M(Q,"g",V([N(H,"id","s3"),N(H,"stroke-opacity","1"),N(H,"shape-rendering","geometricprecision")]),V([M(Q,"g",V([N(H,"id","s2")]),V([M(Q,"g",V([N(H,"id","s1"),N(H,"stroke","#1b1b1b")]),V([M(Q,"path",V([N(H,"d","M 39.416,95.16 C 33.65,103.95 30.76,110.5 28.93,117.18 15.24,113.43 13.54,127.15 23.04,131 13.71,145.8 7.84,173.93 0,212 V 103 a 103,103 0 0 0 39.416,-7.84 z"),N(H,"fill","#47a3d1"),N(H,"id","path177")]),G),M(Q,"path",V([N(H,"d","M 39.416,95.16 C 33.65,103.95 30.76,110.5 28.93,117.18 15.24,113.43 13.54,127.15 23.04,131 13.71,145.8 7.84,173.93 0,212 V 103 a 103,103 0 0 0 39.416,-7.84 z"),N(H,"fill","#000000"),N(H,"transform","scale(-1,1)"),N(H,"id","path179")]),G),M(Q,"path",V([N(H,"d","m -31.995,160.849 a 164,164 0 0 0 63.99,0 C 18.9,170.1 8.4,176.3 0,207 -8.4,176.3 -18.9,170.1 -31.995,160.849 Z"),N(H,"fill","#c2390f"),N(H,"transform","rotate(22.5)"),N(H,"id","path181")]),G)])),M(Q,"use",V([N(H,"transform","rotate(45)"),N(H,"xlink:href","#s1"),N(H,"id","use184")]),G)])),M(Q,"use",V([N(H,"transform","rotate(90)"),N(H,"xlink:href","#s2"),N(H,"id","use187")]),G)])),M(Q,"use",V([N(H,"transform","scale(-1)"),N(H,"xlink:href","#s3"),N(H,"id","use190")]),G)])),M(Q,"symbol",V([N(H,"id","icon-anchor"),N(H,"viewBox","0 0 30 28")]),V([M(Q,"title",V([N(H,"id","title193")]),V([Z("Port")])),M(Q,"path",V([N(H,"d","m 15,4 c 0,-0.547 -0.453,-1 -1,-1 -0.547,0 -1,0.453 -1,1 0,0.547 0.453,1 1,1 0.547,0 1,-0.453 1,-1 z M 28,18.5 V 24 c 0,0.203 -0.125,0.391 -0.313,0.469 -0.063,0.016 -0.125,0.031 -0.187,0.031 -0.125,0 -0.25,-0.047 -0.359,-0.141 L 25.688,22.906 C 23.235,25.859 18.829,27.75 14,27.75 9.171,27.75 4.766,25.859 2.312,22.906 L 0.859,24.359 C 0.765,24.453 0.625,24.5 0.5,24.5 0.437,24.5 0.375,24.484 0.313,24.469 0.126,24.391 0,24.203 0,24 V 18.5 C 0,18.219 0.219,18 0.5,18 H 6 c 0.203,0 0.391,0.125 0.469,0.313 C 6.547,18.501 6.5,18.704 6.36,18.86 L 4.797,20.423 C 6.203,22.314 8.906,23.689 12,24.11 V 14.001 H 9 c -0.547,0 -1,-0.453 -1,-1 v -2 c 0,-0.547 0.453,-1 1,-1 h 3 V 7.454 C 10.812,6.766 10,5.485 10,4.001 c 0,-2.203 1.797,-4 4,-4 2.203,0 4,1.797 4,4 0,1.484 -0.812,2.766 -2,3.453 v 2.547 h 3 c 0.547,0 1,0.453 1,1 v 2 c 0,0.547 -0.453,1 -1,1 H 16 V 24.11 c 3.094,-0.422 5.797,-1.797 7.203,-3.687 L 21.64,18.86 C 21.499,18.704 21.453,18.501 21.531,18.313 21.609,18.125 21.797,18 22,18 h 5.5 c 0.281,0 0.5,0.219 0.5,0.5 z"),N(H,"id","path195")]),G)])),M(Q,"xhtml:style",V([N(H,"type","text/css")]),V([Z("@font-face {font-family: "Almendra SC"; src: url('data:font/woff2;base64,d09GMgABAAAAACyAAA0AAAAAc4wAACwrAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGYACBHBEICoHQKIGbSAuDJgABNgIkA4ZIBCAFhCoHg0sMBxufVkUHctg4MMBevI8oysUoAv6vl9tmzWvaPQV1IwkEIcFlBhNsEgRD++djF2HrA9/rB8zFAhuyS4qqjtJ8wdU6X7VHaOkj3iHYZkeFNjqxMACDEsVGoRVBJAwkLBQztzmnM2PTub1LXYW6qt9+Ljo+auv/vcz5Wg8IIRNN24ll4v55jecfDn/nvT+aS7+3waNFnPj2+Au0SKMNEtaFKC62u/fTizVRxGFmVUSBSXPzfTpzNumz9/K1O6sCuK2KLfcnkEt7L9hw57u+uwPWO8sE5yl5pJcZSJ2J/9SwcHuWhLDsgItwqVfArdyU6yUBAhQKvD8A5t82q/0zSd5jxSQr5dnrRby9bsurhs/CMPMZLAqskhPCKrAaeTeZDBoiaFZVyZlrsqdaiTbFlrmyOy+1KHvTMWQJXPqre2VuvUx3hNYxYWeqz2pD1Kw/o2vYkUCCA4lLGwMQAOAx0DgUBMTVNUPruQYhAOhrdwOgVzaDvGHzNZhNDunDCss/lVWAB+m2DbY1CABWKt8Mh1QBJ8omlsQvTiIMAI4NQeQycJ0aD2zRvFpbxDY/IEGl6dN9rx9MHElEkgfJmxRJ2vbjR02atXZwItR1HEjzSG54xILyvif2+A5s2f+xqnffmjFj2nElsRb5A+H1IPnB4NdUkOkAJwLSU+D/KAIGnZfmIShtchg4KIgrqIxgOgZloCfyaRXlEcm7DtLLB7h7w8CsZE/Ty2Hg42VgtPfw/KjFAQqSOskoGiKjEKHDE4LWhKBW1pOGRUIONUkUVy/3G0paf5HlYUKcRvpepExEbYXM/7QBFqKg1yl5w3w5pVWe2bAG0AHvcIAuUQx5tJ1/bOVT/11cf7eetvfzF+66o6QkEVQdc6kwLs1+a2Oz8+JhQ7qS0/2WG7ZXOHWtMpXjTCWYOLoQFcvMFsBqRAZoAVEaWk3Va3A2IEYsSuBJ0Co2xeMAB8iAKJkP413NcHSqwzxCu2dmW03IBZ1SHBTvkrqi94WoidFdt9dq1VHVucS1WKKlCrOq2URlsy1zKdmQVjelQKd0ZTocolM9x2g9NAOjE27GGyOTMEOSNKKhowcXLlmlK6h80Sme310+y83iUjHg5rT2tvBcvKnyMlp3BN5cgIWRsBHXuFMjQEtkN95UPKGIbvuo9OrHzgRZqnfismNPdPDt4JIHaWS2x5NLi4CQLhHYQEtYYFzFJgmf78YXLlzxaeCdvb+L+FjkuOSrnLO1nZe9sBHRq7IaoyYLrMu+EEwFWn+iudSXp6jqqQkiY2c/ODUycoFtKoCkJsd2pcOa3dHszjBlUG0aShmvaMz9ciomPEgHaQCZsCXfWB5/bfnmmMY/T4BI33pPjr7uIa0NGji5hH3cu7/KLI6DSW6TZNG2GGT9N01u2gWraE+BAouTigVPPS1XWPEJq9Tloml8ZzUs7TdqDNFUCTnc5DtvQQZR2SmhY0aZx2jVMU88pVY6sUNOcZj4aWRAtERuNzK2AKDNM3YHJmIdaunosciaxWc5xnvy0IJ1XN9TsLFM46zGkwl7xntrjjZRE/n4bU3VEzewQRdDRB39QtmsPWSyqB4LzbPeyNmExpz71QWxCRK2FGSwYsWn9cC/aiBzC8S2asnSfoPqPi6B8OwyJuEpyVNVgyqIMCpYLKh0xA/RLkeak07skifBjOhnaoNxFY8I0skno/YEsGZhs08rc9SASGt8NuEJb87H1b6OLIk0jSTGbY3tCRJ2D0YEjFvexYysmxAJe9gho2W0UtyNetfZiMNCDDUUP5nQgKiL2A68KvDLSuF5inYsTzy5YvwEZIZCsTKmdYbLgSrdf6FxC507TiTfRfzWtBmSJQt5qlhyAlVJHNBMMmWcNgiEVk8RrV3hmD1neY775VUNq2DJbY1XWHvAkI2ln2MfQ/9+1oaFt9IZNn6AVkn5eI5e8QORI7qBoQekbl5echyupQUga2ytjbHHmCfEqHU77TsB0PotvO9rt0sInTKoMctcQdaHGiwdmcxk5+N+nSfo4gZzvxKj/tz2kPKTSZ/G8ywdCyx4qcccWzeY87BT+tVobG+bZ2iA5mFO8rk5+zwR/cA4RhY0Q/HYySmSPTd9iG+8ShVzxah/k288bVC4QEuuV9lBChQMz8oh5s48IgeNW2yTAMT39Zgc3UZpzgZqYXLiztqqx1Tox5odUT0lKXImU8XxDKAa4TJUV7rGgqfaNvmqWIV0ugcXz7K0tIXKMH4quCwQuhzmOw3aNbsjWjc5DjdDwpsRkDWMVsqZ4s4rhuWdxuaEX9CP/v5rRHr4/NBgxTxtbzIueSJ8pld4kmMVnNYmr4NmyCox63hOjPZf7HxPdI7j8KtZQHyAwhd4yFRmAcPyNF3m1HmfilcXg3I9v+04U91Fcg4ytUWp4MGm8cHBeLZNsxv7VVAJrRSsgUlHIrnvVLP0GHLmFJ9TIW8s0lGg6JsBet0Ty1HVoLssTwByIoY+UnPCr6nqmYBauBmtjD/XHZ+mSu8NkJFz3PFiynNgXPrOV3IUH9HYDhh6K2pXcgWycyFy0raboQJkARlhGAq4JJoSRQtaJyJH1x3KP5KbgnbzTfGWzvCY2Kj/K0BvoskvRukphFrRsskB8ZiiGvOBKG9KcAqcNhyeKCoUJqDBWc7URS2DBg2oHL7Yyotcd5zotL3unVli56xlEM4JbcmNSbkP7niQdl0IkSgpI3URKtj/nuSJqyn7HIrj7XIql9xJ+CR/Ro/5FfTJeu2Pto8uprwk2rzQSGfLuuQJ+9xQu8lqGXTXwYhXjbVe+Ya/8jBP4JI+MMohnOsemu1Kmd8/2Lo3pEN2r1iPhdQBvLRUrek91i/f8EdoHIYKYVqsnFOABJjxLrwrpb+7AmOX2sBuWNaxnhK9aIZqs7woDLlOAxhMmmOA2NaZZMMNSikVylVLh2rvzTyJ0xGADFC34mWv4XzBVUOsF+l/Bs6cyU0ger815wM2BHerYNIxpT8o/UKO99niH741Dxk0dN+35wODjwzENe6TvuvLfRm743soV+b2Cbk+FJSncwsERItZfXtolqXXYArLOQRYCLSzPYP5HKY/Qw7z9VNfbB28a1S8AIsZC2ahz1Mtg+JOueh8DaYtFFwwzF/I4Ax9Fjm+sOwFtq6X9RyWE/WBEgFuAt0ngZb3uGteShbsjyh78/ix3cPAIk38dndotUcZxGpn49HJLuKSBw8O841Boyc9658JF6w837vIg/5x6ogc8Zs6fXhTxBJJYZm8xlIhaS9ESuEQZA+P+u3ghks2GybFammzGdG/7L5OvFqKovcitTRqw5SO4G+Ims/KTqWthxTzPPtxdK2ji+p84yHDlCuGqQosz6VwV6fOzttDnwnXQN4FlIBQe5MA065Yk+FsRgXwOrt2J4T2TFBHkUYPnegdL1fIJFCpClFgIXfjiLeX7FK1UgUWIGva3TKPASLb5fjFXOYpTVUOc5AlwYJyr9FHbINBOLB6P2NtGZtMhC95CrJ18as7s8JgupKu+wNxSEtSoASNbMFgsUbz+0HqCypsxcVHJ12z7A4gWc+0n+0ouPHXbiN25i8wy4lNPzatxNKVhZCujMp9ONyc6YAH84Cox+f1Cx54LMWpkeEJuJTQC7cbyq1azPJ4mpwl9Fi0eSb8qpveYugGa7YaJ2J123c9qtGjd6JnrCJZKDtw5jOlWB1AWV5hvVL6fkx3kWjpVNBQiA5kJDHSdBWRnIP4e1eiw5zrzrfI4REjgKMxaqWg0mdcuag83xhrbhuwTZ647cxzbgkpyJYvu7oqiyBLT4TiVRopxaNcLicMaSoiCLUQMnbtWohIMOEB2UkEGH8pZvk1F/0zKOy070niYSqEQjSk0eQrUWGejUPYUF1UG/tfjjt5/kLsuEgzBdm2+LTOnJfZjS6yN71LeLFwhsHSMp1NpB+pB2gRVngSlZz4QnzhquMDwVQseyY5Q3BgpNECc4spqUeNLCnA9VpKL7bZ5dKMVQRd8s1k/Or3q3nctm3vMiDPys1WIR3c8djTHjwWab1wxaAvPNpSTZn+fcylYsmSQZea3o0BtXvEAQLkrCERPuN6QCfGbeAR+9/NjyyqW3xpiUMYijSqOnjJIcoqCTUXKUspvnVmMdyiSm0oU+AMwheiAqoX2lkRSa8TnOepshFpqrqqOmU3vZr1EswiLLMHXGLSXLHg6J939pnkW+1rGXiTt4dq1kQH3G80mDsjxvQ+OSr+9yaRWw01y7Za7ePVaEyQzqIJznjoqAHdROONhlpHtxbLTM5kfVcFhsYx/0Q//BhaUtuYE9/qeYvqiJczwdLVfY3nSdqPgQazUJmuLUEnsvVWhdj7v0W4Rtk5RCMlmBNTu8NDbym67/Go9+qXWbJJXuKpVr5sZvYUVNpsmdcqqOJculDbkvcoUFiYdRn+8FvyLLHPc6dKX37CwhELgQgwVXYTkkyINHvCaC1ZXJMUT9he5KLOL6vdm+BVD2kDXYpZFSK+dcZFOktpl3M9s7NsJFY0uV5FINrcEFh31UDUCrVRK+oUm2mDph5z6zBZYRXgFsop6zKCBsqbCRFOrLb5XVC547IN1agzlTVoV0UfsRV0wuUdZnLHt7KyKjmzRsQFppeBcZCQPhBecLKOXwMetSsEWA1IwkURdLU6J6Jdxp74BSJgpmg9Zh/39middn4qvLaJ/T7D4Idlvt0zVo0zS37mOefBASJ/0Gkyy4gD5DJP1DCQUCCCsG4TPhAjQemQM/qL9GWJrP2zF9HeX4oHhBT1SPDoP6b0jyR/vslTsQfrGMuSS/HXpsMnodhnbHRu6UMPqmRYLTvXS3E9IGtOcnniUq2PGsyVrB+s88QGa9JLzPXV12n1TbyZ88I8USicGDPMSE9nrU8mkC7OWq876VsbH7y8YWNp8tz03fNYBXKaPJuR0+E1OJ7dXe/meEgWiXl1gYwWg1QP3PjpgM6srBywzu4fswKscLcBPcAKbhv0Ie1ki4MrcG3QkV+Y2kDEFuc3e5elvRwGHlyptwZb7cs+9mEJcczDwrGPN+dLIsuO3AFp52zcK0v+e/tn456Dl4l3h71TzbofcQw9Yw7YqD5Kw4lIC1JvpULKmg9a25JhyJ6Am3AH296WorrV9+hrGQ7Ig4o+tt1MOMGd8joUccl5gn+Ah5ipIO6wJYqlkkXsOTq08uitYRYPi13NRb6edJpHV02aUQWFINLUGD3w9nIOIxvKLHmbD7ENccJkMe8Y2ra65/MWPBkNRSCLV3Ln152DBIo2agldtpgLkh+ukCSUkPNIxtvNXmQm2ADk08oBm4uXnLQDTf0ZabJjtMXf+DcTFB9Nk2Y4duNtaWwABPMNQDXYlpogHWktAYClHbID7JNshbh4VOlKx3WT7LGFDncCPB2wbB9/JflmMXrziTvke5u+n6T2b1X6oiKobUtTPRzLsBX2ABl+cZPHvjSYZa6I0onqUXnOiBm+l0TSAkOerUDFfOwzkqV6o90Uoalw4ZxVupB7d1CKobP60WtL7lztXeAPFyPd3fakOftXNiYPhAdVYJSvlltOOWqemCpSsmonS8QYLbfcdBCv0gxbVXNlF338SfSMF73NQMU8Ce3Qip8kzp5N/CTbpa6r75FUsuerDXSzgrHBmj0EYjqvzOCwh9K6+2rDnecOggWVAsBC565eBLVu+ZOJMg/WQ4nPEdU2dtn44qKIeB0qvAxaOxKH2G2zuAhaszQOkeVyxaGV7ViGM0MSIC63jo7KcZat03/5D4dNSxEUGJID1RlHoPK/1rPVQP6HtQIhcPKjGFmI4dzIjFW2ISkFAhLQIeDjCqXUxUqB4DtRCW3X0NvzLva+O+KqDUKuypHsCCImMOAtSWiwO8Jpn3trrk610VuYKa9jPUSsPGnu5O2wY0rpiaz6/Bof7/fWGqvUZINOpbWSW6WmGhiJqYEpyVee1s6LBrIa942qSadqvuG2rfr4+gRdnG+tzVZ4mVxj6i33FK3297nZPMqtrBQSivosmeIqvQwuhKULo2Nrc4V2UpH9p3YFX2ldSgyzHiqyypEp86J7MuQt0hJjbyhY2V4EHAreZCSN9xz93CT9KDSMg/6a0ZFDETAqx434fB02fe45Og7OrV5mdwnJC10Nc9BOg0yuANh9HIQPjh/r0we8NgKxNJLNtHqlaB1ga8hI3iW7ZScF/FPL7I6ieOQ1/ZoIHly/nwWrtzoUzdtx6YGAh01o053RJwdrWxoQT86/EcOXyCC8+uzkPrCazhZaHo3HecVhx+7C6OEDpWeaBlOtu2PdZgQAuyjAGUQBjJbjlVYRQLWQq3dPsVeELwf0xpbxJXW9rnUuXS1jBehOnpGxhtfT2srref5OADfuh1kC5XZWZIVd3bRtkJVqd1i7+fQDb7K5zp62Bx0PVqfYZObgl52UbOAV79tK6oLD/14VzkgvV2v4hQytyee3Ir/lyNWpu67gGKWGpvR4TUZS4+yI02tgWUollCc6x4VdpAtkEiGnfZXDq+nINGTbBoklanBTHXHNwBbrnK7+sXlrhYU5an8LgWWVDheBFAe8/DWU8vvhv3uZQd4s5nzZreBW430fj3P5rL+4yVllE+zc8d+TCthl2pqPCQD6G6jUVuQS7QMpoD7Zj9sRFSbkhzfBzIRN0yKFtrVdjNQUhGBbcp1NkLwMg9LfpMmTArY6P+wlmSvixtg8Q33sSc/VaNU1+YlanVFbs+p8RfCJ1JjiKRCBWJYrE34hIuNjegUFsTk+N082hrS3ahXC6U25jgcR3T0BQnOgXrUF1H/+DgZnuMXybLZimaukSD8jzpU0VStNkRpzuXpFZBI7cWIf/QJ2wLgBfUkpZpsW13Jzgs5u8eCl0CSJgCMa1QkVcmM5UJAT2XCBEz/cbS747dDr+Ze5j8v/y8gKaozP64bndcUD7rnN6PvZyX1batEXzuLBXw+5BF+6ige64rvjGwchm0E5+J1J/ld2xP8vV6GhTCVTqGJ0JhMyDZY05NjtUFfntVzr3Tnw71TssVRsRLcEm6fbrFPzfQRTJk96noweJ055WDg6sHYwpq34QLztrs2bdp19SjxONDKXDV6vts3+rQhvJTJN2oqTfFjmJc4Rdzn1G+Jq5f/cNC7bVOFNGwKPTJiROHyGqI8aj9ouDb9IQfGhw5zGKees2k3c5yMbrXeiCWatTUn0CmR/966n+KCaDq9R2xW4qz1iTt3pBe274WXeIQoQMqxFzUFXfptfpkivhcfpBPykZSMpTjEaMkYtci5+q0PtK4X8JumbFyO/EfJdBg9bIPAuUqPMInhqVB01k7viqAichPMoqWnsmw/jKhb6p5Sk0rrOsWcbB43E3Hx7BDGtG6Vy6Q+UN7Wx89btYchArq1z8Tg6U8H5/6RFbbTD9Aw9XegTl0bGqKcqGC/QRjk8Vd+tYhvstUN5MqnVmq0ivDIvpjfnkUKsTpdXGChuVT7yD1AgLS7dgrFEHQoVP77RP1EWPKBLz3kpECRVg/M4ueMR084SVrUrKgc3ADXnTV0MPWgHWHxmoNo5yr/BN5uQFsdqzjphvx2MnmrNCrOJtf4lOjMpcqq9sVDgVF8/iht+scArP98e4ZK/A6Fw6Qx529nMTmm3A/we8yF8vKiP+mnnXPhFCsYMDscjh6fW4CYu0cMeyWktwZZAlOgm+YfFy/BSV6QMMpKAGRWiwTTKQBseCMMz8JveZG6OvvUvuGvBylbgM+RJ14EGysVw6fYsKNQ+cCk76gBKIWifSZw18RK7S8+OoXXKisR9WCWuCFwyhqXoTU3iMMB9XgW1T2PQ2s6W7TUUzQ37CINqLYZMgHrEbhHDCZmcgdDSyhnoGEY8mUcMrQd3LfjUJpTOzqPZupKhOS5Xe8SOZuhL9k6segp5OgJEabGKvz1zsuDz27HqabrDjrC4/xHSBaSKB6rxbaFmEBS2taT+HmQyj/LvPgKupmWA5XHPob+KbDPBfb5sKj7K6ONakPRD+ADAUre6r1rFfN17N1IkttP4rPVRh/Dx5PPh0iKoV/PzLdigTR98ZWaj8yx71YfLuVfeVYqL+0a82FZm2bb6cxCYHl84ZNN5p4FR07ei8cJI2z5J3niJeVt6VGWQftFUjNwlmHikw9HxllP6dlukL6+4LBvUkHGqSkxRcdBciD2ZmeJdQyVZNpmx+ARlwoCAE0+5hkprxqWZ/kMSsAYTPS1RdR7kCwPm2N02+w0hCajJY+bTNX7KODm9XBUQX/auTu1bN7+04V3/5WrS/IVD6Pnnq4Nb3iz2JZxwCfX6sh+0eOMzLCMyrM0riE5RvX7MHirlYvjGrudc4Jdk3NHqRcbHKSQdYnqCTzYqrRcrg+A3+61p8qYA3AbKGbImyGnjoRJ75iJB1IJejlk5NGRWRkka65WuKXJbx1hEjgtHuj5XHCCIFGhi1LxImY+5ZKWJshAvC48CP49O28nJ9ynfQkRYWTZRhUAW5+Azgnm/iOcTnPK1ajyFEf12cYM7vBmOraBc5Mzt/OTbJ8LHH40Kz3zUakvvjorgpXpVpLU0Rlh98vCRVFAzZbiYGe4ZsAG1ceg5dyYJG9+6as/hGqBvwjcFRquNZrZrDoQfl5jcuM+7EPgcFjinpZxd8JJyEVTD/ikU85JSau5kYsKPhAsi5pM3q36PP8g4LhaVSqu+W3wPPef7DDlK8gecUW/Yj56D/8443jVv5Vq0SstndYCTmU4RXIeyeOksRNM5e5LjspWFWfMrDy++5SvqoypR6ztCpkSUaeDEGrw5aB9xFE+/vGQGvP2XuLkoDZzbUcdeHFpSeidMXS9ORm5MR5cPmJ/NE1j5O6PXOhHYozli+0wfHtJe9kHl7ifFnKMUq4LSk2nAk1nB+Lshg6XeVLFJtYxXYHvik2O/B7A6XnzJjBF9x4jMl4qtrAgKiIliUkAIVsCFhtiNpXd6Jn39AncxBSwu5noaqNmPQdiuXv9PQIUzpEv6ibSH8abf0sYuAXjbZvRAdnKtqRbMuznkPNgg0cStPVyMQYMiByP2uAEbcf8DVuWLVbH14Z9G6yKIkzpo3guTr4OKFOTDMi+WRtSPNs/tRYtRuRmEAzV2XnaAjPwdmY36oOfFPYVHx7OrmuoF9vPUDuPbOkT2aWJ0kpvnqQMxu/pZqRleB5FCYlhbzjCEJVBwZGyAjxBfeCjQGj2zSuZfbd5ndovXWyMckDSjS4WvOt+VIsmdEFAvAx/kS2Tl/KLb7Qdy3Ihq+y3Sd91iPx5ZcRDJcw91KnhHlhZkk3igbSIqZ/DLhXKHJ4+yNFBBX2RB1XZlldIRmK6RDFU1SyikqFc+W/gt7UQrZs/5obqpEXfhaGkr04ApCz3oJ8P8xsMKG+Bql0yAjwhcDi/cX+tbgRNXDx1cadUBSyVUfxpep/vKocbNRZaDPFtqc6if7tREP3Nw5SmdX2gzNWI/GVUOyj8Uv5zqvQrVdtKKkZL3R/TptqGhrtkJaFEmm1Jg7nVNIlrQvCtQPX/NWE0LHPMZDC2t1huboNvoteAY0T+3KNrEecfTavZFWPahhYXmJa6j9RHSumreQzdh4ijrObQhYzA3yxqwHMvDPpZh/A6GrhxkLsQo4XcjqN0ov3OzNaq6qjTSVYYLTN4E6GEx3I/kKta8AzaVhnBv1o2ssQjiDcNceLu/FLvAyXaDrRP3NUGWRUwPtNMvkUYJ1n/DGNXo4jklyvcLbaJGYLTQ925XYHlMpE5S/XQfcEUOqtEvs2jFIma7YZ3Bv7tRTOT9Ds+Qa/j5uuVe89td24m2S/ML/XunMcpFzOXLRjv9iWlVTtGWjqQWRXtQ+9z9U5vBelzDwmtN+/JcLEXVd6q3W8i2z+loP3HhfCGPnX2XKj4nXQgCkK+Re5bEL9ap8TwWJuaXamSo1zkkPxrNW3oPF0vHiP3RSTQPMA4va7gksuBdzd9k9EtaL03+tnP3U7JktCSHZbBZeQY8U3JlvUSm60IkrMj4v8peEG5HjhbciL3gwRW3C93csLXF5lzvLUg+r3fWlbcIGbe3mAh+Ck/XUf3KI6ckMZ6csqJ1sqP24/A4F7d4ZpLAy1nC0fhLuJ7RBbWfYks/2rgtROhcfEig4hqJt74mFKt2LOgoykF/RUiwjeuj3VcFE9XbeHKMkxar7nF0c8kEF1yZXRjhzdt+SIt3dBeDI5y37SLd6hfvDMhoR+SY6QaLrcJlnGNom6thynsosFxyGAHIREw1n2Q2A1REvvT+CKwoom70U7iejeSLINQSwVLa+OI21g0jFp4SN8hatNU7Pn1L0FEgQXBqenYsOBKRitYrgMUefeqhPO3VylkatZT6G6SsZiGUi4/nT+m3+m0Ucyo6Xktk1iS3/4ffRrsDlPHiippuJF/0w5WA96hPY3URP1XSFm0sXfbkZ0NE3YZP4VHZzkmtmm53+w2QzOv+0Zu1K5pW/zO6P2LMfINVbcXUj2WsNkMlzkD5ynaqXYrlNVNfWjCyWesthoxuKyFUvX05TZzeXf3dP16W6Mq0bUDxo2Ol3M+9U+tVT4/h+RIR6fVczr4K+3XCXbwLl59V2BUHMdSPK93Ziz47EOweOIKdZ1I0BuIk01eIZ0ttKEzilD5F8x93+z/dTNohv6tyGlxOu+pHO8Ts/mc7FwycdsnL3o386O7Gg/SBBftTNHriFJMibsUW4n3PIzppyPMIRIwhclIFW73G+V4CMjHNJJndVuAH+DOFHnO3PPRFXkySkdwq/ZM1/VaDkoZNjgfHy7xBFuLfzQh5EkxefNC0KtETlvX0JJvvxz1mXRbuRCXobPHFIhfQhitUtV24Cywd8HxIdpuRYZVc1q0miHeyVCH4UybS7nrwdM0pmGrdCBaZOeH9ahqNNpocaQnAv1mM0zueXLAW+WjB9lfypIm1DtkGTKyuX5ukclg7Yc6n8PHqnPQ0hG986zKXKG101u14X0S+ZWGilZzenaBtPfu9PyFZutiAve0e80HhF+I55brkjSEOFyinNTMEH7+BDxALvCJYhuiEeFvnw1XaeWmHgNo9NPs6M9n7wekgKA8nhdzy0eAaYcDq02bUwJJ30/ifv4OlGpe8bLAHccf6TtTfiwbpA87CCJ4qeiBbzucFGJ5l8luRMq/IySdRmRmdmpRVH6IQv693gV9JecHFAwHaOL7jY0AARpZW3TmPYS9cbIAMp2gs3w7vVXglJOgmMnuk82J7AcT8t9K+xPmoqGzPtyfE03PEObbH08QVlz5u2/Fx+/1n50dAntAaexXE8OMn8+B2yf9lvHKxf8qzUrfKYHPyBHdmaJbESCVqiG7KxMt1GqFW+BMoJRZNcA2FWrajKVidRRP1ZvVz0zPkDMecUKGSBo7+1lrbsgn9IDuZB18ifgMc105WVHy6aStQnQZje7qxM13fLtFBfdWCxIDUEJwg4C8nrfdIJQoLp1K9vTCV0Ha6FpvNqsRNnwgr9p3BAvRaHWL+yeq+H9A2sLBHGVmlTv4aKY2qSlA/SNp1K8mWpn+tTD0IwKoZt/AZbFXx1Pi4XVdYj1/8/qkrUh56eCWiLyR9dMA9++ExlKOlWJ7jI5C4FSZ4ViP3HshyIqfJLgoeCxKyK7LtJ4HivKv117iV7fIXDB9trf1kBd1xKBWRwMhtS7arud11TpBVabGvO5UgbZRuxpdlgyW3Bp2HLGjM4eK1cRIN+PmxgygYKanzIPwtscnCinQsz4LsIy5HChx13vu+teONmOM4jY7d5qf17p9KUi63o1gyiUes4vekgTNDXmgX9g8yHpnDptSPy/EeuIr3DXAVJSOQZ06jjetch+uvp7hn2mQNlegmwWpXaPxTI3W3fXWvPV2jIReeaGQzugLuyc/SZoc1QZ9B61chjRFthyNIHVJ3W3thk3RClbEjnFSTnmfb3YoSgUaoMWNFRqfCQaFMXWHokLpZZXmzJ1sis9gkzao+jh6cWFg0kd+PV2eZgh21bEPhAY+sflMTXqjMCXWUM9IzwB1kUdjO63FUTFAFgx53+rNXTTbKduukPPBIVOdqTkEwTTXA7+NZHTDUfP3PFKmKK9U+ZX+yDKxWj+6J2dqHJJZm7eFBtoNRfxGjueb6RPoZAkfIl2/1XILX7YwSH+lTY48rnZ6aU1MODpTygZB70QcV9y7KMFviQlUyncrHPMCaveh7ObhflFWpfGQ6VWjcFvac4Fbfz62RPTsa1keIDI4Hscx96iLRK3GoEu8oCCMu/JeQ50EIVArBH1e++5Xjk3hzH31JyzYf39zlYduMDQ5B5rt0CyYrZmGoY68Yukiq7vylOwZm1KxMiUtQPFCX5HiVJXfUI4HwpaEteEt5sq7DuBy7aUmBudp2RAlcymJeI0PBb9iTrrAmbk7CUpomunRw3ixZD0/7THIIJ1ilUjxQF1SSrZKOZQrGN4V4gESI5WbwfnLSw/06uHJT86dIV5dhlZvKjT/9s13v+NwM+iTf6YU1A7JvZy09HGbMFVDW0T6uEu3RZwBdNZ+ATL9I9Hseh7beFpFz0dufb/pocHlQ0IvKK4Wc/Z/AzkdVjBfolJVlMGiwDDEOXQ4cR0K0kGFQdKNzLVCzVss9enpocl7W9gpx9dQBwQ0X/vRmd91YQX647Lt7M24PrsuIxAVv2aQeHxVX5h7Yi5tY8QwBt7e5CrJ8VF2+MyuvdxRMpCA+r2IWkrN7yt6dHLdZL9gxTmqcOpxXWM6dZSo9vNa7tbAkQ8S7gjm8sMTt/+mfw3U3FhZ/tC5nj2ycK7AgfnNC1/BG6KVJHT8/p4e5EqGfAeIcnGOCL2ITF+pr9v1OqorIZfYhMnM/4V8+1K95Mz61j9gr2Udek7Blk15GlWxjVfzBXL4m5E/6pp2g08GIxTfghA1wpUsmk5ThcAI1RvHmUpih0JZ6KGnqxXWbhalK181nEOhZkYjSrb7CMi/S8xluYu71RuFVXx7HGWmkuE27/QzwEQGXBdSJXIrENV/tW+FipCEdEHrreLNb876rJfOzjJ4C7cMLlvflhnN6SRTUw9ZErK2526ff2dumO66RhGQ6hmRqJMfBw2H4DTlFlFrDo3rRjIp3aq7M97Xbb+M+Wenz18s07HzyykeDi4eC1kU8tr64RQOjJwaoBM0cPtuLw7614vuh3EyDehz+Lyys7uXh/L8LrD68pD+e4iIBd8j7MOmC93mSK+2kg9cF0vP5db28bSUqYfrSd8p7Yj2eoBsZ/cGI6mI47UWNeu56BKjAgZ5fLH4P5unnatohPL7A5jPmRnXK223IjrzOSm+lfi26m8msCZyuwdplOuyuqkqnSOVkqY90gVrXtlHxoUtxfx8tpGfA4+IrCdm25f3ndXvW1WdjfbWSops52adN6Z0q1ilnrGQr7gHYcT+d5bcCXwVshck+ySq3SrVg2y8NeId49KgenQsPEW2fT3jXmlL6lfJVCZJ8gT/3WmcHZjsYXuIU32H0ROuqKQLXA6DUBegP2cm1o7UATn0zzXvIk//n5WO15XIqOptnxK0gKZ7pdfU+hL0HGG5pyC3e22qsujejn6e1PNZb5OgjkUdbf9tTD5H03HbUWurV2j1snzfgSvrsDFjTEZzYIIoZj0rJoOjT6iA5kz4aXKZNxnGhynrH+U7K/Np4gvSYtRLBc/KjTqS9G8NI9iGng2Xhjng8tFuBnNizlT8cAts78AXYnuCUf4bPMFHDam2AY540Ue4XS7G4AS5A+DoVLfjKjvvwa5ganYwLV+NvLA2cPdAKSxfQ3RI/QeALg1cp/x23agBC9i/29AGx7irPXikXsXzF9A1jR73Kuf1c0qAmf69r+KlvRzzf5370/dcDfVszx2OPcsOwAOkLrhghlv43HzFcn3MgAIBY8n9FdWfYRP8CbvADAHB+Qz4CAHBz98KpH+lLnm2DGgCgQQEAAAQ4ih11xQAq+ExLql0zKwFyAeg7+0yIUWKj8PNnYb3hXTo2s2L1xxqJZKsEcjYukpt89eDGDSFms/U+x4a1Yr4YFbPC2JgcM2ExNClH2Or4RhFCc+SrQSW7MQgrNefi5Sf/FlBxfgqC7ZsMRxfQqSxVhaAqY5lqcKaRycy1flaV7hrwY63dvTkVZadX4XomNxvPYKkxTHcMtWVHXkn3fO4rYTIDQQmPkNhZ8h9nAOhO/g6P4jR6rnw9ju5+gf6KXiGaHDT94HsJzTGB3ciPLhOQtQAvCFxDJHzlUwjuzPcEPPwvr3o9Xxw2+eLV/OV+8NpD43c6SeJKxOYZuj+TvwzEwpDsWsp7Ppi8zl4yAP0T4AoUJxCiCHYaQXsAcokeBdtqJBN5jMNyjTjw49tcU/t5iYdE9nA6n+A2MUTc6KESmPP0AbwRrUNZiGAJwDUQAwZDhHWSFM6io1DJcB3YBUKSEAjDR5hz7oJBz1hD/nQJusfLcHhgNMy6nVOu3NeAG+DnC8pwHRKS8AbILT3yn3NoADiqCeRJt1kjUgBwogjkVPeQb58LzU2cVtqXK1UsxSnja0HjRiF8Ili6eYY7kG/UHs3ApQEHRRA7xTME1Wqj5QFTDeeywiUgEsKJS5FQ1l5EwkTydyQcRVokAlF1JJKvxTtrLcTBEyUsK2+oLLDkV5P8cvzXpmxWUJBR2SxTEr80yzSaLEvMyy1W1isvL0NZMYqqUyLPUoLssaCYkVNG+VcaktoIbp3cylrKjFISQ6U9oBJVqCTGkuTNL7YklporPWNvD+yXe8InbNHUUlOc5fk7iMFisaOSE1ITo7LhyQUd+LTginRGKWPTVRWMyoHUpvXtwFUgcvHlkUxmVU7lPFPVdXNG1XxSZTuUhZNMKZFDyen+aAO2/NohjyXHPv57CpAUazFRO3sHR4KT8zwXoqubu4cnycvbx5dMofr5BwTS6AwmK4gdHMIJDQuPiIyK5sbE8vgCoUgskcbFyxLkikRlkkqt0SanpKbp0vUGoykjM2u9Vm2OGPWmXb8eEzab1O3eEiP+/qfPmE4nH/21yhYf/v24znZn53bIzhlkPp975tzlCxcvvc27fuXqTpY/h9y6cTP//W9dCguKSopL1yirKK+sqqmurXtXP79hQePC/dZqWrRYs19/P+j2LrvdeXh32oy99jk1a49fOhx1LOjxz+vmj/5o23X0AQ=='); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-variant: normal;}")]))])),M(Q,"g",V([N(H,"id","ocean"),N(H,"style","display:inline;shape-rendering:geometricPrecision")]),V([M(Q,"rect",V([N(H,"x","-0.64865482"),N(H,"y","-0.4043372"),N(H,"width","2001.2579"),N(H,"height","1001.211"),N(H,"id","rect208"),N(H,"style","display:inline;fill:#80b3ff;stroke-width:0.843286;shape-rendering:geometricPrecision;fill-opacity:1"),N(H,"inkscape:label","rect208"),N(H,"fill","url(#oceanic)")]),G),M(Q,"path",V([N(H,"d","m -0.64865472,-0.40433722 c 0,0 0,0 0,13.81568722 0,13.730408 0,41.276503 0,55.09219 0,13.730408 0,13.730408 0,13.730408 0,0 0,0 9.42258982,3.581845 9.5059759,3.581845 28.3511549,10.660253 49.5311359,17.994507 21.096594,7.24898 44.444609,14.58322 61.538689,28.39893 17.09407,13.81567 27.93422,33.94224 36.68971,57.56535 8.75553,23.62313 15.42638,50.57225 32.35369,64.64378 17.01068,14.07154 44.19444,15.26548 72.96253,11.4278 28.76808,-3.8377 59.12048,-12.70703 78.79953,-26.60799 19.76243,-13.90097 28.93486,-33.00416 30.60257,-53.98352 1.66771,-21.06469 -4.16929,-44.09083 -6.83764,-65.66717 -2.58495,-21.661639 -2.08464,-41.788198 11.00693,-49.634145 13.09155,-7.845946 38.60759,-3.240716 66.70859,-2.729025 28.10101,0.596975 58.62018,-2.814306 85.88733,1.449796 27.26713,4.264101 51.11547,16.203584 76.71489,19.870711 25.59943,3.75241 52.78318,-0.852819 78.21583,-4.690511 25.43266,-3.837692 49.11421,-6.907844 74.21332,-1.790922 25.1825,5.116921 51.86594,18.420916 76.6315,19.017896 24.68219,0.59697 47.52988,-11.683642 64.20704,-12.110051 16.67714,-0.426412 27.18376,11.001381 22.76431,28.569481 -4.41945,17.65337 -23.93172,41.53234 -23.18125,60.46496 0.6671,18.84732 21.51353,32.83357 26.93361,49.88998 5.42006,17.05642 -4.58622,37.18296 -23.76495,44.43194 -19.17873,7.24897 -47.52986,1.62036 -75.46411,2.30261 -27.93421,0.68226 -55.45151,7.84594 -81.30109,22.7703 -25.84959,14.92436 -50.03146,37.60938 -54.86783,61.91475 -4.91977,24.30538 9.58936,50.23112 26.09974,71.38106 16.51038,21.14994 35.18878,37.69467 51.03208,60.37967 15.84329,22.77031 28.85147,51.7662 23.4314,76.24215 -5.42008,24.39065 -29.26841,44.34664 -48.36375,62.93813 -19.01194,18.59148 -33.18752,35.98901 -53.45026,46.64927 -20.34612,10.66025 -46.696,14.58322 -73.29607,19.18846 -26.51668,4.51993 -53.20011,9.63686 -75.96442,6.39615 -22.84769,-3.326 -41.69288,-14.92436 -57.95309,-33.00415 -16.26024,-18.07979 -29.93549,-42.47046 -40.44209,-67.96978 -10.59,-25.41404 -18.09471,-51.85147 -13.5085,-75.73044 4.58623,-23.87896 21.26338,-45.19947 18.92858,-63.27927 -2.4182,-17.99451 -23.76495,-32.83357 -48.36375,-33.68638 -24.59879,-0.85282 -52.44962,12.28061 -77.1318,23.6231 -24.76558,11.34251 -46.44587,21.06468 -58.95373,39.05917 -12.50786,18.0798 -15.8433,44.51723 -27.51732,68.99318 -11.67399,24.39064 -31.68658,46.90511 -49.78129,52.53371 -18.01131,5.7139 -34.18815,-5.37276 -53.03332,-17.31225 C 111.92211,583.77756 90.241813,570.98525 67.894432,557.85182 45.463665,544.6331 22.449197,531.15854 10.858579,524.42125 -0.64865472,517.5987 -0.64865472,517.5987 -0.64865472,517.5987 c 0,0 0,0 0,45.11419 0,45.1142 0,135.34258 0,180.45678 0,45.11419 0,45.11419 0,45.11419 0,0 0,0 10.67337572,6.82255 10.756762,6.82258 32.103515,20.55298 53.116724,34.53923 21.013207,13.98626 41.526095,28.14306 63.623335,35.81845 22.09721,7.67539 45.77877,8.86933 71.04465,14.92435 25.26588,6.14031 52.28287,17.22697 80.88417,23.02616 28.60132,5.88447 58.95373,6.39616 87.55505,10.83081 28.60131,4.43467 55.61829,12.62174 83.55251,19.01789 27.93423,6.39616 56.78571,11.00138 83.80268,12.53646 26.93359,1.53508 51.94932,0.17057 64.9575,8.78404 13.00818,8.69879 14.00881,27.46082 14.59251,36.84185 0.50031,9.38105 0.50031,9.38105 0.50031,9.38105 0,0 0,0 9.58937,0 9.58936,0 28.76807,0 38.35745,0 9.58934,0 9.58934,0 9.58934,0 0,0 0,0 7.67151,-10.91612 7.67148,-11.0014 23.09784,-32.8336 45.36184,-42.21462 22.26398,-9.38102 51.44901,-6.31086 80.38386,-7.67537 28.85148,-1.4498 57.53617,-7.41953 86.38763,-13.21873 28.93487,-5.88446 58.11987,-11.51308 83.7193,-10.66024 25.51604,0.85282 47.52974,8.18707 68.79324,4.09353 21.2634,-4.09353 41.7763,-19.78543 65.4578,-31.72492 23.5981,-11.93947 50.2816,-20.12655 77.9657,-26.011 27.6006,-5.79918 56.2854,-9.21047 83.4691,-9.03991 27.2672,0.0853 53.1167,3.83769 79.1331,10.23385 25.933,6.39615 52.1161,15.43605 75.1306,25.1582 23.0978,9.63686 43.1105,19.8707 52.2829,13.47457 9.1723,-6.39615 7.5046,-29.42231 21.4301,-42.47047 13.8421,-13.13343 43.3605,-16.20357 71.7952,-15.35075 28.5179,0.85281 56.0351,5.62861 85.3869,3.83768 29.2684,-1.87621 60.4547,-10.40441 90.9739,-16.37415 30.6024,-5.96974 60.6215,-9.38102 88.8058,-13.21871 28.2677,-3.8377 54.6177,-8.1018 79.2165,-15.52133 24.5987,-7.33426 47.4465,-17.90922 61.4553,-21.14994 14.0087,-3.15544 19.3455,0.85283 21.9304,2.89958 2.6684,2.04677 2.6684,2.04677 2.6684,2.04677 0,0 0,0 0,-19.52959 0,-19.44429 0,-58.41818 0,-77.94776 0,-19.44431 0,-19.44431 0,-19.44431 0,0 0,0 -11.424,-4.86108 -11.3404,-4.86107 -34.188,-14.58321 -34.188,-23.53783 0,-8.86934 22.8476,-17.05641 34.188,-21.06465 11.424,-4.09356 11.424,-4.09356 11.424,-4.09356 0,0 0,0 0,-14.58321 0,-14.49795 0,-43.6644 0,-58.16234 0,-14.58324 0,-14.58324 0,-14.58324 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.04676 0,-1.96149 0,-6.05503 0,-8.10179 0,-1.96149 0,-1.96149 0,-1.96149 0,0 0,0 -3.9193,-0.85282 -3.8356,-0.85282 -11.674,-2.47318 -25.8494,-10.66026 -14.1756,-8.18708 -34.6887,-23.02614 -58.0366,-37.95049 -23.3479,-14.92436 -49.5311,-29.934 -72.7123,-44.43194 -23.1813,-14.49795 -43.5274,-28.4842 -58.1199,-41.70291 -14.5924,-13.21871 -23.4313,-25.6699 -39.0245,-25.41406 -15.5932,0.25585 -37.7738,13.38928 -61.8723,23.02616 -24.015,9.63686 -49.8646,15.94775 -71.9619,12.53646 -22.0973,-3.41129 -40.4421,-16.54472 -61.4553,-17.22697 -20.9298,-0.68226 -44.6114,10.91608 -69.2102,22.42917 -24.5988,11.51307 -50.1147,22.94087 -79.2998,30.27512 -29.185,7.41954 -62.039,10.83081 -91.2238,13.81568 -29.1852,2.98487 -54.7012,5.54335 -59.8711,-5.28748 -5.17,-10.74553 10.173,-34.96563 29.7686,-53.38655 19.5958,-18.5062 43.444,-31.2985 69.2936,-43.49383 25.8496,-12.28062 53.7004,-23.87897 79.2164,-25.49933 25.5994,-1.53508 48.9476,6.99312 72.8793,1.87621 23.8482,-5.11693 48.3636,-23.87897 71.3781,-40.25312 23.098,-16.28885 44.7783,-30.27512 50.1982,-47.33152 5.4201,-17.05642 -5.4199,-37.18298 -12.0909,-56.11558 -6.6708,-18.9326 -9.1723,-36.5007 3.1687,-40.50895 12.4245,-4.00827 39.6082,5.71388 66.7086,2.3026 27.1003,-3.41128 54.1173,-19.956 82.4686,-25.75517 28.351,-5.79918 58.0363,-1.02339 83.8861,8.35763 25.8494,9.38104 47.8633,23.36729 68.543,23.87898 20.6796,0.59696 40.1919,-12.19534 54.4509,-19.18846 14.3422,-6.99314 23.5147,-8.27236 28.101,-8.86932 4.5862,-0.59698 4.5862,-0.59698 4.5862,-0.59698 0,0 0,0 0,-18.250361 0,-18.250355 0,-54.751061 0,-73.001415 0,-18.2503547 0,-18.2503547 0,-18.2503547 0,0 0,0 -0.1668,-0.3411281 -0.083,-0.34112809 -0.417,-0.93810226 -0.5004,-1.27923034 -0.1667,-0.34112808 -0.1667,-0.34112808 -0.1667,-0.34112808 0,0 0,0 0,0 0,0 0,0 -54.034,0 -54.0339,0 -162.1854,0 -216.2193,0 -54.0338,0 -54.0338,0 -54.0338,0 0,0 0,0 0.5836,1.96148652 0.5004,2.0467688 1.5843,5.969742 -4.0858,5.969742 -5.587,0 -17.928,-3.9229732 -24.182,-5.969742 -6.1705,-1.96148652 -6.1705,-1.96148652 -6.1705,-1.96148652 0,0 0,0 -5.8369,0 -5.8371,0 -17.5945,0 -23.4315,0 -5.837,0 -5.837,0 -5.837,0 0,0 0,0 -1.7512,1.87620452 -1.6676,1.7909226 -5.1698,5.5433318 -9.0055,5.5433318 -3.8358,0 -8.0884,-3.7524092 -10.1731,-5.5433318 -2.1681,-1.87620452 -2.1681,-1.87620452 -2.1681,-1.87620452 0,0 0,0 -193.3715,0 -193.3715,0 -580.03129,0 -773.40285,0 -193.37155,0 -193.37155,0 -193.37155,0 0,0 0,0 -0.33354,0.17056399 -0.33354,0.0852821 -1.00063,0.42641018 -1.50094,0.42641018 -0.50031,0 -0.75048,-0.34112809 -0.91726,-0.42641018 -0.16676,-0.17056399 -0.16676,-0.17056399 -0.16676,-0.17056399 0,0 0,0 -5.08653,0 -5.16992,0 -15.42637,0 -20.51291,0 -5.16991,0 -5.16991,0 -5.16991,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -21.51352,0 -21.51353,0 -64.62396,0 -86.13747,0 -21.51353,0 -21.51353,0 -21.51353,0 0,0 0,0 -3.75236,4.69051162 C 252.9274,8.9766857 245.33931,18.35771 230.1631,22.62181 215.07029,26.885912 192.22258,26.033091 172.12661,21.342581 152.03066,16.652068 134.68641,8.1238654 126.0143,3.8597642 c -8.75551,-4.26410142 -8.75551,-4.26410142 -8.75551,-4.26410142 0,0 0,0 -19.595645,0 -19.679037,0 -59.037112,0 -78.632763,0 -19.67903672,0 -19.67903672,0 -19.67903672,0 M 1037.087,396.75406 c 7.0878,20.46769 17.9279,46.56399 25.2659,71.89275 7.4213,25.32876 11.2571,49.71942 -0.834,62.25588 -12.0907,12.53646 -40.1084,13.04816 -68.04264,14.49794 -27.93423,1.44982 -55.78507,3.66714 -72.0453,-8.9546 -16.26021,-12.62174 -20.92982,-40.25312 -21.68029,-67.20224 -0.66708,-27.0344 2.66834,-53.47183 17.42762,-70.10183 14.6759,-16.62999 40.85903,-23.45255 60.45468,-30.53096 19.59564,-7.16369 32.60383,-14.49795 40.85913,-10.83082 8.1717,3.66713 11.5071,18.5062 18.5949,38.97388"),N(H,"style","display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision"),N(H,"id","path201"),N(H,"fill","#ecf2f9")]),G),M(Q,"path",V([N(H,"d","m 8.8573208,-0.40433722 c 0,0 0,0 -1.5843293,1.70564052 -1.5843293,1.7909226 -4.7529877,5.2874858 -6.33731691,6.9931262 -1.58432931,1.7909225 -1.58432931,1.7909225 -1.58432931,1.7909225 0,0 0,0 0,12.19533 0,12.19533 0,36.585991 0,48.781321 0,12.195329 0,12.195329 0,12.195329 0,0 0,0 9.00566092,4.605229 9.0890468,4.690512 27.1003688,14.071539 44.3612198,21.491069 17.26085,7.33426 33.604456,12.79231 51.865924,17.73866 18.1781,4.94636 38.19067,9.55159 48.78068,22.42917 10.5066,12.96288 11.67401,34.28337 14.25896,53.21599 2.66834,18.84733 6.83763,35.39205 16.67715,49.03717 9.9229,13.64513 25.43266,24.39066 42.52673,26.94912 17.09408,2.55846 35.77249,-3.07015 53.53366,-10.23384 17.76114,-7.07841 34.77185,-15.60661 45.69538,-28.39892 11.00693,-12.79231 16.01006,-29.84872 25.59942,-42.89686 9.58937,-13.13343 23.76495,-22.17333 26.09976,-34.70978 2.41817,-12.53647 -7.08779,-28.39892 -16.51039,-44.94363 -9.42259,-16.45943 -18.92857,-33.51584 -14.84266,-46.478707 4.00251,-12.877587 21.51352,-21.746918 40.27531,-20.894097 18.76179,0.852819 38.77437,11.427791 58.95374,17.056404 20.09595,5.713897 40.44208,6.566717 60.28788,5.969742 19.84581,-0.511691 39.35809,-2.558461 57.70294,2.558461 18.34487,5.116922 35.52234,17.397534 52.19948,20.21184 16.67716,2.814307 32.85399,-3.667126 51.19885,-11.257226 18.34488,-7.504819 38.85777,-16.033021 55.86845,-15.180201 16.92731,0.85282 30.26904,11.086662 47.94682,19.78543 17.59439,8.613485 39.60822,15.777184 58.62018,14.924354 19.01195,-0.85283 35.18878,-9.722151 53.11672,-13.815688 17.92793,-4.093537 37.60698,-3.581845 46.7794,0.682256 9.17243,4.264102 7.83827,12.280602 -2.16802,22.599732 -10.0063,10.40442 -28.6847,23.19671 -34.5217,37.43882 -5.837,14.15682 1.16739,29.8487 11.42384,42.89687 10.25645,13.04814 23.93171,23.62309 29.3518,38.20634 5.42006,14.6685 2.58495,33.43055 -7.50473,39.40029 -10.17306,5.96974 -27.68406,-0.85283 -47.52988,-3.58185 -19.92919,-2.64373 -42.10979,-1.27923 -62.87285,1.62036 -20.67967,2.81432 -39.85839,7.07841 -58.62019,16.45944 -18.76178,9.38102 -37.10665,23.87896 -51.94932,37.95049 -14.92605,14.07153 -26.2665,27.71666 -26.18312,44.34666 0.16677,16.63 11.84076,36.24486 24.51541,53.72768 12.59124,17.48282 26.2665,32.83358 41.52611,47.07568 15.25958,14.15682 32.27028,27.29025 43.11041,44.1761 10.84015,16.88582 15.50977,37.69464 10.50661,56.11556 -5.00314,18.50621 -19.67903,34.70978 -32.18689,48.95188 -12.50786,14.15682 -22.8477,26.43743 -36.43958,37.5241 -13.59187,11.08666 -30.60257,20.97938 -47.11295,26.43744 -16.51036,5.37276 -32.6872,6.22558 -51.28224,10.23383 -18.59502,3.92297 -39.775,11.08666 -57.286,11.93948 -17.51101,0.85282 -31.35304,-4.60523 -45.44524,-10.66025 -14.00879,-6.1403 -28.18438,-12.96286 -39.69161,-23.19671 -11.59063,-10.23384 -20.42951,-23.87897 -30.76934,-38.80332 -10.25644,-14.92436 -21.93046,-31.12794 -28.01762,-48.35492 -6.17054,-17.14169 -6.67085,-35.39203 -5.16991,-53.72767 1.50094,-18.33564 5.16991,-36.75655 11.50724,-53.72768 6.42069,-16.88585 15.59313,-32.23661 10.00627,-42.21459 -5.50344,-9.89273 -25.84957,-14.49795 -45.86215,-9.80744 -20.01258,4.69052 -39.69162,18.67675 -59.87097,25.32877 -20.17934,6.65199 -40.69225,6.14031 -57.70293,10.66025 -16.92731,4.51994 -30.26903,14.24209 -38.02391,27.46082 -7.83825,13.21871 -10.00629,29.93397 -12.00755,49.12243 -1.91787,19.18846 -3.58559,40.8501 -12.59125,58.58876 -9.08905,17.73865 -25.43266,31.7249 -39.19131,34.36865 -13.75865,2.72903 -24.93233,-5.79917 -41.27593,-13.04814 -16.427,-7.24898 -38.10729,-13.21873 -53.366884,-26.18158 C 71.313247,577.55197 62.474358,557.59597 48.965867,544.12141 35.457375,530.73213 17.446053,523.65372 8.3570062,520.15716 c -9.00566092,-3.49656 -9.00566092,-3.49656 -9.00566092,-3.49656 0,0 0,0 0,13.30399 0,13.304 0,39.91199 0,53.21599 0,13.30399 0,13.30399 0,13.30399 0,0 0,0 1.41755773,0.25585 1.33417199,0.34113 4.16928749,0.9381 5.92038829,11.34251 1.8344865,10.4044 2.668344,30.53097 15.1762067,41.7882 12.507863,11.25723 36.689731,13.47455 57.70294,20.63825 20.929822,7.0784 38.774372,19.01789 53.617042,32.66302 14.84266,13.64512 26.8502,28.99588 32.27028,44.77306 5.42007,15.77717 4.25268,31.98075 0,31.29849 -4.33606,-0.76754 -11.84077,-18.33563 -26.85022,-29.42229 C 123.59611,738.735 101.08196,734.12976 81.65308,730.88905 62.140816,727.64833 45.797207,725.60157 32.538874,723.89592 19.363925,722.105 9.3576353,720.6552 4.3544903,719.88766 c -5.00314502,-0.76753 -5.00314502,-0.76753 -5.00314502,-0.76753 0,0 0,0 0,11.68364 0,11.59835 0,34.88034 0,46.56398 0,11.59836 0,11.59836 0,11.59836 0,0 0,0 6.50408862,5.2022 6.5874741,5.20221 19.5956521,15.52135 34.7718581,22.25862 15.176207,6.73727 32.353669,9.80742 46.862791,18.50618 14.425737,8.69879 26.099747,22.85559 39.441457,32.66303 13.34172,9.80744 28.35115,15.26548 45.61201,17.65338 17.17747,2.38789 36.68973,1.8762 55.45152,6.99313 18.76179,5.11692 36.77312,15.86245 56.53554,21.14994 19.76242,5.28749 41.10917,4.94635 61.45529,6.56672 20.26275,1.53506 39.44147,4.94635 59.7042,9.0399 20.34612,4.1788 41.69289,8.95461 61.28853,13.13342 19.59565,4.09354 37.44019,7.50483 57.53618,5.79918 20.17934,-1.70564 42.6935,-8.52821 57.8697,-4.94636 15.09282,3.49657 22.93108,17.48281 26.93359,28.82533 4.00251,11.34252 4.25267,20.21185 4.33606,24.56123 0.0834,4.43469 0.0834,4.43469 0.0834,4.43469 0,0 0,0 9.58938,0 9.58935,0 28.68468,0 38.27406,0 9.58934,0 9.58934,0 9.58934,0 0,0 0,0 4.50284,-6.65203 4.50284,-6.73728 13.42511,-20.04129 26.01636,-32.40718 12.50786,-12.36588 28.68469,-23.79367 46.44586,-26.43742 17.76117,-2.72901 37.27343,3.24072 57.36939,4.94635 20.17934,1.70565 41.02579,-0.85282 60.03774,-3.24071 19.09534,-2.47318 36.2728,-4.69051 57.28602,-8.44291 21.01321,-3.66714 45.69538,-8.78407 62.70608,-6.65202 16.92727,2.13206 26.09977,11.51308 37.52347,8.69879 11.3406,-2.89959 25.0158,-17.90924 41.7764,-27.03441 16.8439,-9.12518 36.8565,-12.19532 55.0346,-19.0179 18.2615,-6.82256 34.6051,-17.39752 53.2835,-22.08803 18.5949,-4.69053 39.4415,-3.49657 58.6201,-5.11693 19.1788,-1.53508 36.6899,-5.79918 54.7845,-5.54333 18.0113,0.34112 36.6896,5.11691 57.7863,5.7139 21.0965,0.59697 44.7782,-3.15545 60.8715,4.09353 16.0935,7.24897 24.7657,25.49932 37.2736,36.84183 12.5078,11.34253 28.8515,15.94773 38.4407,10.83084 9.5894,-5.11693 12.4246,-19.95601 16.427,-33.26 4.0026,-13.38928 9.3393,-25.32877 23.0979,-30.87211 13.7586,-5.54332 35.9392,-4.6905 57.2027,-1.27922 21.2633,3.41127 41.6094,9.38102 61.2051,12.3659 19.5955,2.98486 38.4408,2.98486 58.2032,-2.38791 19.7624,-5.45805 40.2752,-16.20358 61.2886,-24.04953 21.0132,-7.84593 42.3599,-12.62173 62.1223,-17.65337 19.7625,-4.94637 37.7738,-10.06328 56.2854,-14.58323 18.5116,-4.60524 37.3568,-8.52819 53.5337,-11.85421 16.0933,-3.24071 29.4352,-5.79918 40.6922,-5.45804 11.257,0.42639 20.4295,3.75241 25.0158,5.37277 4.5862,1.62035 4.5862,1.62035 4.5862,1.62035 0,0 0,0 0,-12.28061 0,-12.28061 0,-36.92713 0,-49.20774 0,-12.3659 0,-12.3659 0,-12.3659 0,0 0,0 -9.0058,-2.98485 -9.089,-2.98488 -27.1003,-8.95462 -45.8621,-8.69876 -18.7618,0.34112 -38.274,6.82255 -50.3651,9.29573 -12.0908,2.38788 -16.7603,0.68225 -12.9247,-9.12518 3.9192,-9.80743 16.4269,-27.71665 22.0139,-46.30815 5.5035,-18.67675 4.1693,-37.9505 3.3353,-54.58049 -0.8337,-16.63 -1.1673,-30.61624 7.755,-33.25999 8.9223,-2.72903 26.9335,5.79918 42.6935,11.17194 15.6765,5.37278 29.0182,7.5901 35.6891,8.69877 6.6709,1.10867 6.6709,1.10867 6.6709,1.10867 0,0 0,0 0,-9.89272 0,-9.89271 0,-29.76342 0,-39.74142 0,-9.89272 0,-9.89272 0,-9.89272 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.13205 0,-2.13204 0,-6.39614 0,-8.52821 0,-2.13205 0,-2.13205 0,-2.13205 0,0 0,0 -6.4208,-2.13204 -6.3372,-2.13206 -19.1786,-6.39615 -32.9373,-14.75378 -13.7588,-8.44294 -28.4345,-20.89411 -45.0283,-31.12794 -16.5105,-10.23386 -34.8553,-18.25037 -48.7808,-29.33704 -13.842,-11.08664 -23.3479,-25.24347 -37.7736,-35.47732 -14.4258,-10.23383 -33.938,-16.5447 -43.7776,-27.46081 -9.8395,-10.9161 -10.1731,-26.60798 -16.2603,-29.67814 -6.0869,-3.15544 -18.0946,6.22559 -33.9379,12.87758 -15.8432,6.73729 -35.5223,10.66024 -55.2846,11.93948 -19.7626,1.27924 -39.4415,-0.0853 -54.034,-1.79092 -14.5927,-1.70563 -24.0986,-3.7524 -36.6065,-2.72901 -12.5077,1.02338 -28.0175,4.94634 -46.3625,8.95461 -18.3448,4.00826 -39.5247,7.93122 -56.869,16.03301 -17.3443,8.10181 -31.0194,20.3824 -49.3643,29.33703 -18.345,8.9546 -41.3595,14.58322 -62.2058,18.59148 -20.8465,4.00825 -39.5248,6.22557 -60.2046,9.21046 -20.6795,2.98486 -43.5273,6.73729 -57.3693,2.47317 -13.9254,-4.2641 -18.9286,-16.54471 -14.7594,-30.27511 4.1693,-13.8157 17.511,-29.16647 30.6026,-40.25313 13.0082,-11.08666 25.8498,-17.90922 43.444,-27.88721 17.6778,-9.89273 40.1919,-23.02616 61.7055,-32.49244 21.5968,-9.55161 42.1097,-15.52135 60.0377,-15.94776 17.9279,-0.42641 33.2709,4.69052 49.5312,3.58185 16.2602,-1.19394 33.4376,-8.5282 50.0314,-15.26548 16.5105,-6.652 32.3536,-12.62174 49.698,-20.04128 17.4275,-7.33425 36.2727,-16.20359 43.2772,-30.70154 6.9209,-14.49793 1.9178,-34.62449 -8.5055,-49.54886 -10.4232,-14.92435 -26.2664,-24.64649 -31.5198,-36.41541 -5.3366,-11.76893 0,-25.75519 8.8389,-29.25174 8.9223,-3.58186 21.4302,3.24072 40.0253,4.77579 18.6782,1.62036 43.3605,-2.13206 64.3736,-8.78405 21.0134,-6.65199 38.1907,-16.37415 56.7025,-18.16507 18.5116,-1.8762 38.1906,4.09353 55.2013,12.02477 16.9273,8.01651 31.1028,17.90923 47.5298,23.36727 16.3436,5.37277 35.0221,6.22559 52.7834,4.51996 17.761,-1.70565 34.7717,-5.96975 48.6139,-11.59836 13.9253,-5.71391 24.7653,-12.70703 30.1854,-16.28887 5.4202,-3.49657 5.4202,-3.49657 5.4202,-3.49657 0,0 0,0 0,-14.839069 0,-14.839073 0,-44.602501 0,-59.441573 0,-14.839073 0,-14.839073 0,-14.839073 0,0 0,0 -2.6684,1.876205 -2.5849,1.876204 -7.9217,5.713896 -17.5945,7.5901 -9.756,1.876204 -23.9317,1.876204 -39.1079,3.41128 -15.0928,1.620359 -31.2695,4.690513 -48.7805,1.193948 -17.5112,-3.581844 -36.3563,-13.815687 -51.1155,-16.971122 -14.7593,-3.070153 -25.2659,0.85282 -40.2755,2.046768 -15.0094,1.108667 -34.5215,-0.596974 -54.3674,0.852821 -19.8458,1.364512 -40.1919,5.969741 -58.2032,9.636867 -18.0947,3.667129 -33.9381,6.566718 -50.8653,8.784051 -17.0107,2.302614 -35.022,4.008256 -49.1976,-3.240717 -14.0922,-7.248972 -24.3488,-23.452558 -29.4352,-31.5543507 -5.0865,-8.10179252 -5.0865,-8.10179252 -5.0865,-8.10179252 0,0 0,0 -25.933,0 -25.933,0 -77.7988,0 -103.7318,0 -25.9331,0 -25.9331,0 -25.9331,0 0,0 0,0 -3.8357,3.66712712 -3.8358,3.7524092 -11.5906,11.0866631 -22.1806,11.0866631 -10.59,0 -24.0983,-7.3342539 -30.7694,-11.0866631 -6.754,-3.66712712 -6.754,-3.66712712 -6.754,-3.66712712 0,0 0,0 -5.9205,0 -5.9204,0 -17.6779,0 -23.5982,0 -5.837,0 -5.837,0 -5.837,0 0,0 0,0 -5.7537,2.13205072 -5.6702,2.1320507 -17.0941,6.3961519 -27.4337,6.3961519 -10.4232,0 -19.7625,-4.2641012 -24.3488,-6.3961519 -4.6697,-2.13205072 -4.6697,-2.13205072 -4.6697,-2.13205072 0,0 0,0 -33.3543,0 -33.3542,0 -100.0628,0 -133.4172,0 -33.4376,0 -33.4376,0 -33.4376,0 0,0 0,0 -2.0846,4.00825532 -2.1682,3.9229732 -6.5041,11.9394829 -18.0947,14.4979449 -11.5907,2.558461 -30.43581,-0.341128 -42.19321,-4.264101 -11.75738,-4.0082559 -16.26021,-9.1251776 -18.51164,-11.6836385 -2.3348,-2.55846072 -2.3348,-2.55846072 -2.3348,-2.55846072 0,0 0,0 -16.2602,0 -16.34363,0 -48.86407,0 -65.20767,0 -16.26022,0 -16.26022,0 -16.26022,0 0,0 0,0 -2.41818,4.69051162 -2.4182,4.6905113 -7.25457,14.0715356 -14.92607,14.0715356 -7.67148,0 -18.26147,-9.3810243 -23.51476,-14.0715356 -5.3367,-4.69051162 -5.3367,-4.69051162 -5.25331,-4.69051162 -0.0834,0 -0.0834,0 -28.01761,0 -28.01761,0 -84.05284,0 -112.07045,0 -28.01761,0 -28.01761,0 -28.01761,0 0,0 0,0 -0.75047,2.55846072 -0.75047,2.5584609 -2.33481,7.6753826 -7.75488,7.6753826 -5.42006,0 -14.84266,-5.1169217 -19.51227,-7.6753826 -4.6696,-2.55846072 -4.6696,-2.55846072 -4.6696,-2.55846072 0,0 0,0 -31.0195,0 -30.93611,0 -92.89173,0 -123.91122,0 -30.93611,0 -30.93611,0 -30.93611,0 0,0 0,0 -0.33354,0.17056399 -0.33354,0.0852821 -1.00063,0.42641018 -1.50094,0.42641018 -0.50031,0 -0.75048,-0.34112809 -0.91726,-0.42641018 -0.16676,-0.17056399 -0.16676,-0.17056399 -0.16676,-0.17056399 0,0 0,0 -5.08653,0 -5.16992,0 -15.42637,0 -20.51291,0 -5.16991,0 -5.16991,0 -5.16991,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -15.59313,0 -15.59313,0 -46.86279,0 -62.45592,0 -15.67652,0 -15.67652,0 -15.59313,0 -0.0834,0 -0.0834,0 -3.58559,8.10179252 -3.5856,8.1017927 -10.67338,24.3053787 -15.00945,41.3617837 -4.25266,17.056405 -5.58685,34.965631 -2.41817,51.169211 3.16864,16.20359 11.00691,30.70155 9.42256,45.37005 -1.50092,14.58321 -12.34108,29.42229 -23.34799,30.7868 -10.92353,1.4498 -22.09724,-10.48969 -26.76683,-26.0963 -4.75299,-15.69188 -3.08527,-34.96563 -8.25519,-48.61075 C 220.90729,88.033125 208.89974,80.016614 193.22321,72.938207 177.5467,65.859798 158.03444,59.548928 139.4394,52.470519 120.84439,45.392112 102.99982,37.375601 85.238667,29.444371 67.477503,21.513143 49.632952,13.496633 40.794062,8.5502756 31.871788,3.6039181 31.871788,1.5571493 31.871788,0.61904703 c 0,-1.02338425 0,-1.02338425 0,-1.02338425 0,0 0,0 -3.835745,0 -3.835744,0 -11.507234,0 -15.342978,0 -3.8357442,0 -3.8357442,0 -3.8357442,0 M 990.14083,333.30423 c -14.5925,11.68365 -34.93864,16.80056 -54.53429,20.63826 -19.59565,3.83769 -38.44084,6.39616 -56.53553,5.79918 -18.09471,-0.51169 -35.27218,-4.2641 -53.11673,-4.2641 -17.76116,0 -36.10602,3.75241 -40.85901,9.38102 -4.6696,5.71389 4.16929,13.38928 17.51101,21.32051 13.34172,8.01651 31.18626,16.20357 42.94366,29.42229 11.84077,13.21873 17.67777,31.46907 23.76494,50.91338 6.17053,19.4443 12.50785,40.25311 14.09218,60.97664 1.50095,20.72354 -1.83449,41.53235 5.42009,47.92851 7.17117,6.39614 25.01571,-1.62036 44.69475,-3.8377 19.76242,-2.3026 41.44272,1.10866 62.87285,1.10866 21.34675,0 42.52685,-3.41126 60.53815,-2.8143 18.0947,0.5117 33.1042,5.11693 42.9436,1.96149 9.9229,-3.15544 14.5925,-13.90098 21.5969,-28.14308 6.921,-14.24209 16.0934,-31.81019 10.8401,-44.51721 -5.3366,-12.62174 -25.0157,-20.29712 -35.8558,-33.34528 -10.8402,-13.13342 -12.8414,-31.55434 -13.9254,-52.44844 -1.0841,-20.89409 -1.4176,-44.26136 -9.7562,-63.87623 -8.3386,-19.61488 -24.6822,-35.47733 -34.4383,-45.6259 -9.7562,-10.06327 -12.7581,-14.32738 -18.7618,-7.33424 -6.0037,6.90783 -14.8427,25.15818 -29.43517,36.75654 m 153.51327,422.57246 c 8.0883,11.51307 11.4238,18.67675 4.1691,25.92574 -7.1711,7.24898 -25.0156,14.58321 -32.5203,10.91609 -7.5048,-3.66711 -4.6697,-18.5062 -3.8358,-33.6864 0.8339,-15.18019 -0.3336,-30.87209 5.5035,-30.70152 5.837,0.17056 18.6784,16.03302 26.6835,27.54609"),N(H,"style","display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision"),N(H,"id","path203"),N(H,"fill","#ecf2f9")]),G),M(Q,"path",V([N(H,"d","m 346.31944,-0.40433722 c 0,0 0,0 -2.9185,1.10866634 -2.91849,1.19394838 -8.83889,3.41128098 -13.50849,10.66025388 -4.75299,7.248972 -8.42196,19.529583 -13.84203,30.27512 -5.42008,10.830816 -12.59125,20.21184 -16.51037,31.042658 -3.91913,10.745537 -4.41944,23.026147 -1.91789,32.918859 2.50158,9.978 8.00504,17.65337 12.09095,25.75519 4.00251,8.10178 6.50409,16.62999 3.41881,25.75515 -3.00189,9.03991 -11.67399,18.76205 -18.17808,27.97251 -6.5041,9.21046 -11.00693,18.07979 -17.67779,24.73179 -6.67086,6.652 -15.50975,11.25723 -25.09912,11.08666 -9.58935,-0.17056 -19.92919,-4.94635 -28.10099,-12.19532 -8.1718,-7.24898 -14.34234,-16.97113 -18.59503,-27.88723 -4.33606,-10.9161 -6.83763,-23.1967 -8.33857,-34.79507 -1.58432,-11.68364 -2.08465,-22.77031 -6.58747,-32.83358 C 186.13542,103.04276 177.79686,94.002867 165.95607,89.141791 154.19868,84.280716 138.8557,83.769024 126.26446,82.063384 113.58983,80.357743 103.58353,77.458154 94.411101,72.682361 85.238667,67.821285 76.900092,60.998723 67.477503,55.711237 57.971528,50.509032 47.464923,46.756625 38.792805,43.68647 30.204073,40.531036 23.533214,37.972577 17.279281,37.375601 11.02535,36.778626 5.1883478,38.143138 2.2698465,38.825395 c -2.91850122,0.682257 -2.91850122,0.682257 -2.91850122,0.682257 0,0 0,0 0,6.993127 0,6.993125 0,20.979378 0,27.972503 0,6.907846 0,6.907846 0,6.907846 0,0 0,0 4.00251602,1.023383 4.0859017,1.023387 12.0909327,2.98487 21.5969087,6.73728 9.422591,3.667128 20.262738,9.125179 30.435799,13.048149 10.089676,4.00826 19.595651,6.56671 27.350527,10.57496 7.754874,3.92299 13.92542,9.38104 22.680924,12.02478 8.7555,2.72902 20.09597,2.72902 28.60131,5.88444 8.50534,3.07017 14.00881,9.38104 16.67715,17.90925 2.66835,8.52819 2.33481,19.27374 5.42007,30.78681 3.08528,11.51307 9.42261,23.79368 12.25771,34.88035 2.75172,11.08667 1.91787,20.97937 4.41945,30.70154 2.50156,9.63687 8.33857,19.01787 17.26085,26.52268 8.83888,7.59011 20.84643,13.21872 30.68595,13.13344 9.83952,-0.17055 17.67777,-6.14029 27.35053,-9.55158 9.75613,-3.41128 21.43013,-4.26411 32.85398,-4.94635 11.34047,-0.76755 22.51415,-1.27924 34.18816,-5.54334 11.67401,-4.2641 23.84833,-12.2806 27.51729,-22.51446 3.58559,-10.23382 -1.41756,-22.68501 0.41693,-31.21322 1.75112,-8.5282 10.42323,-13.13343 19.01195,-19.10317 8.58875,-5.96973 17.26086,-13.30399 21.01323,-22.17333 3.75234,-8.78404 2.58494,-19.0179 -1.66773,-26.69327 -4.33606,-7.67539 -11.84077,-12.7923 -20.42951,-19.4443 -8.67211,-6.73728 -18.34487,-14.92436 -23.26462,-24.64651 -4.83636,-9.636869 -4.83636,-20.723532 0.16676,-27.716657 5.00315,-6.907845 15.00944,-9.807434 25.43266,-12.877587 10.42322,-3.155435 21.26337,-6.566716 32.68722,-6.822561 11.34046,-0.34113 23.34801,2.55846 34.18815,4.946356 10.84016,2.387898 20.5129,4.434667 30.93613,6.993127 10.4232,2.55846 21.5969,5.628613 33.35428,5.372768 11.84079,-0.255848 24.34865,-4.008255 35.77249,-4.093539 11.34047,-0.170563 21.6803,3.240718 31.10289,7.078409 9.4226,3.837692 18.0947,8.101794 27.10037,13.815688 9.00566,5.628614 18.51162,12.792306 29.43516,15.009636 11.00693,2.30262 23.5148,-0.25585 32.68722,-4.264099 9.17243,-3.922974 15.00943,-9.381024 24.34865,-13.730407 9.2558,-4.434666 22.09722,-7.845947 33.43768,-11.683638 11.42385,-3.837692 21.43013,-8.101793 29.51855,-6.566717 8.00504,1.620359 14.17558,8.954613 21.93045,16.118304 7.75487,7.078409 17.26086,13.90097 28.10099,17.141688 10.84015,3.325999 23.01447,2.984869 34.68848,4.690509 11.67401,1.70565 22.8477,5.45805 32.43706,2.98487 9.58936,-2.38789 17.5944,-10.916097 25.51603,-16.629993 7.92165,-5.628613 15.75991,-8.528203 27.26715,-9.210459 11.50723,-0.682256 26.8502,0.682256 35.27218,7.419537 8.50534,6.651998 10.17305,18.591485 5.42007,24.305385 -4.6696,5.62861 -15.84328,5.11692 -28.18439,8.9546 -12.34108,3.8377 -26.01635,12.02477 -32.68721,21.57636 -6.67086,9.55159 -6.33732,20.29712 -1.66772,28.31363 4.75299,7.93123 13.92543,13.04814 22.68092,16.88585 8.75551,3.83768 17.09408,6.39616 22.51416,13.04815 5.42009,6.73727 7.92165,17.48281 9.42259,27.71666 1.58432,10.23383 2.08464,19.95599 -0.41693,29.76342 -2.50157,9.80743 -8.00502,19.70016 -15.42635,21.83221 -7.33796,2.13204 -16.51038,-3.49657 -25.93297,-8.95463 -9.50598,-5.37277 -19.17873,-10.48969 -31.60321,-10.74552 -12.34109,-0.34113 -27.35052,4.26408 -39.60822,7.67537 -12.17432,3.41129 -21.6803,5.62862 -32.10351,8.95461 -10.42323,3.24073 -21.7637,7.50482 -33.18754,11.9395 -11.42385,4.34938 -22.76432,8.95459 -32.93738,15.00963 -10.17305,6.14031 -19.01195,13.81568 -27.10036,22.17332 -8.08842,8.44293 -15.2596,17.48281 -20.26273,27.29026 -5.00316,9.80743 -7.83826,20.3824 -6.83763,31.55435 1.00061,11.25722 5.67022,23.1967 12.67462,31.98075 6.92102,8.86934 16.09345,14.49794 25.43265,20.38241 9.25583,5.79918 18.7618,11.76892 27.5173,17.14169 8.75552,5.45804 16.76055,10.23383 25.51604,17.48281 8.75551,7.24897 18.26148,16.97112 22.68093,29.59287 4.41944,12.62174 3.91913,28.31364 6.25394,40.67952 2.33479,12.3659 7.67148,21.40579 6.42069,30.53097 -1.25079,9.12517 -9.08905,18.16507 -17.51101,26.26685 -8.50534,8.1018 -17.67778,15.26549 -27.93421,21.23524 -10.33984,5.96974 -21.68031,10.74553 -28.76809,16.63 -7.08779,5.79918 -9.92291,12.62174 -13.67528,21.57634 -3.75235,8.95462 -8.42195,20.04128 -16.92731,24.47596 -8.50533,4.34937 -20.67966,2.13204 -31.68658,2.21732 -11.0069,0.17057 -20.67965,2.72902 -30.43579,5.28749 -9.75613,2.55846 -19.42888,5.11692 -30.18564,8.69876 -10.67338,3.49658 -22.34738,8.10179 -32.93737,9.80745 -10.50661,1.70563 -20.01258,0.51168 -27.35052,-3.15545 -7.33795,-3.66712 -12.67463,-9.97798 -19.42888,-15.1802 -6.83763,-5.28748 -15.17622,-9.55159 -23.26464,-11.68364 -8.00502,-2.13204 -15.84328,-2.13204 -22.34736,-7.24897 -6.5041,-5.11692 -11.84079,-15.35076 -17.67779,-23.62313 -5.83701,-8.18707 -12.17431,-14.49794 -20.09596,-21.74691 -7.92167,-7.24898 -17.42763,-15.43604 -23.09786,-25.15821 -5.67024,-9.63686 -7.67149,-20.72352 -6.25393,-32.663 1.41755,-11.93948 6.08715,-24.73179 6.92102,-36.24486 0.83386,-11.51307 -2.16804,-21.74692 1.16739,-31.55435 3.33544,-9.80743 13.00818,-19.18846 19.67904,-28.31364 6.67085,-9.03989 10.33983,-17.90922 11.25707,-27.80194 1.00064,-9.97799 -0.66708,-21.06467 -7.50471,-25.07292 -6.75425,-3.92297 -18.7618,-0.85282 -30.10226,1.27923 -11.42384,2.13206 -22.26398,3.32601 -30.85271,7.24898 -8.67213,4.00825 -15.00945,10.83081 -25.59943,15.77718 -10.59,5.03163 -25.26588,8.10178 -38.94115,9.80743 -13.59188,1.70564 -26.09974,2.04677 -36.35619,2.8996 -10.33984,0.85281 -18.34487,2.21731 -25.01572,7.0784 -6.67086,4.86108 -12.00755,13.04813 -15.75991,24.04953 -3.75235,10.91609 -5.92039,24.56123 -6.33731,36.0743 -0.41694,11.51307 0.91723,20.89408 1.08401,30.2751 0.16678,9.38103 -1.00063,18.76206 -5.16992,28.31365 -4.1693,9.4663 -11.34046,19.18846 -20.26274,28.99588 -8.92228,9.80744 -19.42887,19.70015 -26.01635,22.42917 -6.50408,2.72903 -9.00567,-1.87619 -14.84265,-5.96974 -5.83702,-4.09352 -15.00946,-7.84594 -25.84959,-12.11004 -10.84015,-4.2641 -23.34801,-9.0399 -34.18816,-14.32737 -10.840152,-5.28749 -20.012585,-10.91611 -26.516674,-18.0798 -6.587473,-7.0784 -10.423217,-15.60662 -16.26022,-25.1582 -5.837003,-9.4663 -13.675263,-20.04128 -22.263996,-27.11969 -8.588732,-7.0784 -18.094708,-10.83081 -25.682811,-12.7923 -7.671489,-1.96148 -13.5084912,-2.13206 -16.4269925,-2.21732 -2.91850122,-0.17057 -2.91850122,-0.17057 -2.91850122,-0.17057 0,0 0,0 0,7.16368 0,7.16369 0,21.40579 0,28.56948 0,7.16368 0,7.16368 0,7.16368 0,0 0,0 4.41944472,2.13206 4.5028305,2.21734 13.341721,6.65199 19.345494,13.98626 6.003774,7.33426 9.005661,17.56809 11.090305,29.93399 2.084644,12.3659 3.252044,26.86384 9.505975,33.6864 6.253931,6.82256 17.594394,5.96975 29.852099,4.51994 12.257705,-1.3645 25.265881,-3.41127 34.605097,0 9.33919,3.41128 14.84265,12.28061 21.0132,20.89411 6.08715,8.69877 12.75801,17.22696 23.01446,21.74691 10.33984,4.60524 24.18187,5.11692 34.77187,3.15544 10.58998,-1.9615 17.76115,-6.56671 23.59816,-4.86107 5.83701,1.70563 10.33984,9.72214 9.75613,17.82393 -0.5837,8.1018 -6.08716,16.28888 -8.58872,24.39066 -2.50158,8.10178 -2.00126,16.11831 -1.83449,25.1582 0.16676,9.12518 -0.16677,19.35902 5.2533,27.20496 5.42007,7.76068 16.59376,13.21871 25.7662,17.05641 9.17243,3.8377 16.3436,6.05503 21.51352,14.15682 5.16992,8.1018 8.1718,22.08806 14.75927,32.40717 6.50409,10.40441 16.51038,17.22698 17.59439,21.23524 1.16741,3.92296 -6.67086,5.11691 -15.84329,2.64373 -9.17242,-2.38789 -19.67904,-8.35763 -27.76746,-15.77716 -8.08841,-7.33427 -13.59187,-16.20361 -21.26336,-19.44432 -7.67149,-3.24072 -17.34423,-1.02338 -27.93423,1.53508 -10.58998,2.55846 -21.93045,5.45805 -31.43642,2.47318 -9.42259,-2.98486 -16.9273,-11.85419 -24.5988,-17.82394 -7.5881,-5.96975 -15.42636,-9.0399 -21.68029,-16.20359 -6.25393,-7.07841 -10.92353,-18.16506 -16.67715,-23.53783 -5.67023,-5.45806 -12.341092,-5.11693 -21.930454,-5.88447 -9.58936,-0.68226 -22.097223,-2.38789 -31.519813,-7.33425 -9.505975,-5.03164 -15.843292,-13.21872 -24.515411,-17.22698 -8.588732,-4.00825 -19.428879,-3.75241 -24.8489529,-3.58183 -5.42007382,0.17055 -5.42007382,0.17055 -5.42007382,0.17055 0,0 0,0 0,7.41954 0,7.41954 0,22.34389 0,29.76342 0,7.41954 0,7.41954 0,7.41954 0,0 0,0 1.66771492,0.68225 1.6677151,0.68227 5.0031451,1.9615 10.2564478,6.48144 5.336687,4.51995 12.507862,12.19533 20.179352,18.16508 7.671488,5.96974 15.67652,10.23384 25.599424,12.7923 9.83952,2.55847 21.513523,3.41128 30.936113,8.5282 9.505976,5.11693 16.677143,14.49794 23.514793,23.19672 6.83762,8.61348 13.17494,16.62999 20.59626,21.32051 7.33795,4.6905 15.67653,6.05501 23.59818,6.22558 7.92164,0.17056 15.42635,-1.02338 26.43328,-2.30261 10.92353,-1.27924 25.43265,-2.64374 35.6891,0.59698 10.25646,3.24071 16.42699,11.25721 25.59943,16.37414 9.17243,5.11693 21.34675,7.33425 32.93736,8.61348 11.50724,1.27924 22.3474,1.62038 34.02138,3.15544 11.67401,1.53508 24.18187,4.43465 35.68911,5.7139 11.59063,1.27923 22.09722,0.93809 33.10414,3.66712 11.00692,2.72904 22.34739,8.35765 33.938,11.68363 11.50723,3.24072 23.18124,4.09355 34.0214,7.93124 10.84014,3.83769 20.84643,10.66026 31.93675,16.20359 11.17368,5.54332 23.34799,9.80742 34.52168,8.27235 11.09032,-1.62036 21.0966,-8.95461 30.85273,-15.77718 9.67275,-6.82256 19.17872,-13.13343 30.51919,-15.77717 11.42385,-2.72902 24.76556,-1.8762 31.43642,5.62862 6.67085,7.5901 6.67085,21.74691 6.75425,33.26 0.16676,11.51307 0.41692,20.3824 0.50031,24.73178 0.0834,4.43469 0.0834,4.43469 0.0834,4.43469 0,0 0,0 9.50599,0 9.50597,0 28.51792,0 37.94052,0 9.50596,0 9.50596,0 9.50596,0 0,0 0,0 0.83386,-6.82259 0.83387,-6.82256 2.4182,-20.46769 8.17182,-27.88723 5.67023,-7.33425 15.34297,-8.5282 24.01509,-12.62174 8.58873,-4.09353 16.09345,-11.25723 26.68343,-14.32738 10.50662,-3.15543 24.18186,-2.30261 35.68911,-2.89959 11.50723,-0.51168 21.01321,-2.55846 30.26902,-3.92297 9.33921,-1.44979 18.51165,-2.30261 30.35241,-1.44979 11.75739,0.85282 26.26653,3.41127 38.0239,3.41127 11.84079,0 21.01321,-2.55845 32.10352,-2.55845 11.1737,0 24.18188,2.55845 35.77249,0 11.50723,-2.55846 21.51353,-10.23386 32.52045,-14.07154 10.92353,-3.83769 22.93108,-3.83769 30.51917,1.27924 7.6715,5.11691 11.0069,15.35075 18.345,18.33563 7.4212,2.98486 18.7615,-1.27923 26.183,-9.38103 7.3379,-8.1018 10.6734,-20.04127 18.1781,-27.11969 7.5046,-7.16369 19.1788,-9.381 30.4358,-10.66024 11.2571,-1.27923 22.0972,-1.62037 31.8533,-2.98488 9.6728,-1.44979 18.3449,-4.00825 28.3512,-8.27236 10.0063,-4.2641 21.3467,-10.23382 32.5204,-14.6685 11.0903,-4.34939 21.9304,-7.24898 32.1036,-8.35764 10.0896,-1.10867 19.5956,-0.59696 30.0188,-1.53508 10.4233,-1.02338 21.7637,-3.58184 31.6865,-5.11691 9.8396,-1.62037 18.1781,-2.13206 28.6013,-0.59699 10.4233,1.53509 22.9311,5.28749 34.4385,6.65202 11.5905,1.44979 22.0971,0.59696 34.3548,-0.51171 12.2578,-1.19395 26.0998,-2.55846 35.6057,2.98487 9.4227,5.54334 14.4259,17.99451 19.2621,26.26687 4.9199,8.27236 9.5895,12.19534 16.0101,15.35077 6.4208,3.15543 14.4258,5.37277 23.1812,7.0784 8.7556,1.70564 18.2614,2.89961 23.765,-1.79092 5.5868,-4.69052 7.2545,-15.26548 5.3368,-24.04953 -2.0014,-8.78405 -7.5048,-15.94773 -6.1707,-21.49108 1.4176,-5.54333 9.7562,-9.46628 19.3456,-12.19532 9.5894,-2.72903 20.4295,-4.09353 32.2702,-4.86107 11.7574,-0.68226 24.5988,-0.68226 35.856,-0.93812 11.257,-0.34112 20.9298,-0.85281 31.9366,1.27925 11.0069,2.13205 23.1814,6.90785 35.2722,9.03989 12.0909,2.13204 24.0985,1.62035 34.1882,0.17056 10.1729,-1.44979 18.5116,-3.66713 29.6019,-7.50482 11.1737,-3.83769 25.0157,-9.29574 36.6896,-11.51308 11.6742,-2.30261 21.1802,-1.44979 30.7694,-4.00825 9.5895,-2.55846 19.2622,-8.5282 29.602,-13.38928 10.2565,-4.77579 21.0965,-8.5282 33.0208,-11.3425 12.0076,-2.81431 25.0157,-4.86108 36.6063,-2.81431 11.5073,1.96149 21.5135,7.93124 30.8527,5.96974 9.2559,-2.04676 17.9279,-11.93947 27.3506,-19.35903 9.4225,-7.41953 19.7624,-12.19532 29.4353,-12.36589 9.7559,-0.17055 18.9285,4.43467 25.1824,7.1637 6.2539,2.8143 9.5893,3.92296 11.2571,4.43465 1.6677,0.5117 1.6677,0.5117 1.6677,0.5117 0,0 0,0 0,-8.61349 0,-8.61347 0,-25.92574 0,-34.53922 0,-8.61346 0,-8.61346 0,-8.61346 0,0 0,0 -4.5862,-0.17058 -4.5863,-0.17056 -13.7588,-0.42641 -25.1825,-1.79093 -11.3405,-1.44979 -25.0159,-4.00824 -36.106,-2.30261 -11.0905,1.70564 -19.7625,7.67538 -30.019,12.96288 -10.2564,5.2022 -22.264,9.80741 -33.521,11.59835 -11.2572,1.8762 -21.7637,1.02338 -30.4358,2.13205 -8.5888,1.19394 -15.2596,4.26411 -25.6828,6.14031 -10.4232,1.87619 -24.5988,2.38788 -36.0227,4.2641 -11.3405,1.87621 -20.0125,4.94635 -29.2684,9.38102 -9.3392,4.43467 -19.3455,10.06327 -28.9348,14.24209 -9.5894,4.09355 -18.7618,6.652 -28.1012,11.76893 -9.2556,5.11693 -18.7616,12.79229 -28.351,14.7538 -9.5894,2.04674 -19.2621,-1.70565 -28.8515,-5.62862 -9.5892,-4.00825 -19.0953,-8.27237 -27.8508,-13.38929 -8.7555,-5.11692 -16.7606,-11.08666 -25.2659,-10.4044 -8.5054,0.76753 -17.3443,8.10178 -27.3504,10.66025 -10.0064,2.55846 -21.18,0.34112 -31.6868,-0.42641 -10.5899,-0.68226 -20.5962,0.17056 -30.0187,3.75241 -9.5061,3.49656 -18.3449,9.80744 -27.9342,11.59835 -9.5895,1.8762 -19.9292,-0.68226 -30.7694,-2.38789 -10.8402,-1.70565 -22.1807,-2.55846 -33.1875,-4.51996 -11.0069,-2.04676 -21.5135,-5.11691 -22.264,-9.38101 -0.6671,-4.26411 8.5052,-9.72215 13.5084,-18.33565 5.0031,-8.69876 5.8371,-20.63824 12.5078,-26.77856 6.671,-6.05502 19.1789,-6.39614 30.6859,-4.6905 11.5908,1.70564 22.0974,5.45804 32.6874,3.15544 10.5898,-2.30261 21.0965,-10.48969 31.0195,-16.80056 9.8394,-6.22559 19.012,-10.4897 29.1849,-10.74554 10.0898,-0.34113 21.2634,3.41128 32.7705,2.55846 11.5074,-0.85281 23.515,-6.31088 33.3545,-4.43465 9.8394,1.87619 17.6776,10.91607 25.8495,18.9326 8.1718,7.93123 16.844,14.75378 25.8496,15.86245 9.0057,1.19397 18.5117,-3.41128 26.5167,-8.35763 8.0884,-4.94635 14.7593,-10.40441 22.6809,-13.38928 7.9217,-2.98488 17.0941,-3.49657 27.3506,-4.2641 10.3397,-0.68226 21.6801,-1.53507 31.1862,-7.24898 9.4226,-5.62862 16.9273,-16.20357 26.3499,-21.14994 9.506,-4.94635 20.8465,-4.43466 32.2703,-5.96974 11.424,-1.53507 22.7643,-5.28749 28.768,-11.51307 6.004,-6.2256 6.5043,-15.09491 12.091,-22.34389 5.5868,-7.24897 16.0934,-12.87759 21.0965,-22.68503 5.0032,-9.80744 4.503,-23.79368 3.5023,-36.24485 -1.0007,-12.53647 -2.3347,-23.62313 -7.2545,-35.73318 -4.8364,-12.02476 -13.175,-25.15819 -19.2621,-36.75655 -6.1706,-11.68363 -10.0063,-21.91748 -8.9223,-30.18983 1.084,-8.18708 7.2546,-14.49795 15.4264,-11.76892 8.1717,2.72902 18.5116,14.32738 28.3511,21.74692 9.8395,7.41952 19.3455,10.48968 29.3517,15.6066 10.0063,5.11692 20.5129,12.2806 29.602,18.76204 9.0057,6.56672 16.5104,12.53645 25.4327,15.00964 8.8389,2.3879 19.1787,1.36452 24.2653,0.76754 5.1699,-0.51168 5.1699,-0.51168 5.1699,-0.51168 0,0 0,0 0,-5.28749 0,-5.28749 0,-15.86247 0,-21.14995 0,-5.28749 0,-5.28749 0,-5.28749 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.04676 0,-1.96149 0,-6.05503 0,-8.10179 0,-1.96149 0,-1.96149 0,-1.96149 0,0 0,0 -3.9193,-0.85282 -3.8356,-0.85282 -11.674,-2.47318 -20.4294,-5.79918 -8.7554,-3.41128 -18.4282,-8.5282 -26.2666,-15.60661 -7.7548,-7.16369 -13.5919,-16.20359 -21.3467,-21.66163 -7.8382,-5.37278 -17.5109,-7.07842 -27.8509,-9.38104 -10.2563,-2.21732 -21.0965,-5.11691 -31.353,-10.66024 -10.3399,-5.54333 -20.0125,-13.73041 -25.7661,-23.11144 -5.6703,-9.38102 -7.338,-19.95598 -14.4259,-24.90235 -7.0877,-4.94635 -19.5954,-4.43466 -30.6024,-8.9546 -10.9236,-4.51995 -20.4296,-14.24211 -21.7637,-24.30539 -1.4177,-10.06327 5.2532,-20.63825 3.5855,-27.9725 -1.6676,-7.41954 -11.6738,-11.68364 -21.2633,-10.40441 -9.5894,1.27923 -18.7618,8.10181 -25.4327,15.35075 -6.6707,7.24898 -10.84,14.92437 -18.9284,20.63826 -8.0052,5.62862 -20.0126,9.38102 -30.2691,6.90785 -10.2565,-2.3879 -18.9286,-10.91611 -29.1851,-13.04816 -10.2564,-2.13205 -22.2639,2.13205 -32.2703,8.95464 -10.0063,6.82255 -18.0113,16.20357 -22.7642,14.49793 -4.753,-1.70564 -6.0872,-14.49793 -11.4239,-22.17333 -5.2533,-7.67538 -14.4258,-10.23383 -24.8491,-8.27236 -10.4231,2.04677 -22.097,8.52821 -33.104,13.98626 -10.9236,5.37277 -21.2633,9.63686 -31.6866,14.32738 -10.4232,4.69051 -20.9298,9.80743 -30.5192,16.45942 -9.5894,6.73729 -18.2614,14.92436 -26.6834,20.38241 -8.5053,5.37278 -16.8439,7.93123 -28.3512,10.74553 -11.5906,2.8996 -26.2664,5.96975 -39.1912,7.67539 -12.9248,1.70565 -24.0985,2.04678 -35.4391,2.04678 -11.4238,0 -23.0978,-0.34113 -35.3555,2.98485 -12.1742,3.24073 -25.0157,10.06329 -37.3567,14.07154 -12.3411,3.92297 -24.3488,5.11692 -30.8528,-0.34112 -6.5042,-5.37278 -7.6716,-17.31226 -4.0025,-27.80194 3.5855,-10.57498 11.9242,-19.61487 19.2622,-27.46081 7.4212,-7.84595 13.7586,-14.32738 20.8463,-22.34389 7.0878,-7.93123 14.9261,-17.31226 21.6803,-21.74693 6.8377,-4.34938 12.6747,-3.83768 21.4301,-7.50482 8.7555,-3.66712 20.4296,-11.68363 32.9376,-17.22696 12.5076,-5.54334 25.8495,-8.61348 39.608,-10.9161 13.7588,-2.30262 27.9343,-3.66712 38.3576,-5.28749 10.4231,-1.53508 17.0939,-3.24071 24.432,-3.83769 7.4213,-0.51169 15.4263,0 23.6814,2.55846 8.1718,2.55847 16.5104,7.16368 25.2659,5.45805 8.7555,-1.70563 17.928,-9.72214 27.1005,-17.22696 9.1723,-7.50483 18.3449,-14.66852 28.3512,-19.78543 10.0061,-5.11693 20.8463,-8.18709 31.0194,-11.93949 10.0897,-3.66714 19.5956,-7.93123 28.6013,-12.87758 9.0056,-5.03165 17.6779,-10.66027 17.9279,-18.33565 0.2503,-7.67537 -7.7548,-17.39752 -10.4232,-28.99588 -2.6684,-11.68365 0.1669,-25.32876 -2.7516,-32.83359 -2.9186,-7.5901 -11.5909,-8.9546 -21.5971,-14.49793 -10.0061,-5.54334 -21.3467,-15.2655 -24.5986,-23.87898 -3.1688,-8.69876 1.8343,-16.37414 9.5059,-18.67677 7.588,-2.21732 17.928,0.85283 26.9335,4.00826 9.0057,3.15542 16.8441,6.22559 28.1845,9.38102 11.4238,3.15544 26.4333,6.22558 37.9404,2.72904 11.5907,-3.58186 19.5958,-13.81569 29.1017,-21.66164 9.4226,-7.76067 20.2628,-13.21871 31.9367,-15.77718 11.6741,-2.558459 24.1819,-2.21733 36.2727,0.42641 12.0911,2.72903 23.7651,7.84594 33.6046,11.25723 9.9229,3.41128 17.9279,5.11692 26.6,9.38101 8.5888,4.26411 17.7613,11.08667 27.5173,16.03304 9.6727,5.03163 20.0126,8.10179 29.602,9.12517 9.5893,1.02338 18.4281,-0.17057 27.7674,-1.70563 9.3392,-1.53509 19.0119,-3.58187 29.0182,-6.56672 10.0064,-2.98488 20.3462,-6.90785 26.4334,-12.02477 6.087,-5.11692 8.0883,-11.42779 11.924,-14.49795 3.9193,-3.15544 9.7563,-3.15544 12.6747,-3.15544 2.9186,0 2.9186,0 2.9186,0 0,0 0,0 0,-9.97799 0,-9.977996 0,-29.93399 0,-39.911988 0,-9.892715 0,-9.892715 0,-9.892715 0,0 0,0 -5.2533,-0.42641 -5.3368,-0.42641 -15.8434,-1.193948 -22.0973,1.620358 -6.2539,2.899589 -8.255,9.381024 -14.7593,10.830818 -6.504,1.449795 -17.6778,-2.302614 -25.2658,-1.108666 -7.6715,1.108666 -11.8407,7.078409 -17.2609,14.497945 -5.4201,7.334256 -12.0909,16.203585 -19.0119,16.203585 -7.0044,0 -14.1756,-8.869329 -21.18,-16.118304 -6.921,-7.248972 -13.5919,-12.877585 -23.348,-12.19533 -9.6728,0.682258 -22.5141,7.845947 -33.7714,7.845947 -11.2569,0 -20.9297,-7.163689 -31.9365,-13.645124 -11.0071,-6.566716 -23.1812,-12.536459 -33.9382,-12.792304 -10.6733,-0.341129 -19.8457,5.11692 -29.435,10.319125 -9.5894,5.287486 -19.5957,10.404407 -28.9348,16.544714 -9.2559,6.055024 -17.928,13.218713 -26.9336,15.60661 -9.0059,2.387898 -18.5118,0.170564 -29.0183,-2.984871 -10.5901,-3.155435 -22.2641,-7.078408 -33.9381,-9.381022 -11.6739,-2.302616 -23.348,-2.814307 -32.1035,0.852819 -8.7556,3.667127 -14.5924,11.683638 -19.7624,12.110048 -5.0866,0.426412 -9.5894,-6.73728 -12.1744,-16.629995 -2.6683,-9.977997 -3.5021,-22.770301 -7.8382,-32.748299 -4.2528,-9.892715 -12.091,-17.056405 -21.2633,-21.576353 -9.1724,-4.519947 -19.679,-6.566715 -30.8528,-6.396152 -11.0902,0.170565 -22.7643,2.387897 -34.4383,6.396152 -11.6739,4.008255 -23.3479,9.63687 -34.0214,14.668508 -10.7567,4.94636 -20.4294,9.21046 -31.6866,9.466307 -11.257,0.341128 -24.0985,-3.411283 -35.0219,-4.946358 -11.007,-1.535077 -20.1795,-1.023385 -29.9355,0 -9.6728,1.023384 -20.0127,2.387896 -31.2697,2.814307 -11.2572,0.42641 -23.4315,-0.08529 -34.6051,-0.852821 -11.0903,-0.682254 -21.0966,-1.535075 -33.3543,-4.775793 -12.1744,-3.325999 -26.6834,-8.954614 -40.4422,-11.939483 -13.7585,-2.984873 -26.7667,-3.326 -38.8576,-3.411283 -12.091,-0.170562 -23.2647,-0.170562 -34.6051,1.279232 -11.4239,1.364512 -23.0979,4.264101 -32.6872,10.233842 -9.5894,5.969743 -17.0941,15.009637 -26.0998,24.134814 -9.089,9.125178 -19.5956,18.165073 -27.9341,18.591483 -8.3387,0.426409 -14.5091,-7.760664 -21.18008,-15.009638 -6.67086,-7.248973 -13.84205,-13.559843 -22.34739,-15.691892 -8.50533,-2.132051 -18.17808,-0.08528 -28.18437,-2.558461 -10.0063,-2.387896 -20.34613,-9.210459 -31.26965,-9.039894 -11.00693,0.08529 -22.68094,7.248971 -33.52108,13.218712 -10.84015,5.969743 -20.84644,10.745537 -32.68722,12.451177 C 834.62642,57.843286 820.95117,56.478774 812.11228,51.6177 803.19,46.756625 799.0207,38.569549 791.51599,33.708472 c -7.50472,-4.861074 -18.34487,-6.225585 -30.01887,-9.636867 -11.67399,-3.411281 -24.18185,-8.869331 -37.27343,-9.125178 -13.00818,-0.255845 -26.68344,4.519948 -37.94052,8.357639 -11.25707,3.837692 -20.09595,6.73728 -27.5173,11.939484 -7.33795,5.287486 -13.17494,12.962868 -20.26274,15.094918 -7.08781,2.132051 -15.42637,-1.279229 -26.51668,-6.651998 -11.1737,-5.45805 -25.01573,-12.792304 -34.60509,-20.467686 -9.50598,-7.675383 -14.67588,-15.6918927 -17.34424,-19.6148659 -2.58495,-4.00825532 -2.58495,-4.00825532 -2.58495,-4.00825532 0,0 0,0 -2.66835,0 -2.66834,0 -8.08841,0 -10.75675,0 -2.75174,0 -2.75174,0 -2.75174,0 0,0 0,0 -4.25266,2.13205072 -4.33607,2.1320507 -12.9248,6.3961519 -22.18062,8.6987665 -9.3392,2.217333 -19.34549,2.558461 -30.85273,3.411282 -11.5906,0.85282 -24.59879,2.217332 -36.27279,2.13205 -11.67402,-0.170564 -22.01385,-1.876205 -30.68596,-4.861076 -8.58872,-2.9848706 -15.67653,-7.2489718 -19.17874,-9.3810225 -3.50219,-2.13205072 -3.50219,-2.13205072 -3.50219,-2.13205072 0,0 0,0 -0.83386,0 -0.75047,0 -2.3348,0 -3.16865,0 -0.75048,0 -0.75048,0 -0.75048,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -7.17116,0 -7.25457,0 -21.68031,0 -28.85147,0 -7.25458,0 -7.25458,0 -7.25458,0 M 1541.1538,180.99053 c 9.4226,7.07842 18.9287,13.90097 24.3487,20.97939 5.42,7.16368 6.7543,14.49794 4.1694,20.63825 -2.6685,6.14031 -9.3392,10.9161 -17.8446,15.18019 -8.4221,4.2641 -18.7619,8.01652 -27.1838,11.08666 -8.5053,3.15545 -15.1763,5.71392 -24.5155,9.72218 -9.2557,3.92296 -21.2633,9.38101 -28.4345,7.33423 -7.2545,-1.96149 -9.7561,-11.34249 -9.7561,-20.89408 0,-9.46632 2.5016,-19.18846 -0.5837,-29.42232 -3.0019,-10.23384 -11.6739,-20.97937 -15.4264,-28.3989 -3.7523,-7.41954 -2.585,-11.34252 4.9198,-12.53647 7.5047,-1.10866 21.3467,0.59699 32.7706,-1.53507 11.4238,-2.13205 20.2628,-8.1018 24.7656,-11.08666 4.4194,-2.98488 4.4194,-2.98488 9.1725,0.68225 4.6695,3.75242 14.1754,11.08666 23.598,18.25035 m -525.9972,63.10871 c -7.4214,10.23383 -13.7587,21.83219 -18.26153,33.34526 -4.41944,11.51309 -6.92102,22.94087 -11.92416,31.04267 -5.00315,8.10179 -12.50786,12.87758 -22.68091,15.43605 -10.08969,2.55845 -22.93109,2.89959 -34.85526,1.70564 -11.92416,-1.10868 -23.09784,-3.66713 -35.60571,-4.94636 -12.50786,-1.27924 -26.34991,-1.27924 -37.60697,-1.10866 -11.25708,0.0853 -19.9292,0.42641 -29.10163,1.36451 -9.17243,1.02338 -18.84519,2.72902 -29.43517,4.26409 -10.58999,1.62037 -21.93046,2.98488 -33.52108,6.39616 -11.50723,3.41128 -23.18124,8.86933 -28.6013,17.48282 -5.42008,8.69876 -4.58622,20.63824 0.83385,29.84871 5.42007,9.29573 15.42638,15.77717 24.18188,22.08804 8.75548,6.22558 16.26021,12.19533 24.01509,17.14168 7.83826,5.03165 15.84328,8.95462 24.59879,12.53646 8.75551,3.58185 18.26147,6.652 24.09848,14.24209 5.83701,7.50482 8.00502,19.44432 8.8389,31.12794 0.83386,11.59837 0.33354,23.02616 3.33542,33.51585 3.08527,10.4897 9.75615,20.21184 12.00755,31.12795 2.16803,10.91608 0,23.19669 -5.58685,32.57773 -5.58684,9.38102 -14.42573,15.86246 -20.01259,25.15818 -5.58682,9.21047 -7.75486,21.14994 -12.25769,29.50759 -4.41945,8.44292 -11.09031,13.21872 -17.5944,19.10317 -6.58747,5.79918 -12.92478,12.62175 -20.34612,19.87071 -7.33794,7.24899 -15.67652,14.92436 -24.18187,22.42918 -8.42196,7.5901 -17.09407,14.92436 -26.68344,23.45257 -9.58935,8.52819 -20.09597,18.25034 -21.51352,26.01101 -1.41755,7.84594 6.42071,13.81569 14.0088,19.10318 7.6715,5.2022 15.17621,9.80742 21.26337,6.39615 6.17055,-3.41129 10.84016,-14.83907 17.26085,-23.87898 6.42071,-9.12517 14.42574,-15.94774 22.76432,-24.30538 8.33857,-8.4429 17.01069,-18.33562 26.60004,-25.92573 9.58937,-7.50482 20.09598,-12.62174 30.51919,-18.16507 10.42322,-5.54333 20.76306,-11.51307 30.43579,-18.76205 9.75615,-7.24897 18.92858,-15.77717 25.7662,-21.57635 6.75425,-5.88445 11.25709,-8.9546 19.42889,-12.79231 8.1718,-3.83768 20.17935,-8.44291 31.85335,-11.93948 11.674,-3.58185 23.01448,-6.1403 34.43832,-6.82256 11.42384,-0.76755 22.76432,0.42642 34.35502,0.5117 11.5071,0.17056 23.1812,-0.68226 33.7712,3.75241 10.5066,4.34938 20.0125,14.07152 27.3505,24.39064 7.3379,10.40442 12.6745,21.49107 14.3423,30.87211 1.6677,9.38102 -0.3335,17.0564 -1.2508,26.60798 -1.0006,9.46631 -1.0006,20.89411 -3.5022,33.51585 -2.5015,12.62173 -7.5047,26.60798 -12.0909,38.20635 -4.5862,11.68363 -8.7556,21.06466 -14.8426,28.91061 -6.1706,7.76065 -14.1756,14.07153 -23.0979,22.00277 -8.9224,7.93122 -18.595,17.65336 -26.0164,17.73864 -7.3379,0.17058 -12.34107,-9.21045 -21.26335,-11.76892 -8.8389,-2.55845 -21.6803,1.70564 -31.35303,8.1018 -9.75614,6.39615 -16.427,14.92435 -23.93173,20.63826 -7.50471,5.62862 -15.84328,8.52819 -25.01571,12.19532 -9.17243,3.66713 -19.17873,8.27236 -30.43579,11.51307 -11.25709,3.24072 -23.76495,5.28749 -33.18754,4.86108 -9.50598,-0.42641 -15.84331,-3.326 -25.01573,-5.7139 -9.17242,-2.38789 -21.17998,-4.43466 -30.01886,-8.69877 -8.92228,-4.2641 -14.75928,-10.74553 -21.01321,-8.78404 -6.25394,1.96149 -12.92479,12.53646 -14.17558,20.29712 -1.25078,7.84595 2.9185,12.96288 8.50534,16.11831 5.50347,3.07014 12.50787,4.2641 22.59754,4.2641 10.17307,0 23.51478,-1.19396 35.1888,-0.85282 11.674,0.25585 21.68028,1.96148 33.35429,2.38789 11.67401,0.42641 25.01573,-0.42641 37.27344,-2.72903 12.17432,-2.21732 23.348,-5.96972 34.85522,-8.78405 11.50724,-2.81429 23.5148,-4.86108 34.77188,-5.71388 11.25706,-0.85282 21.76368,-0.5117 32.60382,-0.85282 10.8401,-0.25585 22.0139,-1.10867 32.9374,-3.8377 11.0069,-2.64375 21.8471,-7.24897 32.5205,-11.59836 10.7567,-4.43466 21.2633,-8.69876 32.1034,-13.98625 10.8401,-5.20221 22.0139,-11.51307 32.5205,-16.20359 10.5899,-4.69049 20.5963,-7.76065 31.2695,-10.48969 10.757,-2.72902 22.0974,-4.94635 34.5219,-5.28748 12.3409,-0.25584 25.6828,1.4498 33.8546,0.17056 8.2551,-1.27923 11.2569,-5.54333 11.6739,-12.36589 0.4169,-6.82256 -1.751,-16.20358 -8.3387,-24.98764 -6.5039,-8.86933 -17.3439,-17.05639 -27.7673,-24.47594 -10.4233,-7.41953 -20.4295,-13.90097 -28.1843,-19.87071 -7.8384,-5.96974 -13.3419,-11.42779 -18.6786,-18.67676 -5.2532,-7.24897 -10.2562,-16.28886 -14.8426,-25.41405 -4.5861,-9.12517 -8.7554,-18.16506 -13.7586,-27.46082 -5.0031,-9.21045 -10.8401,-18.59148 -11.4239,-28.3989 -0.5002,-9.80743 4.1694,-20.04128 9.5061,-29.8487 5.2532,-9.80745 11.0903,-19.18846 17.7612,-29.16646 6.6708,-9.8927 14.1755,-20.46769 20.1792,-30.78681 5.9204,-10.40442 10.4233,-20.63825 12.3412,-32.3219 1.9178,-11.59835 1.4175,-24.73178 -2.9185,-32.91886 -4.3362,-8.27236 -12.3412,-11.68363 -21.5137,-14.66851 -9.1723,-2.98487 -19.512,-5.54333 -25.1825,-13.47456 -5.6701,-8.01652 -6.8375,-21.3205 -9.8394,-32.57773 -3.0854,-11.25724 -8.0885,-20.29712 -7.6715,-30.27512 0.417,-9.97799 6.2539,-20.72353 10.8402,-30.10456 4.5862,-9.38102 7.9216,-17.39753 14.8427,-23.87897 7.0044,-6.56671 17.511,-11.68363 21.0132,-17.22696 3.5021,-5.54334 -0.1668,-11.51309 -7.6716,-11.25724 -7.5047,0.34114 -18.8451,6.82257 -26.5166,7.24898 -7.6716,0.4264 -11.5072,-5.2022 -18.7618,-10.48968 -7.2546,-5.28749 -17.7612,-10.06329 -27.1004,-14.66853 -9.3392,-4.51993 -17.3441,-8.78404 -20.5963,-17.90922 -3.1686,-9.03989 -1.5009,-23.02615 -2.7517,-32.06604 -1.2508,-9.12516 -5.4201,-13.38927 -11.674,-11.08666 -6.2539,2.21734 -14.5925,11.08666 -21.9304,21.32051 M -0.64865472,232.92729 c 0,0 0,0 4.16928742,2.13205 4.1692876,2.21733 12.5078633,6.652 12.5078633,10.06328 0,3.41128 -8.3385757,5.96975 -12.5078633,7.24897 -4.16928742,1.19394 -4.16928742,1.19394 -4.16928742,1.19394 0,0 0,0 0,6.73729 0,6.652 0,20.04127 0,26.69326 0,6.7373 0,6.7373 0,6.7373 0,0 0,0 4.75298772,-0.17057 4.6696021,-0.0853 14.175578,-0.34112 23.34801,-0.0853 9.172433,0.34113 18.011322,1.19395 30.269028,1.8762 12.257705,0.76754 27.767455,1.27922 40.859017,-0.4264 13.091562,-1.70564 23.598172,-5.62861 32.270292,-9.89272 8.58872,-4.2641 15.25958,-8.86933 19.42887,-17.90923 4.16928,-9.12518 5.837,-22.77031 5.16992,-34.88034 -0.75048,-12.02477 -3.75236,-22.59976 -11.25707,-28.14309 -7.50473,-5.54331 -19.51227,-6.05499 -31.85335,-5.96973 -12.341105,0.17057 -25.18251,1.02339 -36.106044,0.85282 -11.006918,-0.0853 -20.17935,-1.27923 -30.602569,-3.92297 -10.423219,-2.72902 -22.097223,-6.99312 -30.01887,-8.52821 -7.9216467,-1.53506 -12.0909343,-0.25583 -14.175578,0.34113 -2.08464372,0.59698 -2.08464372,0.59698 -2.08464372,0.59698 0,0 0,0 0,7.5901 0,7.50482 0,22.68502 0,30.27513 0,7.59009 0,7.59009 0,7.59009 M 1997.8576,239.15287 c 2.7518,2.64375 2.7518,2.64375 2.7518,2.64375 0,0 0,0 0,8.01651 0,8.01651 0,24.04953 0,32.06605 0,8.0165 0,8.0165 0,8.0165 0,0 0,0 -2.6684,-1.62036 -2.5849,-1.62035 -7.9217,-4.86108 -14.8426,-7.93123 -6.9211,-2.98487 -15.5931,-5.88445 -22.264,-2.55846 -6.6709,3.24073 -11.3405,12.62175 -14.5926,21.14996 -3.1687,8.52819 -4.8364,16.20358 -7.5881,25.15818 -2.8351,8.95462 -6.6708,19.18846 -12.8414,21.9175 -6.0871,2.64373 -14.4257,-2.13206 -21.2633,-9.80744 -6.7544,-7.67539 -12.0909,-18.25036 -18.7618,-26.77857 -6.6709,-8.52818 -14.6759,-15.00963 -23.3481,-19.61486 -8.5887,-4.51994 -17.7612,-7.07841 -26.0997,-9.80743 -8.3385,-2.64375 -15.8433,-5.54333 -25.1826,-6.82256 -9.2557,-1.27923 -20.4294,-0.9381 -30.6859,-5.62862 -10.2565,-4.69051 -19.7623,-14.41266 -21.8469,-24.90235 -2.0847,-10.48969 3.252,-21.91748 7.6714,-32.57774 4.4193,-10.66024 8.0884,-20.55296 14.5924,-24.98763 6.5042,-4.43466 16.0102,-3.24072 25.5994,-3.15543 9.5895,0.17056 19.2622,-0.68225 28.6014,-2.55846 9.3392,-1.79093 18.1781,-4.69052 25.0157,-5.37276 6.8376,-0.68227 11.5073,0.68224 19.4289,0.17055 7.9217,-0.59697 19.0954,-3.15543 28.2677,-2.55845 9.1726,0.5117 16.3437,4.26409 25.8496,7.07841 9.4226,2.8143 21.0967,4.86107 32.6039,4.94635 11.5906,0.0853 22.931,-1.70564 28.6846,-2.55846 5.6704,-0.85283 5.6704,-0.85283 5.6704,-0.85283 0,0 0,0 0,3.58184 0,3.58186 0,10.74555 0,14.32739 0,3.58184 0,3.58184 0,3.58184 0,0 0,0 0,0 0,0 0,0 0,0.42641 0,0.42642 0,1.27924 0,1.70565 0,0.42641 0,0.42641 0,0.42641 0,0 0,0 0,0 0,0 0,0 0,3.15544 0,3.07014 0,9.38101 0,12.45117 0,3.15543 0,3.15543 0,3.15543 0,0 0,0 -2.5016,0 -2.5016,0 -7.5047,0 -10.2564,0.42642 -2.8353,0.42641 -3.3356,1.27924 -0.834,4.43466 2.5016,3.07015 8.005,8.52819 10.8402,11.25722 M 282.02903,535.84906 c 2.25142,9.55157 8.58874,16.37414 10.67338,26.01102 2.08464,9.72214 -0.0834,22.17332 -7.08778,31.72491 -6.92103,9.55158 -18.59503,16.03302 -25.43266,26.011 -6.75424,9.97801 -8.75551,23.28201 -4.58621,28.31365 4.16928,4.94635 14.50912,1.53507 25.43264,-0.59697 11.00693,-2.13206 22.68093,-2.98488 34.52171,-2.81431 11.75739,0.0853 23.76494,1.27922 34.18816,3.24073 10.42322,1.96147 19.2621,4.86107 23.84832,0.25583 4.58622,-4.51994 4.91977,-16.45943 2.91851,-28.56948 -1.91788,-12.02476 -6.08716,-24.30537 -8.42197,-34.53923 -2.41819,-10.23383 -2.9185,-18.42092 -3.66898,-28.14306 -0.66707,-9.63687 -1.50094,-20.72353 -1.91786,-29.67815 -0.41694,-8.95461 -0.41694,-15.77716 -6.00377,-19.01789 -5.50346,-3.32599 -16.67715,-2.98487 -26.93361,-3.7524 -10.25644,-0.68227 -19.76243,-2.3879 -27.26714,-2.98487 -7.50472,-0.51169 -13.00818,0 -16.76052,6.39614 -3.75237,6.39616 -5.75363,18.67676 -3.50222,28.14308 m 1374.03037,0.17056 c 2.0847,4.86108 -5.0866,13.04815 -13.7585,14.92435 -8.5888,1.8762 -18.5952,-2.72902 -20.6798,-7.50482 -2.0847,-4.86106 3.7524,-9.97799 12.3412,-11.8542 8.672,-1.79092 20.0125,-0.42641 22.0971,4.43467 M 479.90342,898.89464 c 9.17243,6.14032 22.8477,10.91612 28.76808,6.39616 6.00379,-4.51996 4.33606,-18.50621 -1.91787,-25.58462 -6.25393,-7.0784 -17.09408,-7.41953 -25.43265,-6.5667 -8.33857,0.85282 -14.17558,2.89959 -14.75927,7.59009 -0.50031,4.69052 4.16928,12.02476 13.34171,18.16507"),N(H,"style","display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision"),N(H,"id","path205"),N(H,"fill","#ecf2f9")]),G)])),M(Q,"g",V([N(H,"id","lakes"),N(H,"style","display:inline;shape-rendering:geometricPrecision"),N(H,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),V([M(Q,"path",V([N(H,"d","m 916.8,227.7 c -1.5,1 -4.1,2.6 -6,3.5 -1.8,0.8 -2.8,0.8 -4,0 -1.1,-0.9 -2.5,-2.5 -2.3,-4.7 0.2,-2.2 1.8,-4.8 4.3,-5.7 2.5,-0.8 5.9,0.2 7.7,1.4 1.8,1.1 2.2,2.5 2.2,3.3 0,0.8 -0.4,1.2 -1.9,2.2"),N(H,"id","lake_7"),N(H,"data-f","7"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1311,270.2 c -0.3,2.8 -1.7,4.8 -2.7,5.8 -1,1 -1.6,1 -3.3,0 -1.7,-1 -4.3,-3 -5,-5.8 -0.7,-2.9 0.7,-6.5 1.7,-8.5 1,-2 1.6,-2.4 3,-2.4 1.3,0 3.3,0.4 4.6,2.4 1.4,2 2,5.6 1.7,8.5"),N(H,"id","lake_10"),N(H,"data-f","10"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 332.2,391.5 c 2.1,0.2 4.5,0.8 6.3,2.5 1.8,1.7 3.2,4.3 3.2,7.2 0,2.8 -1.4,5.8 -2,8 -0.7,2.1 -0.7,3.5 -0.2,4.5 0.5,1 1.5,1.6 4,2.3 2.5,0.7 6.5,1.3 8.8,1.8 2.4,0.5 3,0.9 4.4,1 1.3,0.2 3.3,0.2 4.6,0 1.4,-0.1 2,-0.5 3.9,-0.6 1.8,-0.2 4.8,-0.2 6.6,-0.4 1.9,-0.1 2.5,-0.5 4.4,-0.6 1.8,-0.2 4.8,-0.2 6.8,-0.4 2,-0.1 3,-0.5 4.5,-0.5 1.5,0 3.5,0.4 4.9,0.5 1.4,0 2.3,-0.1 3.1,-0.3 0.8,-0.2 1.7,-0.3 3.6,-1.6 1.9,-1.2 4.9,-3.6 6.3,-5.2 1.4,-1.7 1.3,-2.7 1.1,-3.7 -0.2,-1 -0.3,-2 -0.6,-3.8 -0.2,-1.9 -0.6,-4.5 0.2,-6.1 0.7,-1.6 2.6,-2.1 4.4,-2.6 1.8,-0.5 3.7,-1 4.9,-0.6 1.3,0.4 1.9,1.8 2.9,2.8 1,1 2.4,1.6 3.9,1.8 1.5,0.2 3.1,-0.2 5,0.4 1.8,0.6 3.8,2.1 5.8,3.6 2,1.5 4,3 4.5,5.1 0.5,2.1 -0.5,4.7 -0.8,6.6 -0.4,1.8 0,2.8 -0.4,4.6 -0.3,1.9 -1.3,4.5 -1.8,6.2 -0.5,1.7 -0.5,2.3 -0.7,3.7 -0.1,1.3 -0.5,3.3 -1.1,5 -0.7,1.6 -1.7,3 -2.4,3.8 -0.6,0.8 -1,1.2 -1.6,1.8 -0.7,0.7 -1.7,1.7 -3.5,2.5 -1.9,0.9 -4.5,1.5 -6.4,3 -1.8,1.5 -2.8,3.9 -2.6,5.9 0.1,2 1.5,3.6 1.3,5.6 -0.2,2 -1.8,4.4 -3.8,5.2 -2,0.8 -4.4,0.2 -6.2,-1.5 -1.8,-1.7 -3.2,-4.3 -5.2,-5.8 -2,-1.5 -4.6,-1.9 -6.8,-1 -2.2,0.8 -3.8,2.8 -4.7,5 -0.8,2.1 -0.8,4.5 -1.5,6.6 -0.6,2.2 -2,4.2 -3.3,5.4 -1.3,1.1 -2.7,1.5 -4.8,3 -2.2,1.5 -5.2,4.1 -6.9,6 -1.6,1.8 -2,2.8 -4.3,4.1 -2.3,1.4 -6.7,3 -9.2,3.9 -2.5,0.8 -3.1,0.8 -5,1.1 -1.8,0.4 -4.8,1 -7,1.4 -2.1,0.3 -3.5,0.3 -5.1,0.6 -1.7,0.4 -3.7,1 -5.9,1.2 -2.1,0.2 -4.5,-0.2 -6.5,0.2 -2,0.3 -3.6,1.3 -6,1.6 -2.3,0.4 -5.3,0 -7.1,-1.5 -1.9,-1.5 -2.5,-4.1 -2.4,-6.5 0.2,-2.3 1.2,-4.3 1.3,-6.2 0.1,-1.9 -0.8,-3.8 -1.6,-5.6 -0.8,-1.8 -1.7,-3.7 -2.2,-4.6 -0.6,-0.9 -1,-0.9 -2.8,-0.1 -1.8,0.9 -5.2,2.5 -7,3.5 -1.8,1 -2.2,1.4 -3.5,1.9 -1.3,0.5 -3.7,1.1 -5.8,2.6 -2.2,1.5 -4.2,3.9 -5.5,5 -1.4,1.2 -2,1.2 -3,1.9 -1,0.6 -2.4,2 -4.9,2.1 -2.5,0.2 -6.1,-0.8 -8.1,-1.6 -2,-0.9 -2.4,-1.5 -2.7,-2.4 -0.3,-0.8 -0.7,-1.8 -1.7,-3 -1,-1.1 -2.6,-2.5 -3.5,-3.8 -0.8,-1.3 -0.8,-2.7 -1.5,-3.8 -0.6,-1.2 -2,-2.2 -4.3,-2.5 -2.3,-0.4 -5.7,0 -7.5,0.3 -1.8,0.3 -2.2,0.7 -3.3,0.8 -1.2,0.2 -3.2,0.2 -4.9,0.5 -1.6,0.4 -3,1 -4.6,0.9 -1.7,-0.2 -3.7,-1.2 -5.7,-1.4 -2,-0.1 -4,0.5 -6.3,0 -2.4,-0.5 -5,-2.1 -5.9,-4 -0.8,-1.8 0.2,-3.8 0.2,-6 0,-2.1 -1,-4.5 -1.2,-6.3 -0.1,-1.8 0.5,-3.2 0.2,-4.8 -0.3,-1.7 -1.7,-3.7 -1.7,-5.7 0,-2 1.4,-4 3,-4.8 1.7,-0.9 3.7,-0.5 5.7,-1.2 2,-0.7 4,-2.3 5.7,-2.8 1.6,-0.5 3,0.1 5,0 2,-0.2 4.6,-1.2 6.5,-2.4 1.8,-1.1 2.8,-2.5 4.1,-3.3 1.4,-0.8 3,-1.2 4.7,-2.2 1.7,-1 3.3,-2.6 4.3,-3.8 1,-1.2 1.4,-1.8 3,-3.8 1.7,-2 4.7,-5.4 6.2,-7.7 1.5,-2.3 1.5,-3.7 1.7,-4.8 0.1,-1.2 0.5,-2.2 1.8,-3.4 1.3,-1.1 3.7,-2.5 6,-3 2.3,-0.5 4.7,-0.1 6.5,0.5 1.8,0.7 3.2,1.7 4.8,2.2 1.7,0.5 3.7,0.5 5.5,1 1.9,0.5 3.5,1.5 5,1.8 1.5,0.4 2.9,0 4.7,-1.3 1.8,-1.3 4.2,-3.7 5.3,-5.3 1.2,-1.7 1.2,-2.7 2.1,-3.8 0.9,-1.1 2.8,-2.2 4.6,-3.4 1.8,-1.2 3.7,-2.3 5.6,-2.1 1.9,0.3 3.9,1.9 5.9,2.6 2,0.7 4,0.3 6.2,0.5"),N(H,"id","lake_16"),N(H,"data-f","16"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 2273.5,455 c 0.5,0.3 1,0.7 1.8,2.7 0.7,2 1.7,5.6 1.2,8.5 -0.5,2.8 -2.5,4.8 -4.7,5.8 -2.1,1 -4.5,1 -6,-1.3 -1.5,-2.4 -2.1,-7 -1,-10.2 1.2,-3.2 4.2,-4.8 6,-5.5 1.7,-0.7 2.2,-0.3 2.7,0"),N(H,"id","lake_18"),N(H,"data-f","18"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 823.5,524.8 c -0.2,2.5 -1.8,4.9 -4,5.7 -2.2,0.8 -4.8,0.2 -6.3,-0.7 -1.5,-0.8 -1.9,-1.8 -0.9,-3.8 1,-2 3.4,-5 4.9,-6.7 1.5,-1.6 2.1,-2 2.6,-2.1 0.5,-0.2 0.9,-0.2 1.7,1.1 0.8,1.4 2.2,4 2,6.5"),N(H,"id","lake_22"),N(H,"data-f","22"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 651.8,555.5 c -2.1,0.8 -4.5,-0.8 -5.8,-3 -1.3,-2.2 -1.7,-4.8 -0.8,-6.8 0.8,-2 2.8,-3.4 4.3,-3.9 1.5,-0.5 2.5,-0.1 3.8,1 1.4,1.2 3,3.2 2.9,5.9 -0.2,2.6 -2.2,6 -4.4,6.8"),N(H,"id","lake_24"),N(H,"data-f","24"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1950,586.8 c 3,0.5 5,1.9 6.9,2.5 1.9,0.7 3.8,0.7 5.6,0.7 1.8,0 3.7,0 5.3,0.5 1.5,0.5 2.9,1.5 4.9,1.7 2,0.1 4.6,-0.5 6.6,-1.2 2,-0.7 3.4,-1.3 5,-1.3 1.7,0 3.7,0.6 5.2,0.8 1.5,0.2 2.5,-0.2 4.7,-0.3 2.1,-0.2 5.5,-0.2 8.3,0.8 2.8,1 5.2,3 6.8,4.2 1.7,1.1 2.7,1.5 4.2,2.1 1.5,0.7 3.5,1.7 5.3,2 1.9,0.2 3.5,-0.3 5.2,-0.8 1.7,-0.5 3.3,-1 5.2,-3.1 1.8,-2.1 3.8,-5.7 6.3,-6.6 2.5,-0.8 5.5,1.2 7.2,3 1.6,1.9 2,3.5 2.3,5.2 0.3,1.7 0.7,3.3 1,5 0.3,1.7 0.7,3.3 0.9,4.8 0.3,1.4 0.4,2.5 0.6,3.7 0.2,1.2 0.3,2.3 1.8,3.6 1.4,1.2 4,2.6 5.7,4.1 1.7,1.5 2.3,3.1 3.3,4.3 1,1.2 2.4,1.8 4,3.3 1.7,1.5 3.7,3.9 5.2,5 1.5,1.2 2.5,1.2 4.3,2.2 1.9,1 4.5,3 5.4,4.9 0.8,1.9 -0.2,3.8 -1.2,5.6 -1,1.8 -2,3.7 -3.7,4.8 -1.6,1 -4,1.4 -6,2.5 -2,1.2 -3.6,3.2 -5,4.2 -1.3,1 -2.3,1 -3.3,0.8 -1,-0.1 -2,-0.5 -4.5,-0.3 -2.5,0.2 -6.5,0.8 -9,0.3 -2.5,-0.5 -3.5,-2.1 -6.2,-2.5 -2.6,-0.3 -7,0.7 -9.5,1 -2.5,0.4 -3.1,0 -4.1,0 -1,0 -2.4,0.4 -4.2,2.2 -1.8,1.8 -4.2,5.2 -5.3,7.3 -1.2,2.2 -1.2,3.2 -2.9,4.9 -1.6,1.6 -5,4 -7.1,5 -2.2,1 -3.2,0.6 -4.9,-0.2 -1.6,-0.8 -4,-2.2 -5.5,-2.7 -1.5,-0.5 -2.1,-0.1 -4.1,0 -2,0.2 -5.4,0.2 -7.5,1.4 -2.2,1.1 -3.2,3.5 -4.7,5 -1.5,1.5 -3.5,2.1 -5,3.3 -1.5,1.2 -2.5,2.8 -4,4 -1.5,1.2 -3.5,1.8 -4.8,2.8 -1.4,1 -2,2.4 -2.2,4 -0.2,1.7 0.2,3.7 1,5.2 0.8,1.5 2.2,2.5 4.5,3 2.3,0.5 5.7,0.5 7.7,0.3 2,-0.1 2.6,-0.5 4.6,0.5 2,1 5.4,3.4 6.7,5.7 1.3,2.3 0.7,4.7 0.5,6.8 -0.2,2.2 0.2,4.2 0,5.4 -0.2,1.1 -0.8,1.5 -1.3,2.8 -0.5,1.3 -0.9,3.7 -2.7,6.3 -1.8,2.7 -5.2,5.7 -7.5,6.8 -2.3,1.1 -3.7,0.2 -5,-0.6 -1.3,-0.8 -2.7,-1.7 -3.7,-2.7 -1,-1.1 -1.6,-2.5 -2.6,-3.8 -1,-1.3 -2.4,-2.7 -4.9,-3 -2.5,-0.3 -6.1,0.3 -8.5,1.8 -2.3,1.5 -3.3,3.9 -3.6,6 -0.4,2.2 0,4.2 -0.2,5.7 -0.2,1.5 -0.8,2.5 -1,3.5 -0.2,1 0.2,2 0.7,2.8 0.5,0.9 1.1,1.5 1.8,3.5 0.7,2 1.3,5.4 2.8,7.4 1.5,2 3.9,2.6 5.2,4.6 1.3,2 1.7,5.4 1.2,7.5 -0.5,2.2 -1.9,3.2 -4.2,3.7 -2.3,0.5 -5.7,0.5 -7.8,-0.3 -2.2,-0.9 -3.2,-2.5 -3.7,-3.9 -0.5,-1.3 -0.5,-2.3 -1.5,-3.8 -1,-1.5 -3,-3.5 -4,-5.3 -1,-1.9 -1,-3.5 -2.2,-5.5 -1.1,-2 -3.5,-4.4 -4.3,-6.7 -0.8,-2.3 -0.2,-4.7 0,-6.2 0.2,-1.5 -0.2,-2.1 -1.7,-3 -1.5,-0.8 -4.1,-1.8 -6.5,-1.8 -2.3,0 -4.3,1 -5.8,3 -1.5,2 -2.5,5 -3.7,7 -1.1,2 -2.5,3 -3.1,4 -0.7,1 -0.7,2 -0.5,3.5 0.1,1.5 0.5,3.5 0.3,5 -0.2,1.5 -0.8,2.5 -1.2,3.5 -0.3,1 -0.3,2 -1.5,4 -1.1,2 -3.5,5 -5.5,6.3 -2,1.4 -3.6,1 -4.1,-0.6 -0.5,-1.7 0.1,-4.7 -0.7,-7.2 -0.8,-2.5 -3.2,-4.5 -4.5,-5.8 -1.3,-1.4 -1.7,-2 -2.2,-2.9 -0.5,-0.8 -1.1,-1.8 -1.5,-2.8 -0.3,-1 -0.3,-2 -0.1,-3 0.1,-1 0.5,-2 0.1,-4.7 -0.3,-2.6 -1.3,-7 -2.5,-9.6 -1.1,-2.7 -2.5,-3.7 -3.1,-4.5 -0.7,-0.9 -0.7,-1.5 -0.5,-2.4 0.1,-0.8 0.5,-1.8 0.5,-4 0,-2.1 -0.4,-5.5 -0.8,-8.3 -0.4,-2.8 -0.9,-5.2 -1.4,-7.5 -0.5,-2.3 -1,-4.7 -1.4,-6.1 -0.4,-1.4 -0.8,-1.9 -1.1,-2.4 -0.3,-0.5 -0.7,-1 -1.3,-2.6 -0.7,-1.6 -1.7,-4.2 -2,-6.7 -0.4,-2.5 0,-4.9 0.1,-6.4 0.2,-1.5 0.2,-2.1 -0.1,-2.6 -0.4,-0.5 -1,-0.9 -2.4,-2.7 -1.3,-1.8 -3.3,-5.2 -4,-7.8 -0.6,-2.7 0,-4.7 -1.6,-6.5 -1.7,-1.9 -5.7,-3.5 -6.4,-5.5 -0.6,-2 2,-4.4 4.5,-4.2 2.5,0.2 4.9,2.8 7.7,2.8 2.8,0 6.2,-2.6 8.2,-4 2,-1.3 2.6,-1.3 3,-3.3 0.3,-2 0.3,-6 1.1,-8.8 0.9,-2.9 2.5,-4.5 5.4,-5.4 2.8,-0.8 6.8,-0.8 9.7,-1.2 2.9,-0.4 4.8,-1.3 6.6,-2.1 1.8,-0.8 3.7,-1.7 3.9,-4.4 0.3,-2.8 -1.1,-7.4 -2.2,-9.9 -1.2,-2.5 -2.2,-2.9 -2.9,-3.4 -0.6,-0.5 -1,-1.1 -0.8,-3 0.2,-1.8 0.8,-4.8 3.2,-5.8 2.3,-1 6.3,0 8.5,0.2 2.1,0.1 2.5,-0.5 4,-1.4 1.5,-0.8 4.1,-1.8 6.3,-2.1 2.2,-0.4 3.8,0 5.5,-0.4 1.7,-0.3 3.3,-1.3 4.2,-3.5 0.8,-2.1 0.8,-5.5 1.1,-7.5 0.4,-2 1,-2.6 3.4,-3.1 2.3,-0.5 6.3,-0.9 9.3,-0.4"),N(H,"id","lake_27"),N(H,"data-f","27"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 2221,1040.3 c 1.7,0 4.3,-0.6 6,-0.8 1.7,-0.2 2.3,0.2 3.8,0.2 1.5,0 3.9,-0.4 5.9,-0.2 2,0.2 3.6,0.8 5.5,0.8 1.8,0 3.8,-0.6 6,-0.3 2.1,0.3 4.5,1.7 7.3,2 2.8,0.3 6.2,-0.3 8.3,-1 2.2,-0.7 3.2,-1.3 4.7,-1.7 1.5,-0.3 3.5,-0.3 4.7,-0.5 1.1,-0.1 1.5,-0.5 2.6,-0.5 1.2,0 3.2,0.4 4.5,1 1.4,0.7 2,1.7 2.7,4.2 0.7,2.5 1.3,6.5 0.8,9.7 -0.5,3.1 -2.1,5.5 -2.6,7.3 -0.5,1.8 0.1,3.2 0.3,4.2 0.2,1 -0.2,1.6 -1.7,3.1 -1.5,1.5 -4.1,3.9 -6.6,5 -2.5,1.2 -4.9,1.2 -6.5,1.5 -1.7,0.4 -2.7,1 -4,0.9 -1.4,-0.2 -3,-1.2 -4.7,-1.9 -1.7,-0.6 -3.3,-1 -5.2,-2 -1.8,-1 -3.8,-2.6 -5,-4 -1.1,-1.3 -1.5,-2.3 -3.6,-4 -2.2,-1.6 -6.2,-4 -8.7,-5 -2.5,-1 -3.5,-0.6 -4.5,0 -1,0.7 -2,1.7 -3.5,2.5 -1.5,0.9 -3.5,1.5 -6.2,1.5 -2.6,0 -6,-0.6 -8.5,-1.8 -2.5,-1.2 -4.1,-2.8 -5,-4.6 -1,-1.7 -1.1,-3.6 -1.3,-5.4 -0.2,-1.8 -0.3,-3.7 1.6,-5.6 1.9,-1.9 5.9,-3.9 8.2,-4.6 2.4,-0.6 3,0 4.7,0"),N(H,"id","lake_36"),N(H,"data-f","36"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1537.5,1094.3 c 1.8,1.4 2.2,3 1.6,4.5 -0.6,1.5 -2.1,2.9 -3.6,4.2 -1.5,1.3 -3,2.7 -4.9,2.7 -1.9,0 -4.3,-1.4 -5.6,-3 -1.3,-1.7 -1.7,-3.7 -1.7,-5.2 0,-1.5 0.4,-2.5 1.4,-3.5 1,-1 2.6,-2 5.1,-2 2.5,0 5.9,1 7.7,2.3"),N(H,"id","lake_37"),N(H,"data-f","37"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1603.5,1093.5 c 1.5,-0.2 2.5,-0.8 4.8,-1 2.4,-0.2 6,0.2 9,0.2 3,0 5.4,-0.4 7.7,-0.7 2.3,-0.3 4.7,-0.7 6.3,0.3 1.7,1 2.7,3.4 2.7,5.5 0,2.2 -1,4.2 0.2,6.5 1.1,2.4 4.5,5 5.6,8.2 1.2,3.2 0.2,6.8 -0.3,9 -0.5,2.2 -0.5,2.8 -1.8,4.2 -1.4,1.3 -4,3.3 -6.3,4.7 -2.2,1.4 -4.1,2.3 -5.9,3.1 -1.8,0.8 -3.7,1.7 -5.9,1.3 -2.3,-0.5 -4.9,-2.1 -6.3,-3.6 -1.3,-1.5 -1.3,-2.9 -3,-4.5 -1.6,-1.7 -5,-3.7 -7.1,-5.4 -2.2,-1.6 -3.2,-3 -4.2,-4.3 -1,-1.3 -2,-2.7 -2.8,-3.5 -0.9,-0.8 -1.5,-1.2 -2,-1.5 -0.5,-0.3 -0.9,-0.7 -1,-3 -0.2,-2.3 -0.2,-6.7 0,-9.3 0.1,-2.7 0.5,-3.7 1.3,-4.5 0.8,-0.9 2.2,-1.5 3.8,-1.7 1.7,-0.2 3.7,0.2 5.2,0"),N(H,"id","lake_38"),N(H,"data-f","38"),N(H,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1417.7,1123.6 c 2,-0.1 2.6,0.4 3.3,0.9 0.7,0.5 1.3,1 1.3,3.3 0,2.2 -0.6,6.2 -2.6,8.5 -2,2.4 -5.4,3 -7.7,3 -2.3,0 -3.7,-0.6 -4.5,-2.8 -0.8,-2.2 -1.2,-5.8 -1.3,-7.7 -0.2,-1.8 -0.2,-1.8 0.3,-2.1 0.5,-0.4 1.5,-1 3.7,-1.7 2.1,-0.7 5.5,-1.3 7.5,-1.4"),N(H,"id","lake_39"),N(H,"data-f","39"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1695.2,1135.2 c 0.5,2.5 0.1,6.1 -0.5,8.3 -0.7,2.2 -1.7,2.8 -1.7,4.5 0,1.7 1,4.3 -0.2,6.8 -1.1,2.5 -4.5,4.9 -7.3,4.9 -2.8,0 -5.2,-2.4 -7.7,-3.5 -2.5,-1.2 -5.1,-1.2 -7.1,-2.4 -2,-1.1 -3.4,-3.5 -3.4,-5.7 0,-2.3 1.4,-4.4 2.7,-6.6 1.3,-2.2 2.7,-4.3 4.5,-5.4 1.8,-1.1 4.2,-1.1 6,-1.9 1.8,-0.9 3.2,-2.5 4.3,-3.5 1.2,-1 2.2,-1.4 3.4,-1.4 1.1,0 2.5,0.4 3.8,1.2 1.3,0.8 2.7,2.2 3.2,4.7"),N(H,"id","lake_40"),N(H,"data-f","40"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1914,1126 c 0.7,1.3 1.3,3.7 0.8,6.2 -0.5,2.5 -2.1,5.1 -3,6.8 -0.8,1.7 -0.8,2.3 -0.8,3.2 0,0.8 0,1.8 -1,3.1 -1,1.4 -3,3 -4.2,5.2 -1.1,2.2 -1.5,4.8 -3.3,6.5 -1.8,1.7 -5.2,2.3 -7.5,3 -2.3,0.7 -3.7,1.3 -5.7,0.8 -2,-0.5 -4.6,-2.1 -4.8,-5 -0.2,-2.8 2.2,-6.8 4.3,-9 2.2,-2.1 4.2,-2.5 6,-4.1 1.9,-1.7 3.5,-4.7 4.2,-6.4 0.7,-1.6 0.3,-2 1.7,-3.8 1.3,-1.8 4.3,-5.2 6.5,-6.8 2.1,-1.7 3.5,-1.7 4.5,-1.5 1,0.1 1.6,0.5 2.3,1.8"),N(H,"id","lake_41"),N(H,"data-f","41"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 486,1160 c -0.7,-2 -0.3,-5 1.3,-7 1.7,-2 4.7,-3 5.4,-1 0.6,2 -1,7 -2.7,9 -1.7,2 -3.3,1 -4,-1"),N(H,"id","lake_42"),N(H,"data-f","42"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 2216.8,1162 c -1.6,2.7 -5.4,7.3 -7.3,9.7 -1.9,2.3 -1.9,2.3 -1.9,2.3 0,0 0,0 -0.4,0 -0.4,0 -1.3,0 -1.8,0 -0.4,0 -0.4,0 -0.4,0 0,0 0,0 0,0 0,0 0,0 -0.2,-1.8 -0.1,-1.9 -0.5,-5.5 -0.1,-8.2 0.3,-2.7 1.3,-4.3 3.5,-5.2 2.1,-0.8 5.5,-0.8 7.5,-0.5 2,0.4 2.6,1 1.1,3.7"),N(H,"id","lake_43"),N(H,"data-f","43"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 2050.8,740.3 c 2.2,0.4 4.2,2 5.4,3.7 1.1,1.7 1.5,3.3 1,5 -0.5,1.7 -1.9,3.3 -3.4,3.8 -1.5,0.5 -3.1,-0.1 -5,-1.5 -1.8,-1.3 -3.8,-3.3 -4.6,-5 -0.9,-1.6 -0.5,-3 0.8,-4.1 1.3,-1.2 3.7,-2.2 5.8,-1.9"),N(H,"id","lake_30"),N(H,"data-f","30"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 760.2,538.3 c -1.5,0.7 -2.9,0.7 -4.4,-0.1 -1.5,-0.9 -3.1,-2.5 -3.6,-4.4 -0.5,-1.8 0.1,-3.8 2.1,-5 2,-1.1 5.4,-1.5 7.4,-0.3 2,1.2 2.6,3.8 2.1,5.8 -0.5,2 -2.1,3.4 -3.6,4"),N(H,"id","lake_21"),N(H,"data-f","21"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 801.2,544 c 0.1,2.3 -0.5,4.7 -1.5,6.2 -1,1.5 -2.4,2.1 -4.4,2.1 -2,0 -4.6,-0.6 -6.5,-1.8 -1.8,-1.2 -2.8,-2.8 -3.1,-4.8 -0.4,-2 0,-4.4 0.8,-5.9 0.8,-1.5 2.2,-2.1 4.3,-2.5 2.2,-0.3 5.2,-0.3 7.2,0.9 2,1.1 3,3.5 3.2,5.8"),N(H,"id","lake_25"),N(H,"data-f","25"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 669.3,294.4 c -0.5,1.8 -1.6,2.9 -2.8,4.1 -1.2,1.2 -2.3,2.3 -3.9,1.4 -1.6,-0.9 -3.6,-3.9 -4.1,-6.6 -0.5,-2.6 0.5,-5 2.5,-5.8 2,-0.8 5,-0.2 6.7,1.3 1.6,1.5 2,3.9 1.6,5.6"),N(H,"id","lake_11"),N(H,"data-f","11"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision;-webkit-filter:url(#paper)")]),G),M(Q,"path",V([N(H,"d","m 897.3,300.8 c 1,1.2 1.4,3.2 0.5,4.9 -0.8,1.6 -2.8,3 -4.6,3 -1.9,0 -3.5,-1.4 -4.4,-2.5 -0.8,-1.2 -0.8,-2.2 0,-3.4 0.9,-1.1 2.5,-2.5 4.2,-3 1.7,-0.5 3.3,-0.1 4.3,1"),N(H,"id","lake_12"),N(H,"data-f","12"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision;-webkit-filter:url(#paper)")]),G),M(Q,"path",V([N(H,"d","m 905,166.3 c -1.3,0.7 -2.7,0.7 -3.7,0.4 -1,-0.4 -1.6,-1 -1.6,-3 0,-2 0.6,-5.4 1.8,-7.4 1.2,-2 2.8,-2.6 4.2,-1.3 1.3,1.3 2.3,4.7 2.1,7 -0.1,2.3 -1.5,3.7 -2.8,4.3"),N(H,"id","lake_5"),N(H,"data-f","5"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 741.2,343.5 c 0.5,1.5 0.1,2.5 -1.7,3.7 -1.8,1.1 -5.2,2.5 -7.3,2.8 -2.2,0.3 -3.2,-0.3 -3.7,-1.2 -0.5,-0.8 -0.5,-1.8 0.8,-3.8 1.4,-2 4,-5 5.7,-6.3 1.7,-1.4 2.3,-1 3.3,0.1 1,1.2 2.4,3.2 2.9,4.7"),N(H,"id","lake_13"),N(H,"data-f","13"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 697.2,382.3 c -2.2,1.7 -5.2,1.7 -7,0.5 -1.9,-1.1 -2.5,-3.5 -2.4,-5.8 0.2,-2.3 1.2,-4.7 2.9,-6 1.6,-1.3 4,-1.7 6,-1 2,0.7 3.6,2.3 3.8,4.8 0.2,2.5 -1.2,5.9 -3.3,7.5"),N(H,"id","lake_14"),N(H,"data-f","14"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 634,385.2 c 3,0.5 4,1.1 4.5,1.8 0.5,0.7 0.5,1.3 0,2.3 -0.5,1 -1.5,2.4 -3.8,4 -2.4,1.7 -6,3.7 -7.9,6 -1.8,2.4 -1.8,5 -3,7 -1.1,2 -3.5,3.4 -4.6,5.2 -1.2,1.8 -1.2,4.2 -2.5,6.3 -1.4,2.2 -4,4.2 -7,4.4 -3,0.1 -6.4,-1.5 -8.2,-3.5 -1.8,-2 -2.2,-4.4 -1.7,-6.5 0.5,-2.2 1.9,-4.2 2.9,-5.5 1,-1.4 1.6,-2 2.1,-3.2 0.5,-1.2 0.9,-2.8 3,-4.5 2.2,-1.7 6.2,-3.3 8.4,-5.5 2.1,-2.2 2.5,-4.8 3,-6.5 0.5,-1.7 1.1,-2.3 4,-2.5 2.8,-0.2 7.8,0.2 10.8,0.7"),N(H,"id","lake_17"),N(H,"data-f","17"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 114.2,538.7 c -0.5,1.6 -1.9,4 -3.4,5.5 -1.5,1.5 -3.1,2.1 -5,2 -1.8,-0.2 -3.8,-1.2 -4.8,-2.9 -1,-1.6 -1,-4 0.7,-6.1 1.6,-2.2 5,-4.2 7.3,-4.5 2.3,-0.4 3.7,1 4.5,2.1 0.8,1.2 1.2,2.2 0.7,3.9"),N(H,"id","lake_23"),N(H,"data-f","23"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 759.7,572.8 c 2,0.2 4.6,-2.8 6.6,-3.6 2,-0.9 3.4,0.5 4.2,1.5 0.8,1 1.2,1.6 0.5,2.8 -0.7,1.2 -2.3,2.8 -4.5,3.8 -2.2,1 -4.8,1.4 -6.7,2 -1.8,0.7 -2.8,1.7 -4.6,2.9 -1.9,1.1 -4.5,2.5 -7.2,2.3 -2.7,-0.2 -5.3,-1.8 -6.8,-3.5 -1.5,-1.7 -1.9,-3.3 -0.9,-5.7 1,-2.3 3.4,-5.3 6,-7 2.7,-1.6 5.7,-2 7.9,-0.5 2.1,1.5 3.5,4.9 5.5,5"),N(H,"id","lake_26"),N(H,"data-f","26"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 1589.8,717 c -0.1,0.3 -0.5,0.7 -1.1,1 -0.7,0.3 -1.7,0.7 -3.9,0.3 -2.1,-0.3 -5.5,-1.3 -7,-3.1 -1.5,-1.9 -1.1,-4.5 0,-5.9 1.2,-1.3 3.2,-1.3 5.4,0 2.1,1.4 4.5,4 5.6,5.5 1.2,1.5 1.2,1.9 1,2.2"),N(H,"id","lake_28"),N(H,"data-f","28"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G),M(Q,"path",V([N(H,"d","m 89.7,1041.7 c -1.7,1 -4.7,2.6 -6.4,3.3 -1.6,0.7 -2,0.3 -2.6,-1.5 -0.7,-1.8 -1.7,-5.2 -1.4,-7 0.4,-1.8 2,-2.2 3.7,-2.5 1.7,-0.3 3.3,-0.7 4.8,0.3 1.5,1 2.9,3.4 3.4,4.7 0.5,1.3 0.1,1.7 -1.5,2.7"),N(H,"id","lake_35"),N(H,"data-f","35"),N(H,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),G)])),M(Q,"g",V([N(H,"id","landmass"),N(H,"style","display:inline;opacity:1;fill:#e3dfce;fill-rule:evenodd;shape-rendering:geometricPrecision"),N(H,"mask","url(#land)"),N(H,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),V([M(Q,"rect",V([N(H,"x","0"),N(H,"y","0"),N(H,"width","2400"),N(H,"height","1174"),N(H,"id","rect247"),N(H,"inkscape:label","rect247"),N(H,"style","display:inline")]),G)])),M(Q,"g",V([N(H,"id","rivers"),N(H,"fill","#a69b7d"),N(H,"filter",""),N(H,"style","display:inline;shape-rendering:geometricPrecision;-webkit-mask:url(#land);-webkit-mask-image:url(#land)"),N(H,"mask","url(#land)"),N(H,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),V([M(Q,"path",V([N(H,"id","river1"),N(H,"d","m 2202.5,669.3 c 0,0 1.9,3 2.3,4.7 0.4,1.7 1.3,3.4 0.4,5.3 -1,2 -4.1,4.5 -6.4,6.4 -2.4,1.8 -7.6,4.8 -7.6,4.8 -0.1,-0.2 5.1,-3.1 7.4,-5 2.3,-1.8 5.4,-4.4 6.3,-6.3 0.9,-1.9 0.1,-3.5 -0.4,-5.1 -0.4,-1.6 -2.3,-4.7 -2.3,-4.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river2"),N(H,"d","m 2204.3,751.2 c 0,0 -1.7,-4.1 -2,-6.2 -0.4,-2.2 1,-4.4 -0.1,-6.5 -1.1,-2.2 -4.8,-4.1 -6.8,-6.5 -2,-2.4 -2.7,-7.1 -5.2,-7.8 -2.7,-0.7 -6.9,2.9 -10.4,3.8 -3.6,1 -11,1.9 -11,1.9 0,-0.1 7.3,-1.1 10.9,-2 3.6,-1 7.8,-4.6 10.5,-3.9 2.6,0.7 3.4,5.4 5.5,7.8 2,2.4 5.7,4.3 6.9,6.5 1.1,2.1 -0.2,4.4 0.2,6.6 0.4,2.1 2,6.1 2,6.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river3"),N(H,"d","m 2171,618.6 c 0,0 -5.2,0.8 -7.8,0.7 -2.5,-0.1 -6.1,-2.1 -7.4,-1.2 -1.4,0.8 -0.2,4.2 -0.8,6.2 -0.6,2.1 -2.9,6 -2.9,6 -0.3,-0.2 1.8,-4 2.4,-6.1 0.6,-2.1 -0.5,-5.7 0.9,-6.7 1.5,-0.9 5.3,1.1 7.8,1.2 2.6,0 7.7,-0.8 7.7,-0.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river5"),N(H,"d","m 2219.1,710.2 c 0,0 -1,1.7 -1.7,2.1 -0.8,0.3 -0.5,0.2 -2.7,0.2 -2.6,0 -8.8,0 -13.1,-0.5 -4.4,-0.5 -12.9,-2.5 -12.9,-2.5 0,-0.1 8.6,1.8 12.9,2.2 4.3,0.5 10.6,0.4 13.1,0.4 2.1,0 1.8,0.2 2.5,-0.2 0.6,-0.4 1.6,-1.9 1.6,-1.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river6"),N(H,"d","m 2159.1,593.3 c 0,0 1.1,4 1.2,6 0,2 0.4,3.9 -0.9,6.1 -1.3,2.3 -4.6,5.3 -7.2,7.5 -2.6,2.3 -8.5,6 -8.5,6 -0.1,-0.1 5.7,-3.9 8.3,-6.2 2.6,-2.2 5.8,-5.2 7.1,-7.5 1.2,-2.1 0.8,-3.9 0.7,-5.9 0,-2 -1.2,-5.9 -1.2,-5.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river9"),N(H,"d","m 0,980.1 c 0,0 10,1.5 14.4,0 4.3,-1.4 7.5,-6.1 11.6,-8.7 4,-2.7 12.7,-7.1 12.7,-7.1 0,0.1 -8.6,4.6 -12.7,7.2 -4,2.7 -7.2,7.4 -11.6,8.9 -4.3,1.4 -14.4,0 -14.4,0"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river15"),N(H,"d","m 1474.8,185.8 c 0,0 6,3.9 8.7,6.2 2.8,2.3 4.5,6.2 7.5,7.6 3.1,1.5 7.4,0.4 10.9,1.1 3.6,0.7 10.5,3.1 10.5,3.1 0,0.1 -6.9,-2.3 -10.5,-2.9 -3.6,-0.7 -7.9,0.3 -10.9,-1.1 -3.1,-1.5 -4.9,-5.4 -7.6,-7.7 -2.7,-2.3 -8.8,-6.1 -8.8,-6.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river16"),N(H,"d","m 154.9,305 c 0,0 4.2,-1.9 6.4,-2.3 2.2,-0.5 5.2,-1.5 6.9,-0.4 1.7,1.1 2.6,4.6 3.4,7 0.8,2.5 1.5,7.7 1.5,7.7 -0.1,0 -0.8,-5.2 -1.7,-7.6 -0.8,-2.4 -1.7,-5.8 -3.4,-6.9 -1.6,-1 -4.5,0 -6.6,0.5 -2.2,0.4 -6.3,2.3 -6.3,2.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river18"),N(H,"d","m 379.7,241.9 c 0,0 5.5,-3.1 8.4,-4.2 2.8,-1.2 5.9,-2.3 9,-2.5 3.1,-0.2 6.5,0.5 9.6,1.3 3.1,0.8 6.2,1.7 9.1,3.3 2.9,1.6 5.7,4.2 8.2,6.6 2.5,2.4 6.9,8 6.9,8 -0.2,0.1 -4.5,-5.5 -7,-7.9 -2.5,-2.4 -5.3,-4.9 -8.2,-6.5 -2.9,-1.7 -6,-2.5 -9.1,-3.3 -3.1,-0.7 -6.4,-1.5 -9.5,-1.3 -3.1,0.2 -6.1,1.4 -8.9,2.6 -2.9,1.1 -8.3,4.3 -8.3,4.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river24"),N(H,"d","m 292.8,827.6 c 0,0 4.7,-0.9 7,-0.8 2.4,0 4.3,0.5 7,1.1 2.9,0.5 6.6,1.2 9.8,2.3 3.1,1 9.1,4.1 9.1,4.1 -0.1,0.1 -6,-2.9 -9.2,-4 -3.1,-1 -6.9,-1.6 -9.7,-2.2 -2.7,-0.5 -4.7,-1 -7,-1 -2.3,-0.1 -7,0.9 -7,0.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river25"),N(H,"d","m 1083.1,191.5 c 0,0 -4.3,4.3 -6.8,6 -2.5,1.7 -5.1,4.6 -8,4.4 -3,-0.2 -6.7,-3.7 -9.8,-5.9 -3.1,-2.3 -8.6,-7.6 -8.6,-7.6 0.1,0 5.6,5.2 8.7,7.4 3,2.3 6.7,5.7 9.7,5.9 2.9,0.2 5.4,-2.7 7.9,-4.4 2.4,-1.7 6.8,-6 6.8,-6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river26"),N(H,"d","m 338.7,797 c 0,0 0.8,6.6 0.7,9.9 -0.1,3.3 -1.8,7.4 -1.2,9.8 0.4,2.2 2.9,2.6 3.9,4.2 1,1.6 2.3,5.3 2.3,5.3 -0.2,0.1 -1.4,-3.6 -2.5,-5.2 -1.1,-1.6 -3.6,-2 -4.1,-4.3 -0.5,-2.3 1.2,-6.5 1.3,-9.8 0.1,-3.3 -0.7,-9.9 -0.7,-9.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river27"),N(H,"d","m 290.7,836.8 c 0,0 5.2,-1.2 7.9,-1.2 2.6,-0.1 5.6,0.2 7.8,0.8 2.2,0.5 3.9,1.2 5.5,2.3 1.6,1 4.3,4 4.3,4 -0.1,0.1 -2.8,-2.8 -4.5,-3.8 -1.6,-1 -3.2,-1.7 -5.3,-2.2 -2.2,-0.5 -5.2,-0.8 -7.8,-0.7 -2.6,0 -7.8,1.2 -7.8,1.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river28"),N(H,"d","m 309.8,898.2 c 0,0 -0.8,-5.1 -0.6,-7.6 0.1,-2.5 0.8,-5 1.2,-7.4 0.4,-2.4 0.4,-4.8 1.1,-7 0.7,-2.2 3,-6.4 3,-6.4 0.1,0.1 -2.2,4.2 -2.8,6.5 -0.6,2.2 -0.6,4.5 -1,6.9 -0.3,2.4 -1.1,5 -1.2,7.4 -0.1,2.5 0.7,7.6 0.7,7.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river30"),N(H,"d","m 154,282.6 c 0,0 3.5,0.8 5.1,1.6 1.5,0.9 1.9,2.5 4.2,3.3 2.4,1 7.1,1.1 10.5,2.1 3.4,1 7.2,1.5 10,4 3,2.6 5.2,7.4 7.4,11.4 2.2,4 5.6,12.4 5.6,12.4 -0.1,0 -3.6,-8.4 -5.8,-12.3 -2.1,-3.9 -4.4,-8.8 -7.3,-11.3 -2.9,-2.5 -6.6,-2.9 -10,-3.9 -3.4,-1 -8.1,-1 -10.6,-2 -2.3,-0.8 -2.7,-2.4 -4.2,-3.2 -1.6,-0.8 -5.1,-1.6 -5.1,-1.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river32"),N(H,"d","m 0,1006 c 0,0 5,1.4 7,0 2.1,-1.4 3.4,-6.1 5.5,-8.9 2.1,-2.8 7.1,-7.7 7.1,-7.7 0.1,0.1 -4.9,5 -7,7.8 -2.1,2.8 -3.3,7.5 -5.5,9 -2,1.4 -7.1,0 -7.1,0"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river35"),N(H,"d","m 2400,995.8 c 0,0 -11.1,-1.7 -12.8,-0.1 -1.6,1.6 1.9,6.3 2.4,9.6 0.5,3.3 0.4,10 0.4,10 -0.2,0 -0.2,-6.6 -0.7,-10 -0.4,-3.3 -4.1,-8.2 -2.4,-9.8 1.8,-1.8 13.1,-0.1 13.1,-0.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river36"),N(H,"d","m 389.1,937.2 c 0,0 4.9,-2 7.5,-2.5 2.6,-0.5 6,-1.4 7.9,-0.6 1.9,0.8 2.7,3.4 3.6,5.3 0.9,1.9 1.6,6.1 1.6,6.1 -0.1,0 -1,-4.1 -1.8,-6 -0.9,-1.8 -1.7,-4.3 -3.5,-5.1 -1.9,-0.7 -5.2,0.1 -7.8,0.7 -2.5,0.5 -7.4,2.5 -7.4,2.5"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river37"),N(H,"d","m 2400,226 c 0,0 -8.4,1.6 -9.7,-0.1 -1.4,-1.7 0.8,-7 1.6,-10.4 0.9,-3.3 3.7,-9.7 3.7,-9.7 0.3,0.1 -2.4,6.5 -3.3,9.8 -0.9,3.3 -3.1,8.4 -1.8,10.1 1.3,1.6 9.5,-0.1 9.5,-0.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river40"),N(H,"d","m 0,950.4 c 0,0 12,-1.3 14.7,0 2.5,1.2 1.5,4.5 1.7,6.8 0.2,2.3 -0.4,6.9 -0.4,6.9 -0.2,0 0.4,-4.6 0.2,-6.9 C 16,955 17,951.8 14.6,950.7 12,949.5 0,950.7 0,950.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river41"),N(H,"d","m 12.3,324.7 c 0,0 5,2 7.3,3.4 2.3,1.4 5,2.3 6.4,5 1.5,2.9 1.7,8.1 2.1,12.1 0.3,4.1 -0.2,8.1 0,12.2 0.3,4.1 1.4,8.2 1.5,12.3 0.2,4.2 -0.5,12.5 -0.5,12.5 -0.1,0 0.5,-8.3 0.3,-12.4 -0.2,-4.2 -1.3,-8.3 -1.5,-12.4 -0.3,-4 0.2,-8.1 -0.2,-12.2 -0.4,-4 -0.6,-9.1 -2.1,-11.9 -1.4,-2.7 -4,-3.5 -6.2,-4.8 -2.3,-1.4 -7.3,-3.2 -7.3,-3.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river42"),N(H,"d","m 2400,143.6 c 0,0 -1.2,-1.4 -1.5,-0.2 -0.4,1.5 0.1,6.7 -0.3,10 -0.4,3.3 -2.3,9.7 -2.3,9.7 -0.1,0 1.7,-6.4 2.1,-9.7 0.4,-3.3 -0.2,-8.5 0.2,-10 0.4,-1.3 1.8,-0.1 1.8,-0.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river43"),N(H,"d","m 98.7,264.2 c 0,0 0.3,-5.3 1,-7.8 0.6,-2.5 2.3,-4.7 2.9,-7.3 0.6,-2.6 0.1,-5.6 0.7,-8.3 0.6,-2.6 4.5,-6.9 2.7,-7.7 -1.9,-0.9 -9.9,2.6 -14.9,3.4 -5,0.8 -15.3,1.4 -15.3,1.4 0,-0.1 10.2,-0.8 15.3,-1.6 5,-0.8 13,-4.4 15,-3.5 1.8,0.9 -2,5.4 -2.5,8.1 -0.5,2.7 -0.1,5.7 -0.7,8.3 -0.6,2.6 -2.2,4.8 -2.8,7.3 -0.6,2.5 -1,7.7 -1,7.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river53"),N(H,"d","m 2373.1,630 c 0,0 1.8,-6.9 3.2,-10.1 1.3,-3.3 4.4,-6.3 4.9,-9.4 0.6,-3.2 -1.3,-6.3 -1.5,-9.5 -0.2,-3.2 -0.6,-6.5 0.4,-9.8 1.1,-3.3 3.9,-6.9 6.3,-10.1 2.3,-3.1 7.8,-8.8 7.8,-8.8 0.1,0.1 -5.4,5.8 -7.7,9 -2.3,3.1 -5,6.7 -6.1,10 -1.1,3.3 -0.6,6.4 -0.4,9.6 0.2,3.2 2.2,6.5 1.6,9.6 -0.5,3.2 -3.5,6.3 -4.9,9.5 -1.3,3.3 -3.1,10.2 -3.1,10.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river54"),N(H,"d","m 985,584.8 c 0,0 -7.6,0.2 -11.4,-0.2 -3.7,-0.4 -8.5,-2.2 -11.1,-2.1 -2.3,0 -2.7,1.7 -4.1,2 -1.5,0.4 -4.7,0.2 -4.7,0.2 0,-0.2 3.2,0 4.6,-0.4 1.5,-0.4 1.8,-2.1 4.2,-2.2 2.6,0 7.4,1.8 11.2,2.1 3.7,0.4 11.3,0.2 11.3,0.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river63"),N(H,"d","m 1203.9,734.4 c 0,0 3.7,3.7 5.2,5.8 1.5,2.1 2,3.9 3.6,6.8 1.7,3 4.7,7.2 6.5,11 1.9,3.7 2.7,8.8 4.8,11.7 2,2.9 5.3,3.7 7.6,5.9 2.3,2.3 6.2,7.4 6.2,7.4 -0.1,0.1 -4.1,-5 -6.4,-7.2 -2.3,-2.2 -5.5,-3 -7.6,-5.9 -2.1,-3 -2.9,-8 -4.8,-11.8 -1.9,-3.8 -4.9,-7.9 -6.6,-10.9 -1.6,-2.9 -2.2,-4.7 -3.6,-6.8 -1.5,-2.1 -5.2,-5.6 -5.2,-5.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river64"),N(H,"d","m 45.9,914.5 c 0,0 -5.9,3.2 -8.9,4.3 -3.1,1.1 -7.6,0.6 -9.6,2.4 -1.9,1.9 -1,5.8 -2,8.6 -1,2.7 -3.9,8 -3.9,8 -0.1,-0.1 2.8,-5.3 3.7,-8.1 1,-2.7 0.2,-6.8 2.1,-8.7 1.9,-1.8 6.5,-1.3 9.6,-2.5 3,-1.1 8.8,-4.3 8.8,-4.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river68"),N(H,"d","m 969.9,706.7 c 0,0 -8.3,-0.1 -12.4,-0.6 -4.2,-0.5 -10,-0.7 -12.4,-2.3 -2.3,-1.5 -1.8,-4.6 -2.3,-6.8 -0.4,-2.3 0.4,-4.7 -0.2,-6.7 -0.7,-2 -2.8,-3.5 -3.8,-5.4 -1,-2 -1.3,-3.8 -2.3,-6.3 -1,-2.8 -3,-6.5 -4,-9.8 -1,-3.2 -0.5,-8.6 -2.1,-9.9 -1.7,-1.4 -5,1.3 -7.6,1.5 -2.7,0.2 -5.6,0.2 -8.3,-0.3 -2.6,-0.6 -5.3,-1.7 -7.8,-2.9 -2.5,-1.3 -5.3,-2 -7.2,-4.7 -1.9,-2.7 -3,-7.9 -4.1,-12 -1,-4.2 -3.6,-10.4 -2.2,-12.8 1.3,-2.3 6.7,-1.6 9.9,-1.8 3.2,-0.3 8.6,2.2 9.4,0.4 0.7,-1.8 -3.9,-7.6 -5.4,-11.6 -1.5,-4.1 -1.4,-10.2 -3.6,-12.6 -2.1,-2.2 -6.2,-0.6 -9.2,-1.4 -3,-0.8 -5.4,-2.9 -8.8,-3.4 -3.4,-0.5 -7.6,0.5 -11.4,0.3 -3.8,-0.2 -7.6,0 -11.4,-1.7 -3.8,-1.7 -7.9,-5.4 -11.5,-8.5 -3.6,-3.1 -10.1,-10 -10.1,-10 0.1,-0.1 6.7,6.8 10.3,9.9 3.6,3.1 7.6,6.8 11.4,8.4 3.7,1.6 7.5,1.4 11.3,1.6 3.8,0.2 8.1,-0.8 11.5,-0.3 3.3,0.5 5.8,2.5 8.8,3.3 3,0.8 7.2,-0.7 9.4,1.5 2.3,2.4 2.3,8.5 3.8,12.7 1.6,4.1 6.4,10.1 5.6,12.1 -0.8,2 -6.8,-0.2 -10,0.1 -3.2,0.2 -8.1,-0.8 -9.3,1.4 -1.2,2.3 1.3,8.1 2.4,12.1 1,4 2.1,9.1 4,11.8 1.8,2.6 4.4,3.1 6.8,4.3 2.4,1.2 5,2.3 7.6,2.8 2.6,0.5 5.3,0.5 8,0.3 2.7,-0.1 6.5,-2.8 8.3,-1.3 1.9,1.5 1.4,7.1 2.5,10.4 1.1,3.4 2.9,7 4,9.7 1,2.5 1.3,4.2 2.3,6.2 1,1.9 3.1,3.5 3.8,5.5 0.8,2.1 0.1,4.7 0.4,6.8 0.3,2.2 -0.4,4.7 1.7,6.1 2.3,1.4 7.9,1.6 11.9,2.1 4.1,0.4 12.3,0.5 12.3,0.5"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river69"),N(H,"d","m 148.6,128.8 c 0,0 0.8,4.2 0.7,6.4 -0.1,2.1 -0.1,4.2 -1.2,6.3 -1.2,2.2 -3.6,4.6 -5.7,6.6 -2.2,1.9 -5.9,3.7 -7,5 -1.1,1.3 0.2,2.1 -0.2,3 -0.4,0.9 -2,2.3 -2,2.3 -0.1,-0.1 1.5,-1.5 1.8,-2.4 0.4,-0.8 -0.8,-1.7 0.2,-3 1.1,-1.4 4.9,-3.2 7,-5.1 2.1,-2 4.5,-4.4 5.6,-6.5 1.1,-2.1 1.1,-4.2 1.2,-6.3 0,-2 -0.8,-6.3 -0.8,-6.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river70"),N(H,"d","m 159.1,264.7 c 0,0 5.4,-0.7 8.1,-0.5 2.6,0.2 6.2,0.5 7.9,1.5 1.6,0.9 1.9,2.5 2.4,3.9 0.5,1.4 0.4,4.5 0.4,4.5 -0.1,0 -0.1,-3.1 -0.6,-4.4 -0.5,-1.4 -0.7,-2.9 -2.3,-3.7 -1.7,-0.9 -5.2,-1.3 -7.9,-1.5 -2.6,-0.1 -7.9,0.6 -7.9,0.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river77"),N(H,"d","m 2220.5,1054.1 c 0,0 -3.8,6 -6,8.7 -2.3,2.7 -5.4,6.4 -7.6,7.4 -2,1 -3.4,-0.3 -5,-0.9 -1.5,-0.7 -4.1,-2.9 -4.1,-2.9 0,0 2.7,2.1 4.2,2.7 1.5,0.7 2.9,1.9 4.8,1 2.1,-1 5.3,-4.7 7.5,-7.4 2.3,-2.7 6,-8.7 6,-8.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river83"),N(H,"d","m 404.6,905.5 c 0,0 5.6,3.9 8.1,6.3 2.4,2.3 4.9,6.8 6.7,7.6 1.6,0.7 2.3,-1.8 3.7,-2.2 1.4,-0.4 2.6,-0.7 4.5,-0.3 2,0.4 5,1.7 7.3,3 2.2,1.2 6.2,4.7 6.2,4.7 -0.1,0.1 -4.1,-3.3 -6.3,-4.6 -2.3,-1.2 -5.3,-2.5 -7.2,-2.9 -1.9,-0.3 -3,0 -4.4,0.4 -1.4,0.5 -2.3,3 -4,2.3 -1.8,-0.8 -4.4,-5.4 -6.9,-7.7 -2.5,-2.3 -8.1,-6.2 -8.1,-6.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river84"),N(H,"d","m 827.5,455.6 c 0,0 0,6.7 -0.5,10 -0.4,3.3 -0.6,7.9 -2.4,9.7 -1.8,1.9 -5.6,1.3 -8.4,1.4 -2.9,0.2 -8.5,-0.5 -8.5,-0.5 0.1,-0.2 5.7,0.5 8.4,0.3 2.8,-0.1 6.4,0.4 8.2,-1.4 1.8,-1.9 1.9,-6.3 2.3,-9.6 0.5,-3.2 0.5,-9.9 0.5,-9.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river85"),N(H,"d","m 2127.5,552.8 c 0,0 -3.7,2.2 -5.7,2.7 -2,0.6 -3.8,-0.8 -6.1,0.9 -2.6,1.7 -5.6,6.9 -8.7,10 -3.2,3.1 -10.1,8.6 -10.1,8.6 -0.1,-0.1 6.8,-5.6 10,-8.7 3.1,-3.1 6.1,-8.3 8.6,-10.1 2.4,-1.6 4.3,-0.3 6.3,-0.9 1.9,-0.6 5.5,-2.7 5.5,-2.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river86"),N(H,"d","m 389.6,273.6 c 0,0 3.2,-1.7 4.9,-2.1 1.6,-0.3 3.7,-0.9 5.3,-0.1 1.5,0.8 2.9,3.4 4,5.3 1,1.9 2.2,6.3 2.2,6.3 -0.2,0 -1.4,-4.3 -2.4,-6.2 -1,-1.9 -2.4,-4.4 -4,-5.2 -1.5,-0.8 -3.4,-0.2 -5.1,0.2 -1.6,0.4 -4.7,2.1 -4.7,2.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river90"),N(H,"d","m 2400,960.8 c 0,0 -8.8,0.6 -12.3,-0.1 -3.5,-0.6 -6,-2.3 -8.6,-3.9 -2.7,-1.5 -5,-4.7 -7.6,-5.4 -2.5,-0.7 -5,1.1 -7.6,1.1 -2.5,0.1 -5.6,-1.1 -7.6,-0.8 -1.9,0.3 -2.7,2.1 -4.3,2.6 -1.6,0.6 -5,0.8 -5,0.8 0,-0.2 3.4,-0.4 4.9,-0.9 1.6,-0.6 2.4,-2.4 4.4,-2.7 2,-0.4 5.1,0.8 7.6,0.7 2.6,0 5.2,-1.8 7.7,-1.2 2.6,0.7 5,4 7.6,5.5 2.7,1.5 5.1,3.1 8.5,3.7 3.5,0.7 12.3,0 12.3,0"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river91"),N(H,"d","m 2323.4,597.5 c 0,0 3.7,-4.8 5.9,-6.8 2.2,-2.1 5.1,-3 7.2,-5.5 2.2,-2.4 3.6,-6.4 5.7,-9.4 2.2,-3 5.1,-6.9 7.4,-8.3 2.1,-1.4 4,-0.8 5.9,-0.7 1.9,0.2 5.6,1.4 5.6,1.4 0,0.3 -3.8,-1 -5.6,-1.1 -1.9,-0.1 -3.6,-0.7 -5.7,0.7 -2.2,1.4 -5.1,5.3 -7.2,8.3 -2.2,2.9 -3.5,6.9 -5.7,9.5 -2.1,2.4 -5,3.4 -7.2,5.4 -2.2,2.1 -5.8,6.9 -5.8,6.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river92"),N(H,"d","m 496.9,869.4 c 0,0 -1.7,5.2 -3,7.6 -1.3,2.3 -3.6,4.2 -4.6,6.6 -1,2.4 -0.6,5.3 -1.4,7.9 -0.7,2.5 -0.9,6.3 -3.3,7.4 -2.5,1.3 -7.8,0 -11.7,-0.5 -3.8,-0.5 -11.3,-2.5 -11.3,-2.5 0,-0.2 7.5,1.8 11.4,2.3 3.8,0.5 9.1,1.7 11.5,0.5 2.4,-1.2 2.4,-4.8 3.1,-7.3 0.8,-2.6 0.3,-5.5 1.3,-8 1,-2.4 3.4,-4.3 4.6,-6.6 1.3,-2.4 2.9,-7.6 2.9,-7.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river93"),N(H,"d","m 423.2,793.4 c 0,0 3.9,7 5.4,10.7 1.5,3.7 2.8,8.4 3.6,11.4 0.7,2.9 1,4.3 1.1,6.5 0,2.2 -0.9,6.5 -0.9,6.5 -0.1,0 0.8,-4.3 0.7,-6.5 0,-2.1 -0.4,-3.6 -1.2,-6.4 -0.7,-3 -2,-7.7 -3.5,-11.4 -1.5,-3.7 -5.5,-10.6 -5.5,-10.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river97"),N(H,"d","m 1280.9,270.7 c 0,0 3.2,-0.3 4.5,-1.1 1.4,-0.8 2.1,-3.1 3.5,-3.8 1.3,-0.7 3.5,-0.7 4.9,-0.4 1.4,0.4 2.1,2.3 3.5,2.5 1.4,0.2 3.6,-1.6 5,-1.2 1.4,0.4 3.2,3.5 3.2,3.5 -0.2,0.1 -1.9,-2.9 -3.3,-3.3 -1.3,-0.3 -3.5,1.5 -4.9,1.3 -1.4,-0.3 -2.2,-2.2 -3.6,-2.5 -1.4,-0.4 -3.3,-0.3 -4.7,0.4 -1.3,0.7 -2,3 -3.4,3.9 -1.3,0.8 -4.5,1.1 -4.5,1.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river98"),N(H,"d","m 893,758 c 0,0 -1.7,2 -2.7,2.6 -1.1,0.6 -1.8,0.4 -3.7,1 -2,0.7 -5.5,2.3 -8.3,3 -2.9,0.7 -5.7,2.5 -8.9,1.2 -3.3,-1.4 -7.3,-6.3 -10.6,-9.8 -3.3,-3.5 -9.2,-11.1 -9.2,-11.1 0.1,-0.1 6,7.5 9.3,11 3.3,3.4 7.3,8.3 10.6,9.7 3.1,1.3 5.9,-0.5 8.7,-1.2 2.9,-0.7 6.3,-2.4 8.3,-3.1 1.9,-0.6 2.6,-0.4 3.6,-1 1,-0.6 2.6,-2.6 2.6,-2.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river99"),N(H,"d","m 1744.1,46.9 c 0,0 1.2,3.8 1.3,5.8 0.1,1.9 -1.2,3.7 -0.7,5.9 0.5,2.2 2.9,4.8 3.8,7.4 1,2.6 1,5.4 2,8.2 1,2.8 3,5.5 4,8.4 1.1,3 2.2,9.2 2.2,9.2 -0.1,0 -1.3,-6.2 -2.3,-9.1 -1,-2.9 -3.1,-5.7 -4.1,-8.5 -1,-2.7 -1,-5.5 -2,-8.1 -1,-2.6 -3.3,-5.2 -3.8,-7.5 -0.5,-2.2 0.7,-3.9 0.5,-5.9 -0.1,-1.9 -1.3,-5.8 -1.3,-5.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river100"),N(H,"d","m 2180.1,937.2 c 0,0 0.4,3.2 0.1,4.6 -0.3,1.5 -1.8,2.2 -1.8,4.2 -0.1,2.1 1.4,5.5 1.6,8.3 0.2,2.8 -0.4,8.5 -0.4,8.5 -0.1,0 0.4,-5.7 0.2,-8.5 -0.2,-2.8 -1.7,-6.2 -1.7,-8.3 0.1,-2 1.5,-2.8 1.8,-4.2 0.3,-1.5 -0.1,-4.6 -0.1,-4.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river101"),N(H,"d","m 1313.5,220.5 c 0,0 1.5,4.3 1.9,6.5 0.3,2.2 -0.9,5.2 -0.1,6.6 0.8,1.5 3.4,1.3 4.8,2.4 1.4,1 3.7,3.9 3.7,3.9 -0.1,0.1 -2.4,-2.8 -3.8,-3.8 -1.4,-1.1 -4.1,-0.9 -4.9,-2.3 -0.8,-1.6 0.3,-4.6 0,-6.8 -0.3,-2.2 -1.9,-6.4 -1.9,-6.4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river102"),N(H,"d","m 1565.8,87.4 c 0,0 4.3,1.9 6.2,3.2 1.9,1.3 3.8,3.1 5.1,4.7 1.3,1.7 2.1,3.3 2.7,5.1 0.6,1.8 0.9,5.7 0.9,5.7 -0.2,0.1 -0.4,-3.8 -1,-5.6 -0.6,-1.8 -1.5,-3.4 -2.8,-5 -1.3,-1.7 -3.2,-3.4 -5,-4.7 -1.9,-1.3 -6.2,-3.1 -6.2,-3.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river103"),N(H,"d","m 46.9,327.6 c 0,0 -1.2,2.3 -2.1,3 -0.9,0.8 -3.2,-0.2 -3.3,1.4 -0.1,1.8 2.7,6.3 3.6,9.6 0.9,3.3 1.6,10.1 1.6,10.1 -0.1,0 -0.9,-6.8 -1.8,-10.1 -0.9,-3.3 -3.7,-7.8 -3.6,-9.6 0,-1.6 2.4,-0.8 3.3,-1.6 0.9,-0.7 2.1,-2.9 2.1,-2.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river114"),N(H,"d","m 651.2,552.1 c 0,0 3.3,-4.6 5.2,-6.5 1.9,-1.8 5.7,-2.6 6.3,-4.9 0.7,-2.3 -1.8,-5.8 -2.3,-8.9 -0.4,-3 -2,-7.7 -0.4,-9.5 1.6,-1.9 6.9,-1.4 10.3,-1.6 3.4,-0.2 8.6,0.9 10,0.4 1.3,-0.5 -0.9,-1.9 -0.8,-2.8 0.1,-1 -0.3,-2 1.5,-3.1 1.9,-1.2 7.1,-2.9 10.8,-3.9 3.7,-1 9,-0.3 11.3,-2 2.2,-1.7 1.5,-5.6 2.7,-8.2 1.2,-2.6 1.7,-5.6 4.5,-7.4 3,-1.9 8.9,-2.6 13.4,-3.4 4.5,-0.9 13.7,-1.5 13.7,-1.5 0,0.1 -9.2,0.8 -13.7,1.6 -4.5,0.9 -10.3,1.6 -13.3,3.5 -2.8,1.8 -3.2,4.7 -4.4,7.3 -1.2,2.6 -0.5,6.5 -2.7,8.3 -2.4,1.8 -7.7,1.1 -11.4,2.1 -3.7,1 -8.8,2.8 -10.7,3.9 -1.7,1.1 -1,1.8 -1.1,2.8 -0.2,1.1 1.8,2.9 0.4,3.4 -1.5,0.7 -6.9,-0.5 -10.2,-0.3 -3.3,0.1 -8.3,-0.4 -9.8,1.3 -1.5,1.8 0.1,6 0.6,9 0.5,3.1 3.1,6.8 2.3,9.2 -0.7,2.4 -4.5,3.3 -6.5,5.3 -1.9,1.9 -5.1,6.3 -5.1,6.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river116"),N(H,"d","m 2288.6,937.2 c 0,0 -2.7,2.4 -4.3,3.1 -1.6,0.7 -4.3,-0.5 -5.1,1.2 -0.9,1.9 0.6,6.7 0.3,10 -0.2,3.3 -1.6,9.9 -1.6,9.9 -0.1,0 1.3,-6.6 1.5,-9.9 0.2,-3.3 -1.3,-8.2 -0.4,-10 0.8,-1.8 3.6,-0.7 5.2,-1.4 1.6,-0.8 4.3,-3.1 4.3,-3.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river117"),N(H,"d","m 494.1,855.7 c 0,0 -6.3,1.8 -9.5,2.3 -3.2,0.4 -7.5,-0.2 -9.7,0.3 -2,0.4 -2.1,1.9 -3.4,2.4 -1.2,0.5 -4.1,0.5 -4.1,0.5 0,-0.1 2.8,-0.2 4.1,-0.7 1.2,-0.5 1.4,-1.9 3.4,-2.4 2.2,-0.5 6.5,0.1 9.7,-0.3 3.2,-0.5 9.5,-2.3 9.5,-2.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river118"),N(H,"d","m 2328.6,135.1 c 0,0 6.4,-1.4 9.7,-1.6 3.2,-0.2 7.1,-0.8 9.8,0.4 2.8,1.2 4.7,4.3 6.6,6.7 1.9,2.4 5,7.9 5,7.9 -0.2,0.1 -3.2,-5.4 -5.1,-7.8 -2,-2.4 -3.8,-5.4 -6.5,-6.6 -2.8,-1.2 -6.6,-0.6 -9.8,-0.3 -3.2,0.2 -9.7,1.5 -9.7,1.5"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river119"),N(H,"d","m 301.6,701.1 c 0,0 -4.6,-3.1 -6.5,-5 -2,-1.9 -4.2,-3.9 -5.2,-6.3 -1,-2.4 -0.7,-5.4 -0.6,-8.1 0.1,-2.6 2.2,-5.3 1.4,-7.8 -0.8,-2.5 -4.6,-4.4 -6.5,-6.9 -1.9,-2.6 -4.9,-8.2 -4.9,-8.2 0.1,-0.1 3.1,5.5 5,8.1 1.9,2.5 5.7,4.5 6.6,7 0.8,2.4 -1.2,5.2 -1.4,7.9 -0.1,2.6 -0.3,5.5 0.6,7.9 1,2.3 3.3,4.3 5.2,6.2 2,1.8 6.5,4.8 6.5,4.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river120"),N(H,"d","m 2149.8,930.3 c 0,0 1.4,5.7 1.6,8.6 0.3,2.9 -1.2,5.6 -0.2,8.8 0.9,3.3 4.3,7.1 6.1,10.8 1.7,3.7 4.3,11.7 4.3,11.7 -0.1,0 -2.7,-7.9 -4.5,-11.6 -1.8,-3.8 -5.2,-7.5 -6.2,-10.8 -0.9,-3.2 0.5,-5.9 0.3,-8.8 -0.3,-3 -1.8,-8.7 -1.8,-8.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river136"),N(H,"d","m 981.5,631.1 c 0,0 -3.1,2.5 -4.9,3.4 -1.8,0.9 -3.9,1.7 -5.8,1.7 -1.9,0 -4,-0.9 -5.8,-1.8 -1.8,-0.9 -4.8,-3.6 -4.8,-3.6 0.1,-0.2 3.2,2.5 4.9,3.3 1.8,0.9 3.8,1.7 5.7,1.7 1.9,0 3.9,-0.8 5.6,-1.7 1.8,-0.8 4.8,-3.4 4.8,-3.4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river137"),N(H,"d","m 824.6,475.2 c 0,0 -0.9,7.5 -0.6,11.2 0.3,3.8 2.2,7.5 2.3,11.2 0.2,3.8 -0.5,8.4 -1.3,11.3 -0.8,2.8 -2.7,3.7 -3.1,5.9 -0.4,2.2 1.2,5.1 0.7,7.2 -0.6,2.1 -4,5.6 -4,5.6 -0.1,-0.1 3.3,-3.5 3.9,-5.6 0.5,-2.2 -1.1,-5 -0.7,-7.2 0.4,-2.2 2.3,-3.2 3,-5.9 0.8,-2.9 1.5,-7.5 1.3,-11.2 -0.1,-3.8 -2.1,-7.5 -2.4,-11.2 -0.3,-3.8 0.6,-11.3 0.6,-11.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river144"),N(H,"d","m 1949.3,975.9 c 0,0 -2.4,3.2 -3.8,4.4 -1.5,1.3 -3.5,1.3 -5.1,2.9 -1.6,1.7 -2.9,5.1 -4.7,7.3 -1.9,2.3 -4,3.5 -6.3,6.1 -2.4,2.7 -4.9,6.8 -7.7,9.8 -2.8,3.1 -9.2,8.5 -9.2,8.5 0,-0.1 6.3,-5.5 9.1,-8.6 2.8,-3 5.3,-7.1 7.7,-9.8 2.2,-2.6 4.4,-3.9 6.2,-6.1 1.8,-2.3 3.1,-5.6 4.7,-7.4 1.6,-1.6 3.6,-1.7 5,-2.9 1.5,-1.3 3.7,-4.4 3.7,-4.4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river145"),N(H,"d","m 1150.6,736.7 c 0,0 1,4.8 1,7.2 0,2.3 -0.9,5.1 -0.9,7.1 0,1.9 1,3 1,4.6 0,1.5 -1,2.3 -1,4.5 0.1,2.5 1.3,6.7 1.4,10 0.1,3.3 -0.7,10.1 -0.7,10.1 -0.1,0 0.7,-6.8 0.5,-10.1 -0.1,-3.3 -1.3,-7.5 -1.4,-10 0,-2.2 1,-3 1,-4.5 0,-1.6 -1,-2.7 -1.1,-4.6 0,-2 0.9,-4.8 0.9,-7.1 0,-2.4 -1.1,-7.1 -1.1,-7.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river146"),N(H,"d","m 977.8,842.2 c 0,0 5.5,7.4 7.8,11.3 2.4,4 4.3,8.5 6.2,12.4 1.9,3.8 3.7,7 5,10.7 1.4,3.7 3.2,11.4 3.2,11.4 -0.1,0 -2,-7.7 -3.3,-11.4 -1.4,-3.6 -3.3,-6.8 -5.1,-10.6 -1.9,-3.9 -3.9,-8.4 -6.2,-12.3 -2.4,-4 -7.9,-11.3 -7.9,-11.3"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river148"),N(H,"d","m 2104.8,941.1 c 0,0 2.2,5.8 2.8,8.8 0.6,3 0.4,5.8 0.8,9.2 0.4,3.5 1.2,7.6 1.4,11.5 0.1,3.8 -0.6,11.5 -0.6,11.5 -0.2,0 0.5,-7.7 0.4,-11.5 -0.2,-3.9 -1.1,-8 -1.5,-11.5 -0.4,-3.4 -0.2,-6.2 -0.8,-9.1 -0.6,-3 -2.8,-8.8 -2.8,-8.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river149"),N(H,"d","m 1420.7,56.2 c 0,0 1.6,4.8 1.9,7.3 0.3,2.5 0.4,5.4 0,7.5 -0.4,2 -1.2,3.5 -2.3,4.9 -1,1.4 -3.9,3.7 -3.9,3.7 -0.1,-0.1 2.8,-2.4 3.8,-3.8 1,-1.4 1.8,-2.8 2.2,-4.8 0.4,-2.1 0.3,-5 0,-7.5 -0.4,-2.4 -2,-7.2 -2,-7.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river150"),N(H,"d","m 125.1,266.5 c 0,0 0.1,-4.5 0.7,-6.6 0.5,-2.1 2.2,-4.2 2.5,-6.1 0.3,-1.9 -0.9,-3.4 -0.8,-5.1 0.1,-1.7 1.2,-5.1 1.2,-5.1 0.2,0 -1,3.4 -1,5.1 -0.1,1.7 1.1,3.3 0.8,5.1 -0.3,1.9 -2,4 -2.5,6.2 -0.5,2.1 -0.6,6.6 -0.6,6.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river151"),N(H,"d","m 855.1,1034.6 c 0,0 -5.5,-1.2 -8.1,-2.3 -2.6,-1 -5.3,-2.4 -7.5,-4 -2.1,-1.7 -3.8,-3.7 -5.3,-5.9 -1.5,-2.1 -3.8,-6.9 -3.8,-6.9 0.2,-0.1 2.4,4.7 3.9,6.9 1.5,2.1 3.2,4.1 5.4,5.7 2.1,1.7 4.8,3 7.4,4 2.6,1.1 8.1,2.2 8.1,2.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river152"),N(H,"d","m 1074.7,774.7 c 0,0 5.1,1.6 7.4,2.9 2.4,1.3 4.7,3.9 6.5,4.6 1.7,0.7 2.7,-0.4 4,-0.1 1.3,0.3 3.6,1.8 3.6,1.8 -0.1,0.1 -2.4,-1.4 -3.6,-1.7 -1.3,-0.2 -2.4,0.8 -4.1,0.2 -1.8,-0.7 -4.1,-3.4 -6.4,-4.6 -2.4,-1.3 -7.4,-2.9 -7.4,-2.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river153"),N(H,"d","m 767,836.6 c 0,0 -4.9,0.2 -7.3,-0.3 -2.3,-0.4 -5.4,-0.5 -6.9,-2.2 -1.6,-1.8 -1.9,-5.6 -2.3,-8.4 -0.4,-2.8 -0.3,-8.7 -0.3,-8.7 0.1,0 0,5.8 0.4,8.7 0.5,2.8 0.8,6.5 2.3,8.3 1.6,1.7 4.5,1.8 6.9,2.2 2.3,0.4 7.2,0.2 7.2,0.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river154"),N(H,"d","m 970.5,1080.9 c 0,0 -4.7,2.8 -7.2,3.8 -2.6,1 -6.7,0.4 -7.9,1.9 -1.3,1.5 0.5,4.7 0.2,7 -0.2,2.3 -1.7,6.8 -1.7,6.8 -0.1,0 1.4,-4.5 1.6,-6.8 0.2,-2.3 -1.5,-5.6 -0.3,-7.1 1.3,-1.5 5.5,-1 8,-2 2.5,-1 7.2,-3.8 7.2,-3.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river155"),N(H,"d","m 2343.6,622.5 c 0,0 4.9,-4.8 7.6,-6.7 2.7,-2 7.3,-3 8.6,-5.1 1.3,-2 -0.7,-4.8 -0.5,-7.2 0.1,-2.4 1.4,-7.1 1.4,-7.1 0.2,0 -1.1,4.7 -1.2,7.1 -0.1,2.4 1.9,5.3 0.6,7.3 -1.3,2.2 -6,3.2 -8.8,5.2 -2.7,2 -7.5,6.7 -7.5,6.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river156"),N(H,"d","m 827.2,455.8 c 0,0 -5,-0.9 -7.4,-1.8 -2.4,-0.9 -5.1,-2.2 -6.8,-3.7 -1.7,-1.5 -2.5,-3.4 -3.2,-5.3 -0.8,-1.9 -1.4,-6 -1.4,-6 0.2,-0.1 0.9,4.1 1.6,5.9 0.8,1.9 1.6,3.7 3.2,5.2 1.7,1.5 4.4,2.7 6.7,3.6 2.4,0.8 7.4,1.7 7.4,1.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river157"),N(H,"d","m 390.7,1010.7 c 0,0 2.3,-4.7 3.9,-6.7 1.5,-2.1 4.5,-2.6 5.4,-5.6 1,-3.2 -0.4,-8.9 -0.2,-13.3 0.3,-4.4 1.8,-13.2 1.8,-13.2 0.2,0.1 -1.4,8.8 -1.6,13.2 -0.3,4.4 1.1,10.1 0.2,13.3 -0.9,3 -3.9,3.6 -5.5,5.7 -1.5,2 -3.8,6.8 -3.8,6.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river182"),N(H,"d","m 910.1,524.1 c 0,0 1.5,7.7 1.8,11.6 0.3,3.9 -1.1,8.9 -0.2,11.8 0.9,2.7 3.8,3.2 5.3,5.2 1.5,1.9 3.7,6.5 3.7,6.5 -0.2,0.1 -2.4,-4.4 -3.9,-6.3 -1.5,-2 -4.5,-2.6 -5.4,-5.3 -0.9,-2.9 0.4,-7.9 0.2,-11.8 -0.3,-3.9 -1.9,-11.7 -1.9,-11.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river197"),N(H,"d","m 617.2,37.4 c 0,0 2,4.7 2.5,7.2 0.5,2.5 -0.4,5.5 0.5,7.6 0.9,2 3.6,2.9 5,4.7 1.4,1.8 3.4,6 3.4,6 -0.1,0.1 -2.1,-4.1 -3.5,-5.9 -1.5,-1.8 -4.1,-2.7 -5.1,-4.7 -0.9,-2.1 0,-5.2 -0.5,-7.7 -0.6,-2.4 -2.5,-7.2 -2.5,-7.2"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river198"),N(H,"d","m 1029.9,814.1 c 0,0 3.3,4.8 4.5,7.4 1.2,2.6 1.3,7 2.6,8.2 1.2,1.1 3.2,-1 4.9,-1 1.6,0.1 4.9,1.1 4.9,1.1 0,0.2 -3.3,-0.8 -4.9,-0.8 -1.7,0 -3.8,2 -5.1,0.9 -1.4,-1.2 -1.5,-5.6 -2.7,-8.2 -1.2,-2.6 -4.5,-7.4 -4.5,-7.4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river201"),N(H,"d","m 0,916 c 0,0 8.8,-1.7 9.9,0.1 1.2,1.7 -1.7,7.1 -3,10.4 -1.3,3.4 -4.9,9.7 -4.9,9.7 -0.1,-0.1 3.4,-6.4 4.7,-9.7 1.3,-3.3 4.2,-8.6 3,-10.3 -1.1,-1.7 -9.7,0.1 -9.7,0.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river215"),N(H,"d","m 959.1,102.5 c 0,0 5.8,4.1 8.3,6.4 2.6,2.4 6.4,5.8 7.1,8 0.6,2 -1.5,3.6 -2.6,5 -1.1,1.5 -4.2,3.8 -4.2,3.8 -0.1,-0.1 3,-2.4 4.1,-3.9 1.1,-1.4 3.1,-2.8 2.5,-4.9 -0.7,-2.1 -4.5,-5.4 -7,-7.8 -2.6,-2.3 -8.4,-6.4 -8.4,-6.4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river216"),N(H,"d","m 929.4,923.6 c 0,0 6.6,-1.5 10,-1.7 3.3,-0.3 7,1.2 10.1,0.2 3.1,-1 5.5,-4.6 8.5,-6.4 3,-1.9 9.6,-4.8 9.6,-4.8 0,0.2 -6.5,3 -9.5,4.9 -3,1.9 -5.4,5.4 -8.6,6.5 -3.1,1 -6.8,-0.5 -10.1,-0.2 -3.4,0.2 -10,1.7 -10,1.7"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river217"),N(H,"d","m 855.6,54.2 c 0,0 3.2,3.8 4.4,5.9 1.2,2.1 2,4.9 2.7,6.9 0.7,1.9 1.4,3.3 1.6,5 0.3,1.7 -0.3,5.2 -0.3,5.2 -0.1,0 0.4,-3.5 0.2,-5.2 -0.3,-1.7 -1,-3 -1.7,-5 -0.7,-1.9 -1.5,-4.7 -2.7,-6.8 -1.2,-2.1 -4.4,-5.8 -4.4,-5.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river227"),N(H,"d","m 855,1034.5 c 0,0 -2.3,-5.5 -3,-8.4 -0.7,-2.9 0,-7.3 -1.2,-8.8 -1.1,-1.5 -3.7,-0.2 -5.4,-0.7 -1.7,-0.6 -4.8,-2.7 -4.8,-2.7 0.1,-0.1 3.2,2 4.9,2.5 1.7,0.6 4.4,-0.8 5.5,0.7 1.2,1.6 0.5,6.1 1.2,8.9 0.7,2.9 3.1,8.4 3.1,8.4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river228"),N(H,"d","m 1823.8,109.4 c 0,0 -4.1,2.4 -6.3,3.1 -2.1,0.7 -4.9,1.3 -6.8,1.2 -1.9,-0.1 -3.3,-0.9 -4.6,-1.8 -1.4,-0.9 -3.5,-3.5 -3.5,-3.5 0.1,-0.1 2.2,2.5 3.6,3.3 1.3,0.9 2.7,1.7 4.5,1.8 1.9,0.1 4.6,-0.5 6.8,-1.2 2.1,-0.7 6.1,-3.1 6.1,-3.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river229"),N(H,"d","m 362,288.4 c 0,0 -2.1,5.8 -3.5,8.5 -1.5,2.7 -4.2,5.6 -5.3,7.6 -0.9,1.7 -0.4,2.7 -1.1,3.8 -0.7,1.1 -2.9,2.8 -2.9,2.8 0,0 2.1,-1.8 2.7,-2.9 0.7,-1.1 0.1,-2.1 1.1,-3.9 1,-1.9 3.7,-4.9 5.2,-7.5 1.4,-2.7 3.5,-8.6 3.5,-8.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river264"),N(H,"d","m 1911,812.1 c 0,0 0.8,-2.3 0.6,-3.5 -0.2,-1.2 -1.7,-2.5 -1.8,-3.7 -0.1,-1.3 0.9,-2.5 1.3,-3.8 0.3,-1.3 0.8,-2.7 0.6,-4.1 -0.2,-1.4 -1.8,-2.7 -2,-4.2 -0.1,-1.4 1.2,-2.6 1.3,-4.2 0.2,-1.7 0.2,-4 -0.5,-5.8 -0.6,-1.9 -2.8,-3.4 -3.3,-5.3 -0.6,-1.9 0.9,-4.9 0.2,-6 -0.6,-1.1 -3.1,0 -4,-0.7 -1,-0.8 -1.6,-3.9 -1.6,-3.9 0.1,0 0.8,3 1.7,3.7 0.9,0.8 3.4,-0.3 4.1,0.7 0.7,1.2 -0.7,4.2 -0.2,6.1 0.6,1.9 2.8,3.4 3.4,5.3 0.7,1.8 0.7,4.2 0.6,5.9 -0.1,1.7 -1.4,2.8 -1.2,4.2 0.1,1.4 1.8,2.7 2.1,4.1 0.2,1.5 -0.3,3.1 -0.6,4.4 -0.2,1.3 -1.3,2.3 -1.2,3.5 0.1,1.2 1.6,2.4 1.8,3.7 0.2,1.2 -0.6,3.8 -0.6,3.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river265"),N(H,"d","m 236.8,287.1 c 0,0 -7.2,1.5 -10.8,1.7 -3.7,0.3 -8.4,0.6 -11,-0.2 -2.5,-0.7 -3.4,-2.3 -4.8,-3.8 -1.3,-1.4 -3.1,-5 -3.1,-5 0.1,-0.1 2,3.5 3.3,4.9 1.3,1.5 2.2,3 4.6,3.7 2.6,0.7 7.3,0.4 11,0.1 3.6,-0.2 10.8,-1.8 10.8,-1.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river290"),N(H,"d","m 2219.7,912.4 c 0,0 -0.9,5.5 -1.7,8.1 -0.9,2.6 -3.7,5.1 -3.5,7.5 0.2,2.4 3.4,4.6 4.6,7.1 1.3,2.6 0.5,5.7 2.9,8.1 2.4,2.5 8.1,4.1 11.9,6.6 3.8,2.5 10.9,8.3 10.9,8.3 -0.1,0.1 -7.2,-5.7 -11,-8.1 -3.8,-2.5 -9.5,-4.1 -12,-6.6 -2.4,-2.4 -1.7,-5.5 -3,-8.1 -1.3,-2.6 -4.5,-4.8 -4.7,-7.3 -0.2,-2.5 2.6,-5 3.4,-7.6 0.9,-2.6 1.6,-8.1 1.6,-8.1"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river291"),N(H,"d","m 1644.6,980.4 c 0,0 -0.3,6.7 -0.9,9.9 -0.6,3.2 -2.1,6.9 -2.7,9.5 -0.5,2.5 -0.1,4.1 -0.6,6.1 -0.5,1.9 -1.1,3.4 -2.5,5.6 -1.5,2.2 -4.1,5.4 -6.5,7.7 -2.4,2.4 -7.9,6.4 -7.9,6.4 -0.1,-0.1 5.4,-4.1 7.8,-6.5 2.4,-2.3 5,-5.5 6.5,-7.7 1.4,-2.2 1.9,-3.6 2.4,-5.6 0.5,-1.9 0.1,-3.5 0.6,-6 0.5,-2.7 2.1,-6.3 2.7,-9.6 0.5,-3.2 0.7,-9.8 0.7,-9.8"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river292"),N(H,"d","m 1984.9,986.2 c 0,0 -1.1,2.8 -2.1,4 -0.9,1.1 -2.7,0.6 -3.6,2.6 -1,2.2 -1,7.2 -1.9,10.7 -1,3.5 -3.9,10.1 -3.9,10.1 -0.2,0 2.7,-6.7 3.7,-10.2 0.9,-3.4 0.9,-8.4 1.9,-10.7 0.9,-2 2.7,-1.6 3.6,-2.7 1,-1.1 2.1,-4 2.1,-4"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river293"),N(H,"d","m 2026.1,987 c 0,0 4.4,4.4 6.2,6.9 1.8,2.5 3.3,5.8 4.6,8 1.2,2.2 2.3,3.3 3,5.1 0.6,1.9 1,5.9 1,5.9 -0.1,0 -0.5,-4 -1.2,-5.8 -0.7,-1.8 -1.7,-3 -3,-5.1 -1.2,-2.2 -2.8,-5.5 -4.6,-8 -1.8,-2.5 -6.2,-6.9 -6.2,-6.9"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river294"),N(H,"d","m 1339.5,1013 c 0,0 3.7,5 5.1,7.7 1.4,2.7 2.1,6.4 3.4,8.6 1.2,2 3.1,2.6 4.3,4.3 1.2,1.6 2.8,5.5 2.8,5.5 -0.1,0 -1.7,-3.8 -2.9,-5.4 -1.2,-1.7 -3.1,-2.3 -4.4,-4.4 -1.3,-2.1 -1.9,-5.8 -3.4,-8.5 -1.4,-2.7 -5.1,-7.6 -5.1,-7.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G),M(Q,"path",V([N(H,"id","river309"),N(H,"d","m 1677.2,1174 c 0,0 -0.1,-5.2 0,-7.6 0.2,-2.5 1.3,-4.8 1,-7.2 -0.3,-2.4 -2.9,-4.8 -3,-7.2 -0.2,-2.4 1.9,-7.2 1.9,-7.2 0,0 -2.1,4.8 -1.9,7.2 0.2,2.4 2.7,4.8 3.1,7.2 0.3,2.4 -0.8,4.7 -1,7.2 -0.1,2.5 0.1,7.6 0.1,7.6"),N(H,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),G)])),M(Q,"g",V([N(H,"id","coastline"),N(H,"style","display:inline;fill:none;stroke-linejoin:round;shape-rendering:geometricPrecision"),N(H,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),V([M(Q,"g",V([N(H,"id","sea_island"),N(H,"auto-filter","1"),N(H,"style","display:inline;opacity:0.5;fill:none;stroke:#1f3846;stroke-width:0.69999999;stroke-linejoin:round;filter:url(#dropShadow)")]),V([M(Q,"path",V([N(H,"d","m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2"),N(H,"id","island_2"),N(H,"data-f","2"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9"),N(H,"id","island_3"),N(H,"data-f","3"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2"),N(H,"id","island_4"),N(H,"data-f","4"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3"),N(H,"id","island_6"),N(H,"data-f","6"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6"),N(H,"id","island_15"),N(H,"data-f","15"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5"),N(H,"id","island_19"),N(H,"data-f","19"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5"),N(H,"id","island_20"),N(H,"data-f","20"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0"),N(H,"id","island_29"),N(H,"data-f","29"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5"),N(H,"id","island_31"),N(H,"data-f","31"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5"),N(H,"id","island_32"),N(H,"data-f","32"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7"),N(H,"id","island_33"),N(H,"data-f","33"),N(H,"inkscape:connector-curvature","0")]),G),M(Q,"path",V([N(H,"d","m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9"),N(H,"id","island_34"),N(H,"data-f","34"),N(H,"inkscape:connector-curvature","0")]),G)]))])),M(Q,"g",V([N(H,"id","ice"),N(H,"style","display:inline;shape-rendering:geometricPrecision;-webkit-filter:url(#dropShadow05)"),N(H,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)"),N(H,"filter","url(#dropShadow05)"),N(H,"stroke-width","3"),N(H,"stroke","#e8f0f6"),N(H,"fill","#e8f0f6"),N(H,"opacity","0.35")]),V([M(Q,"path",V([N(H,"id","polygon392"),N(H,"class",""),N(H,"d","M 117,-17 103.36328,-2.3886719 86.910156,-12.443359 87,-13 84,-16 61.945312,-1.6152344 51.958984,-7.4414062 52,-8 51,-9 38.244141,-2.1308594 16,-6 H 15 L 15.05273,-4.8417969 -2,-2 -13,18 -9,22 16.132812,16.199219 18,19 31,22 38.611328,6.7773438 49,20 l -9,7 2,4 4,3 17,-2 1,-1 L 66,21 55.351562,19.667969 68,21 70.083984,18.916016 82,18 82.117188,17.279297 85,18 h 9 l 5,5 22,-5 v -5 l 5.65234,-4.7109375 16.5293,7.3476565 L 143,16 v 4 l 6,8 12,-6 5.38477,-9.871094 L 184,18 188,14 187.9883,13.91797 198,13.083984 V 14 h 14 l 8,6 1,-0.888672 V 22 l 8,12 h 2 L 240,13 234.48242,12.498047 241,13 245.16602,12.166016 250,17 268.53125,9.1972656 272,17 272.93359,17.220703 270,27 l 15,5 3,-6 -1,-5 -9.33398,-2.666016 L 289,21 290,17 289.75586,16.59375 301.75391,10.132812 307,18 321.29492,11.328125 329.39844,20.332031 310,31 v 1 l 12,10 9,-7 2,-13 v -0.25 l 1,0.25 1,-1 -0.0703,-1.888672 L 355.13672,-0.17578125 357,11 l 12,19 4,-2 0.19336,-0.962891 L 389,30 h 1 L 389.00391,13.066406 390,13 393,9 394.44531,8.2773438 402,13 408.99219,10.503906 403,13 l 1,14 15,-4 1,-6 14.40039,-4.800781 L 440,15 447.67773,9.2421875 453,19 468.91406,12.447266 469,13 l 1,3 16,6 12,-5 1,-2 2,-2 0.10938,-0.283203 L 517,23 l 8.83008,-3.923828 9.1543,0.832031 L 535,20 v 1 L 548.16406,20.123047 552,23 574,18 v -1 l -0.0566,-0.09375 8.14844,-0.814453 L 584,18 600,18.941406 V 19 l 5,7 L 617.9707,14.882812 618,15 l 6,4 0.95703,0.136719 L 621,32 l 14,-1 -2,-7 19,-6 15,8 h 2 l 8.35742,-13 H 681 l 9.4375,-2.832031 11.6875,4.496093 L 702,15 l 3,5 h 1 l -3,8 21,11 4,-5 -13,-14 h -1 l 11.69141,-8.769531 7.51367,2.503906 L 733,14 l 4,8 20,-2 1,-1 -0.0352,-0.138672 L 764,18 l 11.65234,-8.7382812 0.0195,0.00781 L 765,18 l 12,13 6,-1 6,-12 -1,-3 -7.99609,-3.998047 9.16211,3.664063 L 789,15 l 1,3 8,3 18,-3 5,-3 0.0391,-0.320312 11.56446,-3.558594 L 839,23 849.26758,21.132812 855,24 870,12 870.70117,9.1914062 891.06641,14.746094 891,15 l 1,3 12.56641,-3.867188 0.0644,0.01563 L 895,18 913,29 h 1 L 918,18 908.24414,14.998047 921,18 921.78516,17.607422 922,18 936.40039,14.400391 941,19 954.125,18.0625 960,21 l 8,1 5,-5 -0.0293,-0.07031 12.06446,-0.861329 L 986,18 1005.1309,15.130859 1008,18 1018.084,17.083984 1020,19 1030.666,18.333984 1022,19 l 3,9 1,2 h 13 L 1035.0195,18.060547 1036,18 1037.7266,11.097656 1052,13 1056.6406,8.359375 1072,17 l 4,-4 -0.062,-0.275391 15.2441,-4.4843746 L 1094,12 1095.0039,12.04492 1096,27 l 3,3 10,-3 9,-11 7,3 h 1 v 15 l 11,3 5,-4 -4,-14 h 1 l 8,-7 14,6 8.5176,-6.625 L 1180,19 l 7,-2 0.01,-0.130859 L 1209,14 l 0.5996,-1.199219 14.8848,7.441407 L 1224,21 l 2,1 19,-9 1.6328,-4.0800781 0.252,0.3671875 L 1245,14 l 1,14 v 1 h 7 l 3,-6 -4.502,-7.003906 L 1257,24 1264.4961,14.628906 1265,15 1271.2227,13.222656 1274,16 h 15 l 2,2 0.9883,0.06641 L 1290,29 l 9,3 5,-13 -8,-0.666016 L 1306,19 1310.1953,15.644531 1322,22 l 11,-7 h 2 l 13,7 5.5996,-3.732422 L 1362,22 h 8 L 1372.9043,4.5761719 1393.2148,17.5 1393,18 v 1 l 17,4 11.5,-7.666016 L 1424,17 l 21,1 1,-1 h 2 l 18,6 9,-10 0.7383,-1.478516 L 1492,23 h 3 l 0.2734,-0.544922 L 1498,27 l 15,1 5,-9 10,3 L 1540.4004,9.5996094 1544,15 1553.166,18.666016 1553,19 1553.5938,18.837891 1554,19 l 0.1406,-0.310547 19.6367,-5.355469 L 1574,14 l 2,4 14,4 7.8789,-8.865234 L 1610,15 l 6,-5 0.1152,-0.2773438 L 1632,20 l -1,8 3,3 h 3 l 12,-6 1,-4 -6,-9 -8,2 8.6152,-2.871094 L 1650,21 1659.0117,18.496094 1651,21 l -1,4 7,8 12,-11 -1,-5 15.2969,-5.736328 L 1692,19 1703.2949,16.175781 1708,19 l 2,-1 0.4199,-0.677734 L 1731,22 1734.7148,19.214844 1744,22 l 9.8008,-7.839844 0.016,0.0039 L 1745,22 l 3,12 11,3 10,-5 v -1 l -11,-16 11.5762,-6.7539062 0.022,0.00977 L 1759,15 l 11,16 1,-1 6.8398,-11.724609 L 1778,19 1778.9434,19.105469 1773,30 l 19,3 2,-3 V 21 L 1784,19.666016 1796,21 v 9 l 16,7 6,-4 v -3 l -4,-12 -7,-4 -7,1 6.3145,-1.804688 L 1814,18 1832.3457,8.3457031 1840,16 l 2,5 2,3 1,1 20,-8 -0.033,-0.322266 15.9609,-5.320312 L 1881,12 l 3,5 13,1 4.9434,-5.931641 L 1915,13 l 2,-1 V 11.9375 L 1931.0801,11.056641 1938,16 h 4 l 6,5 14,-3 3.7656,-1.882812 L 1978,18 l 0.7734,-0.773438 15.293,4.498047 L 1994,22 l 1,2 h 2 L 2012.916,13.701172 2013,14 l 6,7 8,-1 4.7676,-2.861328 L 2042,19 2042.3125,18.445312 2049,28 l 9,1 0.8242,-2.470703 L 2059,27 2066.918,17.101562 2084,19 v -0.460938 l 11.1035,5.978516 L 2095,25 v 1 l 12,-4 7.6211,-8.574219 L 2130,24 l 7,-6 -0.061,-0.1875 8.291,-1.658203 L 2151,20 h 13 l 0.8828,-0.882812 L 2179,21 2183.834,14.232422 2201,19 l 3,-2 h 10 l 4,-4 -0.01,-0.08984 L 2228,12 l 9,8 15,-2 1,-3 -0.1875,-0.324219 3.7637,-1.505859 L 2273,18 2279.7695,14.615234 2284,18 2298.1426,16.115234 2303,20 2316.8691,10.753906 2317,11 l 7,4 h 3 l 7,-3 0.096,-0.177734 L 2349,23 2356,13 2365.2598,9.296875 2372,17 l 4,-2 17.0527,4.421875 L 2378,16 l -3,1 v 4 l 17,7 6,-2 1.9199,-4.798828 L 2403,22 l 4,-4 -8,-18 -5,-2 -10,-11 -18.4863,9.7304688 L 2348,-13 2340.2285,-5.2285156 2314,-13 l -5,9 0.07,0.1328125 -5.293,0.7558594 L 2304,-4 l -24,-3 -0.055,1.140625 -13.1562,1.7539062 L 2247,-14 2241.0996,-6.1328125 2216.0137,-9.8496094 2216,-10 l -2,-3 -20.7539,8.4902344 L 2193,-5 2181,-7 2166.4141,-2.1386719 2150.9492,-5.7773438 2151,-6 l -4,-5 -17.8691,6.9492188 -15.127,-0.890625 L 2114,-5 2113,-6 2101.1738,-3.0429688 2084,-3.9472656 V -5 l -5,-3 -16.8184,6.9257812 -9.2168,-0.8378906 L 2053,-2 2046,-9 2030.3477,-3.1308594 2011,-7 l -2,2 -9,2 -0.2227,0.9277344 -14.7949,-0.8691406 L 1985,-3 l -8,-8 -17.7559,7.8925781 -5.3164,-0.7597656 L 1954,-4 l -10,-11 -10,7 h -17 l -7,-7 -15.8457,10.8945312 L 1879,-6 l -2,-2 -15,6 h -1 L 1842,-17 1830.1699,-3.1972656 1810.957,-7.7714844 1811,-8 l -3,-5 -20.3477,7.7519531 L 1774,-15 l -7,6 0.022,0.1855469 -19.2559,3.6679687 L 1740,-10 l -10,7 h -7 l -17,-13 -8,9 0.025,0.1152344 -15.1816,1.7851562 L 1672,-12 1659,-2 h -9 L 1639,-13 1620.6094,-2.3535156 1620,-3 1619.9414,-2.859375 1605,-15 1593.1543,-4.140625 1570,-8 l -2,4 0.1055,0.3164062 L 1564,-3 1538,-6 1525.623,-3.1445312 1505.9668,-10.630859 1506,-11 l -2,-3 -26,12 h -1 l -6,-7 -27.1699,4.8515625 L 1436,-11 1423.3965,-5.1835938 1401,-12 l -3,5 0.01,0.0625 L 1367,-5 l 0.2637,0.4746094 -8.7403,2.3828125 L 1349,-5 1348.5488,-4.3554688 1335,-15 l -10,9 0.066,0.1972656 -16.9394,3.5664063 L 1308,-3 l -7,-5 -6,2 -0.3066,1.125 -18.7813,1.7871094 L 1267,-12 1245.3535,-1.6464844 1245,-2 l -5,-2 -0.3906,0.609375 L 1233,-10 1208.4863,-2.4570312 1200,-10 1187.1133,-4.0527344 1171.9922,-4.9414062 1172,-5 l -1,-2 -4,-6 -26.3008,8.7675781 L 1132,-11 1124.2227,-5.1660156 1097,-11 l -1,2 -1.9258,1.9257812 -23.0566,-1.84375 L 1071,-9 l -7,-5 -8.9629,8.9628906 L 1030,-6 1029.3594,-5.359375 1029,-6 l -3,1 -0.3008,0.8300781 L 1001,-6 1001.1055,-5.4472656 996,-8 l -7.80273,4.8769531 -24.25,-3.7304687 L 964,-7 V -8 -9 L 941.57617,-2.4589844 930,-15 910,-4 897.92578,-7.7148438 898,-8 896,-11 867.70703,-3.1953125 862,-7 847.21484,-2.0722656 837.96875,-2.9121094 838,-3 l -10,-9 -5,3 -0.043,0.3476562 -16.5293,5.5097657 -6.53906,-1.6347657 L 800,-5 794,-14 771.56055,-5.21875 760,-11 752.04688,-4.8144531 752,-5 747,-4 746.73633,-3.6601562 725,-15 l -6.55078,8.4238281 -8.7793,2.3925781 L 692,-14 v 1 l -0.0391,0.439453 L 667.41406,-2.1757812 658,-5 652,-1.5722656 V -2 H 642 L 641.57617,-1.2246094 625,-10 614.07617,-1.0625 601,-1.9335938 V -2 l -10,-5 -0.39648,1.0136719 -30.00586,0.9667969 L 560,-6 l -4,-1 -2,2 -0.24023,1 H 532 l -9,-4 -6,4 -11.27539,3.7578125 L 490,-14 471,-1 467.68555,-0.171875 457,-6 h -1 -24 l -10,-5 -5.95312,5.953125 L 397.99023,-5.9511719 398,-6 389,-15 371,-3 369.125,-1.125 357.75,-2.75 358,-3 355,-6 h -21 l -14,-5 -4,5 0.10547,0.3554688 -13.41797,2.515625 L 286,-10 278,-3 273.58789,-1.234375 253,-13 247.03906,-7.0390625 225.19922,-7.9492188 225,-9 l -5,-5 -7,4 -0.0527,1.2871094 L 203.57422,-6.15625 185,-13 l -2,1 0.0586,0.376953 -23.64257,9.4570314 -4.6875,-1.3398438 L 155,-4 l -3,-3 -21.0957,1.9179688 z m 2167,35 -4,-3 -7,3 -4,15 13,3 5,-4 z m -133,2 -6,-3 -8,1 -6,6 v 3 l 5,5 12,-1 z m -420,2 -3,12 6,4 h 9 l 4,-4 -4,-12 -8,-2 z m -187,-7 -4,-4 -10,10 4,7 h 5 z m -450,-3 -3,-3 -15,4 -3,4 v 7 l 2,4 20,-1 z m -296,9 -7,-2 -6,12 4,7 13,-6 z m -174,-2 -6,-3 -11,10 v 1 l 1,1 9,9 3,-5 z m -24,0 h -14 l 3,11 15,-4 v -1 z m -198,-6 -7,-4 -2,1 -2,3 v 16 l 8,1 4,-4 z m -130,4 -4,-7 -16,7 3,11 5,3 9,-4 z M 99,23 94,19 h -8 v 19 l 9,4 5,-3 1,-5 z M 2050.4004,4.0664062 2050.8379,5.234375 2045,13.666016 Z M 1374,8 l -2,13 5,6 12,-6 1,-3 V 17 Z M 39,9 33,21 v 1 l 7,4 7,-7 z m 89,0 -5,4 v 5 l 2,6 17,-5 v -3 z m 1704,0 -16,9 3,12 22,-9 -2,-5 z m -775,1 -4,4 -2,14 h 2 l 16,-4 v -7 z m 719.1855,0.832031 0.8165,3.673828 L 1776,11 Z M 448,11 l -6,5 1,9 6,2 2,-2 1,-6 z m 243,0 -8,3 5,13 12,1 1,-1 3,-7 -3,-5 z m 182,0 -1,3 5,14 9,-2 3,-8 v -2 z m 743,0 -5,4 5,14 13,-2 1,-8 z m 748,0 -8,3 -5,8 v 4 l 4,3 8,1 3,-1 4,-8 v -4 z m -2044,1 -11,6 v 9 l 1,2 18,-9 z m 512,0 -10,3 -3,3 3,9 h 12 l 4,-5 z m 207,0 -2,5 4,12 3,1 4,-3 2,-14 z m 892,0 -13,1 -1,1 1,12 12,4 6,-14 z m -826,0.5 11,0.5 1.1562,0.578125 L 1117,14 l -2,-1 z m -671,0.5 -12,4 -1,6 7,8 h 4 l 8,-5 -1,-11 z m 292,0 -9,7 11,12 4,-2 3,-8 -3,-7 z m 444,0 -7,6 v 6 l 9,8 4,-1 3,-13 z m 340.502,0 6.6035,1.761719 L 1517,15 Z m 172.498,0 -12,5 1,4 9,11 2,-1 7,-13 z m 197,0 -14,4 8,11 1,1 2,-2 6,-10 z M 382.5332,13.498047 376,14 l -1.50195,6.505859 1.3125,-6.560547 z M 869,14 l -11,10 2,6 12,2 3,-3 z m 375,0 -15,7 2,5 14,1 z m 27,0 -6,2 -7,8 -3,6 6,6 15,-6 -2,-13 z m 205,0 v 2 l 4,16 9,-9 z m 97,0 -18,5 1,9 11,1 8,-11 z m 330,0 -4,5 1,10 3,4 h 4 l 7,-7 -2,-11 z m 355,0 -4,2 -1,2 3,15 8,1 3,-2 4,-14 z m 76,0 -5,2 6,14 12,-3 -1,-4 z m -2136,1 -9,1 -3,3 -1,12 17,-2 -4,-13 z m 268,0 -11,4 -1,6 h 9 l 4,-8 z m 36,0 -1,2 -1,2 3,13 13,3 V 23 Z m 703,0 -17,3 8,15 h 4 z m 807,0 -13,8 5,7 h 9 l 4,-9 z m 103,0 -7,7 11,10 8,-6 v -2 z m -1914,1 3,12 3,2 10,-8 v -2 l -6,-4 z m 803,0 -15,2 2,13 12,-5 4,-8 z m 329,0 -8,6 v 4 l 7,7 11,-4 3,-3 v -4 l -10,-6 z m -397,1 -12,2 -1,1 -4,10 8,6 12,-7 v -8 z m 374,0 -4,3 -5,13 3,3 5,4 12,-14 v -3 z m 111,0 -10,7 2,8 8,4 1,-2 1,-15 z m 124,0 -4,10 9,3 3,-3 -1,-7 z m 421,0 -3,2 1,10 6,4 5,-3 1,-11 z m 332,0 -11,2 3,11 h 1 l 11,-5 V 20 Z M 14,18 -5,22 0,33 12,28 16,20 Z m 457,0 -4,10 4,9 10,-1 3,-13 z m 111,0 -8,1 v 1 l -1,10 v 1 l 11,4 2,-4 -3,-11 z m 392,0 -4,4 4,11 13,-1 -2,-13 -1,-1 z m 44,0 -9,1 -3,8 4,5 12,-3 -2,-9 z m 101,0 -8,10 8,10 6,-4 V 21 Z m 68,0 -6,1 -2,14 7,3 10,-2 z m 524,0 -1,1 2,14 3,5 12,-4 3,-12 z m 174,0 -5,11 17,1 -2,-11 z m 54,0 -6,13 1,4 12,7 v -1 l 3,-8 -2,-11 -5,-4 z m 93,0 -4,3 4,10 9,2 5,-4 -5,-9 z m 36,0 -6,8 -1,3 3,3 8,-1 9,-12 z m -1986,1 -10,1 -2,3 -1,9 12,6 4,-1 V 20 Z m 37,0 -17,4 3,10 16,-6 v -1 z m 646,0 -6,1 -1,1 v 6 l 9,11 9,-7 z m 50,0 -16,2 4,10 7,7 7,-4 2,-6 -3,-9 z m 611,0 -1,15 11,1 5,-6 v -9 z m 438,0 -15,6 11,9 11,-4 z m 97,0 -11,2 2,12 11,-4 z m 19,0 v 1 l -1,11 6,5 9,-11 -1,-2 z m 103,0 v 1 l -10,12 9,6 h 10 l 2,-2 V 26 25 Z m 121,0 -3,1 -5,9 2,14 h 3 l 13,-20 -2,-4 z M 627.49805,19.5 630.07227,19.867188 630,20 Z M 496,20 l -9,4 -3,12 2,2 11,-2 2,-3 z m 29,0 -6,4 v 10 l 11,-2 3,-10 v -1 z m 125,0 -14,4 1,7 2,4 9,-2 3,-13 z m 244,0 -3,8 1,4 18,2 2,-4 z m 50,0 v 9 l 1,2 9,3 2,-2 3,-10 -5,-2 z m 451,0 -2,4 7,13 h 3 l 8,-5 -2,-8 z m 854,0 -10,1 -5,13 h 1 15 l 2,-1 z m -2229,1 -3,9 4,9 h 4 l 5,-14 -1,-1 z m 1499,0 -3,8 v 4 l 12,5 3,-8 -4,-7 z m 58,0 -7,10 8,8 1,1 9,-5 1,-7 -1,-5 z m 590,0 -1,1 v 4 l 1,4 9,5 4,-9 -3,-4 z m -1619,1 -11,1 -3,10 3,3 h 14 l 1,-4 -2,-8 z m 207,0 -16,1 -3,9 7,5 5,1 7,-11 z m 94,0 -9,2 -3,5 3,8 h 13 l 3,-5 -2,-7 z m 112,0 -3,10 13,2 -4,-11 z m -800,1 -9,5 v 2 l 20,4 z m 1679,0 -19,8 v 2 l 8,5 13,-13 z m 267,0 -9,3 v 10 h 18 l 2,-3 z m -1888,1 -10,9 v 8 l 11,1 6,-7 z m 116,0 -1,12 6,5 9,2 5,-7 -8,-8 z m 1880,0 -12,19 7,2 h 2 l 9,-10 z m 160,0 -4,7 10,8 10,-9 z m -884,1 -9,9 -1,1 4,5 9,4 2,-1 V 29 l -3,-4 z m -1459,2 -5,13 3,1 9,-9 -2,-2 z m 1814,0 -2,15 8,8 3,-1 3,-12 z m -1242,1 -15,4 -2,4 1,10 9,1 8,-18 z m 1313,0 -7,9 2,4 4,3 h 8 l 7,-7 -2,-5 z m 245,0 -7,8 1,6 h 2 l 6,-10 z m 21,0 -4,8 2,5 12,1 -2,-12 z m 120,0 -10,5 12,12 h 2 l 1,-13 z m -1930,1 -3,2 -3,2 4,7 10,9 7,-17 z m 315,0 -6,6 16,12 2,-17 z m 381,0 -13,4 10,12 h 1 l 4,-3 V 32 Z m 92,0 -8,6 5,8 7,-1 3,-6 z m 161,0 -9,12 1,3 3,4 h 4 l 8,-5 v -7 z m 69,0 -8,4 v 2 l 2,6 5,3 2,-1 4,-5 z m 258,0 -8,4 9,8 4,-5 -1,-2 z m 669,0 -6,3 -2,14 3,2 12,-3 2,-3 v -1 z m -1901,1 -8,2 -2,2 2,5 3,2 h 5 l 4,-7 z m 25,0 -8,4 11,14 h 7 l -4,-17 z m 315,0 -6,9 3,3 8,4 1,-2 2,-5 z m 336,0 -15,1 v 11 l 10,2 7,-11 z m 257,0 -2,2 3,12 2,1 5,-8 -2,-2 z m 150,0 v 12 l 4,2 3,-1 5,-9 -1,-3 z m 629,0 -8,5 -1,3 2,9 11,-1 2,-2 -1,-10 z M 14,31 0,36 l -2,10 14,3 7,-8 z m 188,0 -15,2 -1,1 4,8 11,2 4,-3 -1,-8 z m 69,0 -6,3 4,8 6,3 4,-2 2,-2 v -7 z m 734,0 -11,4 2,6 11,7 3,-1 -2,-13 z m 104,0 -8,2 7,13 2,1 6,-5 v -3 z m 181,0 -8,2 2,13 1,1 16,-9 -3,-4 z m 246,0 -3,8 2,4 7,1 5,-2 2,-9 -9,-2 z m 20,0 -3,2 -2,10 8,4 7,-15 z m 791,0 -10,3 -3,6 v 1 l 11,1 4,-8 z m -1326,1 -9,2 1,12 5,-2 4,-10 z m 210,0 v 1 l 2,11 4,2 4,-2 2,-10 v -1 z m 46,0 -14,6 1,8 10,3 7,-3 -2,-13 z m 351,0 -10,1 -2,2 -1,5 15,7 1,-13 z m 145,0 -2,1 6,11 12,2 2,-12 z m 190,0 -8,2 -2,7 10,3 4,-9 z m 69,0 -8,8 6,10 h 3 l 5,-2 3,-13 z M 41,33 31,43 l 1,2 11,4 1,-13 z m 113,0 -1,3 3,7 h 7 l 7,-8 z m 100,0 -5,3 5,17 10,-8 -5,-10 z m 55,0 -6,11 5,8 h 4 l 8,-5 v -4 z m 298,0 -6,11 5,2 7,-6 -1,-2 z m 16,0 -2,3 v 2 l 9,3 3,-5 -2,-3 z m 179,0 -11,5 2,6 11,1 4,-7 z m 138,0 -11,5 3,8 5,3 2,-1 2,-14 z m 287,0 -13,7 9,11 7,-7 z m 340,0 -7,15 3,3 12,-9 z m 437,0 -5,12 2,4 4,1 11,-12 -3,-5 z m -1879,1 -14,12 5,7 12,-10 1,-5 z m 436,0 v 3 l 1,3 4,1 h 2 l 2,-7 z m 333,0 1,11 1,1 2,-1 8,-4 1,-5 z m 22,0 -2,3 -2,6 6,8 11,-3 -4,-9 -8,-5 z m 28,0 -1,15 7,1 6,-4 -4,-9 z m 467,0 -6,5 7,8 5,-3 2,-6 z m 638,0 -4,3 -3,11 7,2 9,-9 v -4 l -2,-3 z m -1659,1 -6,14 2,7 13,-13 -2,-7 -6,-1 z m 39,0 -5,12 v 2 l 11,4 8,-4 -11,-14 z m 144,0 -2,7 9,1 v -6 z m 674,0 -2,10 9,6 4,-5 -1,-7 -5,-4 z m 128,0 -13,4 -6,12 2,2 16,-2 5,-6 z m 334,0 -15,4 5,8 12,-1 1,-3 v -3 z m 19,0 -12,5 v 3 l 13,4 4,-8 z m 144,0 -10,4 -2,9 7,3 10,-2 1,-1 -5,-13 z m -746,1 -5,4 v 2 l 11,7 h 3 l 1,-10 z m 17,0 -4,3 -1,10 4,2 9,1 4,-7 -6,-9 z m 372,0 -6,10 16,4 3,-4 -1,-5 z m 283,0 -1,2 -1,6 v 1 l 9,1 1,-2 1,-4 z m 178,0 -3,2 -5,8 2,2 5,3 8,-8 -2,-3 z m 97,0 -7,1 v 3 l 5,8 4,-1 4,-7 z m -1927,1 -14,2 -1,5 9,11 9,-4 2,-4 z m 1032,0 -4,2 -3,6 3,6 h 10 V 40 Z m 591,0 -7,4 v 6 l 3,6 h 4 l 4,-8 z m 501,0 -3,2 3,9 2,2 h 4 l 3,-5 v -5 z m -2040,1 -5,7 1,4 6,7 6,-5 V 40 l -7,-2 z m 274,0 -1,2 2,8 1,1 6,-2 1,-1 v -6 z m 27,0 -9,1 v 7 l 9,3 1,-1 1,-8 z m 118,0 -7,2 -2,6 v 1 l 1,1 14,-3 h 1 l -1,-3 z m 190,0 -1,6 7,9 h 10 l -2,-15 z m 586,0 -1,1 -2,6 6,6 h 6 l 2,-7 v -5 z m 507,0 -7,7 4,9 13,-2 3,-7 z m -1757,1 -7,9 2,3 10,2 3,-8 -4,-6 z m 157,0 -7,5 v 3 l 6,7 7,-10 z m 486,0 -5,3 -4,6 3,4 8,5 h 2 l 2,-10 z m 653,0 -4,4 -1,5 8,2 6,-7 -3,-4 z m 630,0 3,7 11,4 2,-3 -2,-7 z m -512,1 -7,4 1,4 12,4 3,-2 z m 493,0 -6,9 8,2 8,-11 z m 175,0 -1,1 -1,12 11,-3 -3,-10 z m -1514,1 -4,11 2,4 9,-10 -3,-4 z m 658,0 -5,6 8,7 h 3 l 3,-5 -7,-8 z m 333,0 -3,6 2,4 7,1 1,-11 z m 168,0 -10,8 9,5 6,-10 -2,-3 z m -1800,3 -5,2 -2,5 14,11 3,-5 -1,-2 -4,-6 z m 1107,0 -2,8 3,7 9,-2 v -4 l -7,-9 z m 1170,2 -13,6 -2,4 12,5 5,-12 z m -538,1 -6,1 -1,3 1,7 1,1 h 6 l 4,-7 z m 83,0 -6,1 1,12 h 3 l 4,-6 z m 410,0 -1,2 5,10 h 2 l 7,-6 -2,-5 z m -2204,1 -7,6 v 2 l 10,2 3,-3 z m 162,0 -1,2 5,7 1,1 5,-6 -2,-4 z m 1326,0 -2,3 5,4 h 1 l 3,-3 -1,-1 z m 370,0 -9,8 3,6 1,2 7,-1 6,-11 -2,-2 z m -1776,1 -2,2 v 6 h 1 l 7,-5 -1,-2 z m 697,0 -5,3 7,7 2,-1 v -4 z m 212,0 -2,3 1,3 2,1 3,-4 z m 299,0 -5,3 -2,5 4,5 h 1 l 7,-8 z m 89,0 -2,1 5,14 4,-1 7,-8 v -2 z m 73,0 -1,11 5,4 h 5 l 5,-10 z m 128,0 -10,1 -2,6 2,5 11,-3 z m 199,0 -3,5 1,2 3,2 1,-1 -1,-6 z m 41,0 v 1 l -2,5 1,11 1,1 5,-1 7,-13 -1,-1 z m 376,0 -12,4 2,12 17,4 1,-5 z m -1925,1 -8,7 2,2 6,2 3,-10 z m 840,0 v 7 h 1 5 l 1,-4 -5,-3 z m 202,0 v 1 l 1,2 2,-1 v -1 z m 207,0 -9,4 5,8 h 5 l 3,-7 z m -1652,1 -4,3 3,7 15,8 4,-5 -5,-10 z m 1043,0 -8,4 1,6 3,5 4,-1 2,-13 z m 4,0 -1,16 7,2 1,-15 z m 263,0 -12,8 8,5 6,-4 2,-6 z m 508,0 -1,1 2,5 9,1 -1,-6 z m -710,1 -10,2 -2,10 6,2 11,-5 -3,-8 z m 444,0 -3,1 2,6 7,-1 -1,-3 -1,-1 z m 663,0 1,10 3,2 h 5 v -7 l -8,-5 z m -1507,1 4,8 9,3 -2,-11 z m 576,0 -5,1 v 10 l 2,1 7,-7 -3,-5 z m 796,0 -2,1 v 5 l 4,1 4,-1 -2,-5 z m -1982,1 -5,6 2,2 h 11 1 v -1 z m 494,0 -2,8 12,5 5,-3 -3,-7 -6,-3 z m 743,0 -3,2 3,3 3,-3 z m 348,0 -2,3 1,4 10,3 1,-1 -2,-4 z m 319,0 -5,12 h 16 l 1,-5 -8,-6 z m -1758,1 -7,5 12,8 6,-5 -2,-5 z m 529,0 v 1 h -1 l 2,4 h 6 v -3 z m 1194,0 -6,13 3,1 12,-4 -3,-6 z m -1645,1 -3,1 2,5 5,-2 -1,-1 z m 622,0 -2,1 -2,9 4,3 9,-1 -2,-11 z m 595,0 -2,1 v 1 l 4,5 2,-2 -1,-5 z m 637,0 -2,1 -2,6 2,4 h 8 l 1,-1 z m 130,0 -4,3 -3,4 3,8 8,-6 -1,-8 -1,-1 z m -1633,1 -1,6 3,1 3,-5 -3,-2 z m 302,0 -2,8 13,7 4,-5 -7,-10 z m -273,1 -5,3 2,8 h 4 l 2,-5 z m 435,0 -4,6 1,1 h 6 v -6 l -1,-1 z m 42,0 v 3 l 2,2 4,-3 v -2 h -1 z m 760,0 -5,1 -2,3 4,2 3,-1 z m 336,0 -3,6 h 1 2 l 4,-3 -2,-3 z m -1735,1 -1,1 v 2 l 2,2 4,-1 -1,-3 z m 270,0 -5,5 2,3 11,2 v -6 z m 1555,1 v 3 l 5,13 2,1 h 5 l 2,-2 1,-3 -4,-8 z m -2243,4 -3,4 5,8 5,2 6,-7 -2,-4 z m 109,0 -12,5 2,8 h 1 10 z m 617,0 -1,1 1,1 1,-2 z m -516,1 -11,3 -2,2 5,10 2,1 4,-3 5,-10 v -1 z m 441,1 v 1 l 3,6 5,-2 v -4 -1 z m 456,0 -3,13 h 10 l 4,-11 -3,-1 z m 1116,0 -2,1 -1,4 v 6 h 1 12 l -1,-6 z m -1576,1 -9,6 v 3 l 3,4 h 6 l 5,-3 z m 762,0 v 1 h 1 z m 183,0 -8,3 -1,1 -1,7 10,1 v -1 z m -599,1 -10,4 3,8 h 9 l 3,-3 v -5 -2 z m 789,2 -3,2 1,3 4,-2 v -2 z m 89,0 -8,1 v 10 l 3,4 11,-5 -5,-9 z m -1735,1 -3,2 -2,6 2,1 7,-3 1,-4 -1,-1 z m 754,0 v 6 l 10,7 4,-3 -7,-8 z m 575,0 -9,10 14,5 3,-3 v -2 l -3,-8 v -1 z m 87,0 -7,5 -1,1 1,2 12,5 5,-2 z m -1382,1 -6,3 v 8 l 1,1 8,-3 v -7 l -1,-1 z m -152,1 -8,9 2,7 15,-8 2,-3 h -1 z m 1752,0 -1,1 1,2 2,1 1,-1 -1,-3 z M 306,74 v 6 l 2,2 8,-2 -3,-6 z m 1561,0 -4,8 2,1 9,-3 -1,-4 z m 173,0 -3,4 v 3 l 8,3 6,-5 -8,-5 z m -1965,1 -1,5 4,-1 1,-2 v -1 l -1,-1 z m 2045,0 v 2 h 2 v -2 z m 134,0 -2,6 2,1 h 4 V 77 Z M 96,76 v 1 l 4,3 2,-4 z m 945,0 -3,4 2,2 6,-2 1,-2 -1,-1 -4,-1 z m 109,0 -3,1 v 4 l 4,-2 v -3 z m -1129,1 -1,1 -1,1 2,2 2,-1 v -3 z m 254,0 -1,2 1,2 4,1 v -5 z m 657,0 -2,2 1,3 2,1 1,-5 z m 205,0 v 1 l 1,-1 z m 1037,0 v 2 l 3,3 1,-5 z m 95,0 -1,8 3,3 h 1 l 4,-8 -3,-2 z m -778,3 v 1 h 1 1 z m -282,3 -1,1 2,2 h 1 v -2 z m -7,1 -3,1 -1,9 13,-1 z m -459,1 -1,1 h 1 l 1,-1 z m 498,0 3,11 3,-1 8,-7 -1,-2 z m 1118,0 -1,10 2,1 6,-11 h -1 z m -2136,2 1,4 3,-3 -1,-1 z m 109,0 -3,2 v 7 l 6,4 3,-1 v -8 z m -178,3 v 1 h 1 v -1 z m 1917,0 v 1 h 1 v -1 z m 232,0 -1,8 10,7 8,-3 -5,-12 z m -1930,2 -6,9 h 8 l 3,-6 z m -261,1 -1,1 -1,1 h 1 2 z m 1109,2 -3,2 v 6 l 13,5 h 4 l 2,-5 z m 930,1 v 4 h 3 v -1 l -2,-3 z M 766,98 v 1 h 1 v -1 z m -567,4 -10,8 -1,6 3,2 9,3 2,-17 z m 1687,0 v 1 h 1 v -1 z m -874,1 -5,10 4,5 6,-2 -2,-11 z m 1165,0 -3,1 v 1 l 1,3 v 1 l 2,-1 h 1 v -4 z m -1820,1 -4,3 3,7 4,-4 v -3 z m 1558,0 v 1 h 1 v -1 z m -1608,3 -1,1 -1,8 v 2 l 12,-4 -4,-7 z m 876,2 v 1 l 1,1 h 1 v -1 -1 h -1 z m 752,0 1,1 v -1 z m 326,0 1,2 h 2 l -1,-2 z m 58,2 -3,2 -2,4 2,1 5,-4 1,-2 z m -2081,1 h 1 z m 2003,2 v 1 l 2,1 v -1 -1 z m -235,1 -1,3 v 4 h 5 l 3,-4 -1,-2 z m -139,2 -1,2 3,3 h 1 l 2,-3 z m -684,9 -1,1 v 1 h 2 l 1,-2 z m -1047,1 -3,1 v 1 h 3 l 1,-1 z")]),G),M(Q,"path",V([N(H,"id","polygon1246"),N(H,"class",""),N(H,"d","m 502,60 -11,3 -6,8 -9,-5 -10,4 -11,-6 -1,1 -18,4 v -1 l -18,3 h -1 l 3,8 -7,10 2,11 4,2 14,-3 v 17 l 6,3 6,15 9,6 v 2 l -3,11 v 5 l 11,7 v 6 l 10,9 -4,15 -17,-14 -3,1 -3,19 1,1 4,2 16,-3 -2,18 h 1 19 l 2,-5 12,2 7,15 -16,1 -5,-6 -14,9 6,12 -11,8 h -8 l -3,4 -1,1 -1,3 9,19 -10,8 -7,-5 -14,3 -8,-1 -2,5 11,17 -6,9 1,3 -4,11 3,4 7,4 7,-3 11,2 5,-4 v -16 l 18,4 6,-5 8,4 3,14 2,2 7,-2 9,1 7,-3 4,-8 16,3 8,9 8,1 3,6 9,7 h 6 l 7,-4 h 10 l 4,-1 3,-12 9,-5 4,2 1,15 11,1 2,6 14,4 1,9 4,5 14,-10 8,4 8,-3 4,4 13,-4 2,-13 12,4 10,-12 9,14 9,-7 -2,-13 15,2 2,1 -4,16 v 2 2 l 2,2 11,8 7,-4 -7,-12 4,-6 16,11 -6,7 3,14 16,2 2,-2 4,-7 -1,-1 3,-20 9,-2 7,8 14,-10 -4,-10 4,-3 4,-11 13,-4 5,18 3,1 14,-7 -16,-16 10,-3 15,10 -4,9 4,11 20,-2 1,-2 16,-8 1,-8 8,-5 6,1 3,16 16,-6 1,-3 13,-2 5,-5 9,2 7,-5 -6,-14 3,-7 -1,-4 19,-11 15,4 1,-1 17,2 1,1 19,6 -1,8 2,4 11,7 10,-7 6,1 8,-8 13,2 3,6 10,4 6,-3 11,-3 1,-1 -5,-16 -1,-1 -6,-3 -4,-12 -3,-4 -15,4 -2,-2 1,-17 h -1 l 5,-11 -13,-8 -5,3 -7,-10 -15,-7 -1,-2 5,-12 -1,-2 -16,-9 -2,-3 17,-13 v -1 l 1,-10 17,-4 v -16 l 18,8 3,4 14,-5 -3,-16 3,-3 14,-2 1,-15 1,-1 3,-12 -10,-6 -11,5 -7,-14 -15,3 -10,-3 -10,13 h -8 l -17,6 v 3 l -15,11 3,10 -4,10 1,6 -13,5 -10,-6 -10,7 h -2 l -7,-14 -2,-1 -16,13 -6,-4 -2,-9 -14,-5 1,-14 -5,-4 -16,9 -5,-11 -13,-1 -5,6 h -5 l -1,-1 -19,3 1,11 -5,4 -14,-5 v -10 l -3,-3 -9,-2 -3,5 h -16 l -3,-6 -14,2 -6,11 1,6 -12,6 -15,-5 -2,1 -2,13 -3,6 -19,-10 v -3 l -12,-9 -1,-1 -13,1 -3,6 -10,4 -7,-18 -13,8 -11,-11 -8,2 -5,-4 4,-17 -3,-5 h -16 l -2,-4 -12,-7 -5,18 h -12 l 2,-14 -7,-6 -9,4 -14,-4 -1,1 -14,-17 -4,2 -6,18 -13,-7 -3,-7 -18,11 3,-17 -7,-5 -6,6 -7,-2 -10,3 z m -111,240 -13,15 13,8 5,-2 3,-16 z m -3,30 -13,7 v 3 l 21,11 4,-1 v -2 z")]),G),M(Q,"path",V([N(H,"id","polygon1266"),N(H,"class",""),N(H,"d","m 1332,67 -12,9 -2,5 -16,-4 -7,4 -3,3 7,15 -8,10 1,3 -5,18 7,6 -4,10 3,5 18,4 -5,-24 15,-2 1,20 8,1 6,13 h 5 l 4,-14 10,2 6,-5 1,-8 9,-2 2,-21 7,-2 v -8 l -8,-8 7,-13 -21,-3 h -17 l -4,-10 -2,-4 z m 113,36 -13,4 -2,8 11,9 6,-13 -1,-7 z m -51,12 -5,3 v 12 l -16,7 7,11 -5,15 3,2 7,-2 13,-13 13,10 6,-9 14,-4 v -10 l -7,-5 2,-13 -17,-2 -1,1 z")]),G),M(Q,"polygon",V([N(H,"points","1652,189 1645,201 1660,205 1663,212 1645,219 1649,229 1662,231 1665,240 1657,252 1662,257 1663,269 1656,273 1646,273 1641,268 1632,269 1619,252 1613,252 1612,251 1607,241 1595,240 1591,242 1580,238 1581,222 1570,220 1564,212 1567,203 1559,193 1559,186 1574,180 1571,166 1576,162 1578,148 1580,144 1590,147 1599,130 1605,134 1615,128 1615,122 1625,115 1635,122 1643,120 1647,101 1659,102 1662,118 1677,116 1679,113 1695,116 1699,113 1713,116 1714,117 1723,120 1735,111 1744,114 1746,128 1735,133 1728,128 1710,144 1694,147 1688,143 1674,147 1672,152 1666,154 1665,167 1660,174 1662,184 1661,185 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1344")]),G),M(Q,"polygon",V([N(H,"points","95,149 92,149 91,149 70,151 69,166 49,167 48,165 50,152 36,145 30,158 16,154 21,137 34,136 38,132 36,122 16,117 13,113 0,116.54545 0,194.47368 8,197 12,205 27,197 33,206 45,205 47,218 54,221 64,215 72,219 84,211 85,212 99,214 101,204 116,204 117,218 137,216 138,215 130,198 134,194 134,192 129,182 115,185 112,167 105,165 99,153 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1360")]),G),M(Q,"path",V([N(H,"id","polygon1368"),N(H,"class",""),N(H,"d","m 1496,112 -6,11 2,11 2,2 11,2 -8,21 v 2 l 11,3 1,4 1,12 -5,3 -9,17 -13,-2 -7,18 19,5 -6,15 5,8 15,-11 v -9 l 9,-7 1,-2 -19,-13 18,-5 -2,-14 16,-3 -3,-14 1,-5 -6,-9 -12,6 -6,-20 6,-4 v -12 z m -26,107 -7,15 1,5 7,4 h 1 l 11,-7 -11,-17 z")]),G),M(Q,"path",V([N(H,"id","polygon1376"),N(H,"class",""),N(H,"d","m 1933,136 -17,2 -2,12 v 1 l -18,1 -1,1 3,9 -6,7 1,16 3,1 6,-2 16,16 h 7 l 1,14 3,4 19,-9 5,11 -4,10 4,6 -14,17 h 2 l 14,16 -2,3 -5,10 -1,2 7,14 -14,9 h -3 l -5,-6 -17,1 -3,2 -15,-2 -3,17 -8,1 -2,11 -16,-3 -4,5 -14,1 -4,6 -11,-2 -13,12 9,8 15,-15 v 22 l -7,2 -1,6 6,14 -1,1 -5,14 9,9 14,-12 1,-5 11,-3 7,-10 11,7 6,-10 11,6 9,-7 9,7 10,-18 h 1 l 5,-1 1,-5 18,-11 6,5 9,1 2,-3 16,-5 3,5 14,4 1,7 14,2 7,-12 7,1 7,-5 2,-7 10,-8 h 1 l 9,19 9,-1 3,-3 -4,-19 -10,-3 1,-11 h 12 l 6,-3 1,-9 7,-2 7,-6 v -10 l 8,-3 3,-8 10,-10 -8,-9 6,-10 h 11 l 2,-18 -2,-1 -3,-4 5,-12 5,-2 7,-5 5,3 10,-2 6,-8 17,2 2,-16 -1,-1 -1,-14 -19,-6 2,-10 -17,-7 -4,4 -7,3 -4,5 -17,-1 -2,1 -13,-12 -5,2 -4,19 -9,-2 -6,-5 v -4 l -15,-14 -4,4 -8,3 1,14 -7,6 8,12 -11,5 -10,-2 -2,13 -18,3 -1,2 -15,-3 -5,-12 h -1 l -13,-10 -7,3 -7,10 -10,-7 -6,-15 -3,-1 -1,-7 2,-9 1,-8 z m 287,14 -7,5 2,11 -2,4 -14,-1 -5,11 14,5 -6,19 18,-2 3,1 11,-1 1,2 3,2 13,1 9,-7 -12,-15 v -1 l 20,-7 -16,-16 v -7 l -2,-2 -18,1 -3,-2 z")]),G),M(Q,"path",V([N(H,"id","polygon1380"),N(H,"class",""),N(H,"d","m 2347,146 -12,9 v 11 l 3,4 -5,12 -13,2 -7,-16 -11,4 -2,1 -3,7 3,2 3,17 12,1 3,7 4,-1 19,11 3,-2 12,4 3,-1 10,5 14,-8 -1,-3 18,-23.68359 V 173.69922 L 2382,162 l -1,-6 -9,-4 -11,6 -10,-4 z")]),G),M(Q,"polygon",V([N(H,"points","1323,269 1329,265 1340,263 1341,260 1345,253 1365,256 1361,264 1342,266 1346,283 1326,280 1324,279 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1398")]),G),M(Q,"path",V([N(H,"id","polygon1406"),N(H,"class",""),N(H,"d","m 232,319 -7,2 -5,10 -3,3 -12,-6 -4,4 4,16 -9,2 1,19 h 1 l 6,10 -18,11 -2,6 1,3 2,1 17,-1 2,1 11,4 4,-3 -4,-19 -2,-2 7,-11 11,-3 4,-13 -3,-3 v -15 l 3,-5 z m -128,66 -9,8 v 3 h 1 l 18,4 -8,16 7,5 20,-11 -16,-12 1,-2 -7,-10 z m 29,25 -4,21 8,3 11,-5 v -2 l -14,-17 z")]),G),M(Q,"polygon",V([N(H,"points","2235,338 2234,342 2241,352 2246,351 2264,359 2270,351 2267,343 2255,339 2252,325 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1410")]),G),M(Q,"path",V([N(H,"id","polygon1412"),N(H,"class",""),N(H,"d","m 544,372 -14,15 5,5 v 10 l 6,6 10,-2 3,4 h 13 v 14 l 3,3 2,1 12,-3 7,-6 -13,-13 -8,-1 -5,-12 -10,-3 -2,-16 z m -21,49 -1,6 3,14 -5,10 23,4 -4,-15 8,-7 -8,-11 z m 36,29 -1,1 -14,5 -3,12 15,3 4,4 15,-6 -4,-16 z")]),G),M(Q,"polygon",V([N(H,"points","2400,400.26923 2381,401 2379,400 2371,400 2363,391 2369,382 2362,373 2364,370 2384,370 2386,368 2400,365.45455 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1414")]),G),M(Q,"polygon",V([N(H,"points","750,402 740,404 739,405 738,419 743,425 754,429 756,429 762,415 759,410 772,397 762,387 758,388 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1418")]),G),M(Q,"polygon",V([N(H,"points","1481,398 1480,397 1478,389 1492,380 1499,389 1492,400 1487,401 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1420")]),G),M(Q,"polygon",V([N(H,"points","2221,413 2220,400 2214,397 2200,408 2190,405 2184,407 2180,416 2183,423 2197,427 2206,419 2212,421 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1422")]),G),M(Q,"polygon",V([N(H,"points","1429,417 1442,417 1445,422 1438,434 1452,437 1447,449 1440,450 1437,468 1422,466 1422,449 1409,443 1401,454 1385,451 1388,437 1395,430 1393,419 1395,416 1411,416 1413,418 1415,432 1429,431 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1426")]),G),M(Q,"polygon",V([N(H,"points","458,484 457,498 453,500 438,494 436,491 436,487 450,480 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1430")]),G),M(Q,"polygon",V([N(H,"points","1831,533 1828,541 1802,538 1800,537 1820,523 1831,531 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1432")]),G),M(Q,"polygon",V([N(H,"points","1760,556 1760,569 1742,577 1739,575 1742,558 1757,553 "),N(H,"type","iceShield"),N(H,"class",""),N(H,"id","polygon1434")]),G),M(Q,"path",V([N(H,"id","polygon1436"),N(H,"class",""),N(H,"d","m 2131,599 -19,13 -5,-5 -5,-2 -9,5 -13,-3 -4,-4 h -7 l -6,13 17,8 v 1 l -4,7 5,12 1,4 1,1 -9,20 h -2 l -11,7 6,12 -3,8 h -3 l -13,-12 -10,4 -7,-6 -16,2 -3,7 3,11 -4,6 -3,1 -4,22 -7,1 v 1 l 1,18 -3,1 -2,16 8,6 -1,11 15,8 6,-3 -2,-15 18,-2 -6,15 10,5 11,-13 h 1 l 17,-6 v 16 l 9,9 h 2 l 5,-18 14,10 5,-15 7,-1 2,-2 17,-4 1,5 10,5 11,-7 8,1 3,-4 20,-1 3,-2 -1,-15 -2,-6 v -6 l -2,-3 -21,1 -1,-17 18,2 2,-5 -2,-14 4,-4 -1,-8 1,-2 2,-18 h -1 l -13,-15 h -4 l -5,-2 -13,5 -7,-6 5,-15 -4,-5 1,-6 -10,-11 4,-13 -4,-4 z")]),G),M(Q,"path",V([N(H,"id","polygon1442"),N(H,"class",""),N(H,"d","m 1172,792 -8,3 -4,9 2,4 -8,16 8,6 5,6 -1,4 7,14 h 3 l 11,-2 2,-5 6,-4 h 10 l 5,-6 1,-7 -5,-8 -1,-11 h -10 l -11,-5 -1,1 z m -116,29 -3,13 8,8 -2,10 -18,-2 -1,-2 -19,13 1,7 5,4 -7,17 -12,-3 -1,3 v 18 l 14,-4 v -11 l 17,-3 1,10 -16,5 7,14 10,-1 1,-1 17,5 2,2 h 4 l 11,6 11,-8 1,-2 18,2 5,-3 v -3 l -17,-18 v -1 l 8,-7 1,-1 15,-1 3,-12 11,-2 v -18 l -6,-1 -9,-11 h -6 l -3,-22 -9,8 -9,-5 -13,8 -4,-8 -15,-3 z")]),G),M(Q,"path",V([N(H,"id","polygon1444"),N(H,"class",""),N(H,"d","m 388,806 -6,15 -9,-1 -4,3 v 17 l -8,2 -9,-10 -14,6 -14,5 -6,13 4,3 -3,19 -4,12 4,6 -1,6 3,3 12,1 2,16 14,-5 2,-13 6,-3 16,12 v 4 l 15,1 5,-15 6,-2 1,-6 -1,-4 10,-15 5,-1 3,-17 5,-4 -3,-12 -20,-3 -4,-13 8,-7 -1,-6 z m 65,99 -5,4 3,13 3,7 16,-4 2,-4 -5,-15 z m 0,25 -8,5 -4,6 -18,1 -3,14 h -10 l -11,5 11,15 10,-4 2,-13 13,2 9,-13 14,8 v 1 l 6,2 2,4 h 14 l 8,-15 v -2 l -5,-3 -4,-1 h -1 l -19,-1 z")]),G),M(Q,"path",V([N(H,"id","polygon1450"),N(H,"class",""),N(H,"d","m 720,909 -4,20 -11,1 -4,-2 h -9 l -2,2 -3,7 1,2 -7,18 h -8 l -3,2 -7,-1 -13,19 1,2 16,1 4,10 2,1 6,11 -16,6 12,13 3,-1 8,7 13,1 5,-4 11,4 3,9 22,5 v -1 l 13,-8 10,8 5,-1 8,-8 1,-6 8,-1 14,14 8,-16 14,2 v -16 l -1,-2 2,-13 10,-4 1,-1 -12,-17 11,-5 3,-14 h -16 l -2,1 -12,-2 -2,-10 -1,-1 -13,-4 v -16 l -2,-2 -14,4 -2,2 -17,-8 -6,4 -10,-3 h -4 z")]),G),M(Q,"path",V([N(H,"id","polygon1454"),N(H,"d","m 61,958 -12,3 -2,3 1,9 -20,4 v 3 l 3,11 -1,6 7,12 h 1 l -9,19 1,5 -1,5 15,6 2,13 5,6 -5,10 -4,1 -8,7 -20,-10 -3,3 4,12 6,6 -12,15 -9,-4.0918 V 1176 h 101.66602 l 3.33398,-1 2,1 h 130 467 313 l 4,-1 0.666,1 H 1829 h 404 163.5 l 2.5,-1 1,-1.8887 v -61.2109 l -9,-0.9004 -7,-15 -9,-4 -6,1 -2,-2 v -10 l 9,-9 11,-2 v -12 l -4,-5 h -13 l -2,-12 -1,-2 2,-7 -3,-4 7,-18 -7,-6 -2,-8 15,-6 5,-6 v -1 l -16,-10 -1,-4 h -17 l -4,7 h -11 l -2,3 5,13 7,5 -1,4 -12,10 -4,-15 -9,-9 -2,2 -6,17 9,7 11,-2 8,11 -2,9 1,4 -9,13 3,5 -3,8 8,11 -1,4 -18,2 v 11 h -1 l -16,4 -3,-5 h -16 l -2,1 v 12 l -11,5 -3,5 -13,-1 -7,-5 -13,5 h -1 -12 l -9,-13 -5,-2 -3,2 -18,-3 -3,-3 -11,1 -5,-4 h -1 l -19,7 -2,-1 3,-27 -16,8 1,14 -11,3 -4,4 -2,13 -13,4 -10,-18 -14,13 2,6 -4,7 -8,1 -4,-3 -15,7 v 3 l -13,7 -10,-6 -9,4 -3,8 -11,-1 -3,-3 -14,11 4,8 -6,3 -20,-3 -1,3 -9,3 -11,-5 2,-10 -14,-13 -3,9 -2,14 -11,3 -3,-3 -18,4 -4,2 -9,-5 v -1 l -22,-1 -1,-12 -2,-3 -8,-1 -5,-16 v -1 l -13,4 -3,14 -15,-1 -5,3 h -11 l -11,-3 -4,-6 3,-11 -6,-6 -11,10 -2,6 -15,-1 -1,-11 2,-5 -9,-10 2,-13 h 2 l 10,-17 -13,-4 2,-15 h -15 l -4,6 h -14 l -2,-2 -7,-1 -13,12 -4,-1 -3,-3 -6,-2 -11,18 2,5 h 7 l 2,-1 13,1 6,12 17,-10 5,3 -2,19 h -1 l -1,11 v 1 l -2,12 -5,4 h -5 l -10,7 3,8 -10,7 -7,-7 h -9 l -2,-2 -14,3 -5,-4 v -8 l -21,-3 -1,-2 -13,-2 -7,2 -10,-1 -2,1 -12,-4 -9,10 -8,-4 -6,3 -10,-1 -6,-6 -5,2 -13,-3 -3,-15 -13,1 -3,3 -1,1 -8,5 -20,-7 -1,2 -20,3 2,14 -21,1 -8,-5 -1,-2 -17,3 -8,-5 -3,2 -12,-13 3,-4 1,-6 -16,-6 3,-10 16,-5 2,15 13,6 3,-8 13,-2 2,-11 v -1 l -3,-15 -13,2 -8,-9 -14,5 -2,2 -10,-2 -4,1 -3,16 -6,1 -10,-6 -9,4 -10,-13 h -2 l -8,21 1,2 -7,11 -11,-2 -1,1 -12,-14 h -2 l -5,-6 h -16 l -4,-4 -14,2 -2,4 -9,2 -1,16 -18,-5 -4,5 -9,-3 -13,18 h -1 l -7,-4 -3,-8 -1,-1 -11,-2 -1,-4 -22,1 5,-19 -2,-2 -18,9 -9,-17 v -1 l -8,21 -18,-8 3,-10 -13,-11 -10,7 1,11 -10,2 -3,15 -9,-2 -8,10 5,9 -2,4 -1,14 -12,-3 -12,-12 -9,-5 -13,7 -8,-4 2,-12 -3,-6 -7,-4 -6,5 -16,-3 -6,5 6,11 -14,12 -6,-3 -2,1 -6,-5 -18,3 -1,-6 -12,-3 -7,5 -15,1 -1,-7 4,-6 -2,-17 -19,3 v 1 l 1,9 -8,8 -8,-3 -12,10 -3,-1 -5,6 -12,-2 -4,16 -10,-7 -13,5 13,17 -27,-3 -1,3 h -9 l -7,-3 -14,16 -14,-15 v -5 l -4,-6 v -10 l -4,-4 -10,-1 -3,-2 -8,-1 -5,-17 h -1 l -13,2 -1,12 -15,8 -3,-4 -20,1 -2,3 -14,-2 -9,13 -7,-1 -3,-2 h -5 l -6,4 -6,10 h -12 v -15 l -1,-4 -18,8 -2,3 -13,2 -2,-2 -15,2 -5,-9 8,-13 -1,-1 -19,-5 -4,-9 -3,-2 -8,2 -9,-5 -16,5 -3,-1 h -5 l -6,-11 -17,-4 -2,-3 h -3 l -6,-2 -4,-17 -12,-2 -6,8 -8,-1 -10,-6 -7,4 -5,11 -15,-18 -8,5 h -5 l -8,-12 -17,5 -1,1 -11,6 -6,-13 -14,-1 -1,-2 -12,2 -2,-1 -8,-16 -4,-1 -9,14 -9,-3 -2,-4 -10,-5 -6,1 -4,11 h -14 l -11,-13 -5,1 -5,-1 -9,2 -3,-4 -18,-7 2,-14 -4,-5 h -1 l -16,9 v 1 l -17,9 -4,-11 v -10 l -16,-4 h -1 l -13,-3 -3,-7 -5,-6 H 80 l -3,-18 -10,-3 -1,-8 z m 2161,31 -7,5 2,9 -8,11 -4,-2 -9,-12 -8,12 -12,-6 -9,7 -5,-2 -3,-18 -11,4 -4,12 -15,-4 -5,2 7,18 -6,5 -13,-1 -2,10 8,12 1,9 -9,4 -4,-1 -13,7 9,13 8,-5 6,4 11,-10 -7,-12 14,-4 12,5 6,-18 h 5 l 15,13 6,-8 21,2 v -17 l 13,-7 17,-2 1,-11 -2,-4 11,-14 -5,-6 z m -155,34 -4,17 5,5 15,-7 3,-4 v -7 l -4,-3 z m -72,15 -2,3 h -14 v 15 l -6,3 -7,-1 -5,5 -10,-2 -7,-16 -9,1 -4,7 v 3 l 3,4 8,5 4,7 -9,8 1,10 -8,3 -2,13 8,8 5,-1 6,-6 13,2 2,-1 v -15 l 1,-1 17,-3 6,4 7,-1 9,5 12,-5 8,5 11,-10 -2,-6 3,-9 -12,-9 7,-4 6,-14 -22,3 -1,2 z m -1568,6 h 1 z m 687,2 -1,1 h 1 l 1,1 v -1 z m -641,3 v 1 l 1,3 3,-2 v -2 z m 1391,2 -16,5 -5,-3 -13,7 -5,-3 -12,1 -4,15 -16,-3 -4,10 10,12 12,-2 2,-2 13,5 8,-6 h 6 l 15,-8 v -4 l 16,-17 z m -1467,2 v 1 h 1 v -1 z m 597,0 1,1 v -1 z m -654,1 v 1 h 1 v -1 z m 889,7 v 3 l 1,4 2,2 4,2 3,-1 v -9 z m -520,1 1,1 v -1 z m 317,1 -1,1 v 6 l 1,1 5,-2 v -4 -1 z m -462,2 -1,1 -2,6 3,3 4,-3 -2,-6 z m 264,1 -1,1 -2,4 2,3 5,-3 -1,-4 z m 1084,0 -11,19 -4,-1 -2,-5 -16,-9 -2,6 2,16 v 1 l 2,8 14,3 9,-16 7,3 8,-3 1,-12 -5,-9 z m -1129,1 -2,4 4,3 2,-1 -3,-6 z m 676,5 -10,5 v 18 l 4,1 7,12 13,4 v -17 l 16,-3 5,6 9,1 5,-9 1,-7 -14,-6 -2,2 -16,-1 -6,16 -1,-1 -10,-20 z m -903,6 -1,1 2,1 v -1 z m 368,0 -1,7 3,6 9,-2 1,-9 -2,-2 z m -276,2 v 1 l 1,-1 z m 583,4 v 1 z m -440,5 v 1 h 1 v -1 z m -189,6 v 1 h 1 l 1,-1 h -1 z m 23,0 -3,2 3,9 4,3 3,-2 2,-7 z m 152,17 -1,5 1,1 h 3 v -4 z m 12,4 v 2 l 1,1 2,-2 v -1 z m 854,9 -3,1 8,18 17,-6 -1,-1 z m -888,13 -6,10 17,5 v -14 z")]),G)])),M(Q,"g",V([N(H,"inkscape:groupmode","layer"),N(H,"id","layer1"),N(H,"inkscape:label","Labels"),N(H,"style","display:inline")]),V([M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","-234.19965"),N(H,"y","709.50055"),N(H,"id","text709"),N(H,"transform","rotate(-59.37762)")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan707"),N(H,"x","-234.19965"),N(H,"y","709.50055"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("The vast continent of R")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1078.3359"),N(H,"y","47.320759"),N(H,"id","text815"),N(H,"transform","rotate(22.449543)")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan813"),N(H,"x","1078.3359"),N(H,"y","47.320759"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle")]),V([Z("Programming")])),M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"x","1078.3359"),N(H,"y","97.434967"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),N(H,"id","tspan817")]),V([Z("Ocean")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","209.73439"),N(H,"y","-71.457466"),N(H,"id","text1242"),N(H,"transform","rotate(45.986589)")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1240"),N(H,"x","209.73439"),N(H,"y","-71.457466"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Bay of Bayes")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","214.50117"),N(H,"y","400.50565"),N(H,"id","text1246"),N(H,"transform","rotate(-3.5262992)"),N(H,"inkscape:transform-center-x","-20.413001"),N(H,"inkscape:transform-center-y","1.4179341")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1244"),N(H,"x","214.50117"),N(H,"y","400.50565"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Sea 14")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","299.10535"),N(H,"y","344.67349"),N(H,"id","text1250"),N(H,"transform","rotate(37.849424)"),N(H,"inkscape:transform-center-x","-13.907201"),N(H,"inkscape:transform-center-y","15.846844")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1248"),N(H,"x","299.10535"),N(H,"y","344.67349"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Land of Dating")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","357.46152"),N(H,"y","576.42523"),N(H,"id","text1254"),N(H,"transform","rotate(30.154136)"),N(H,"inkscape:transform-center-x","-15.744578"),N(H,"inkscape:transform-center-y","10.872309")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1252"),N(H,"x","357.46152"),N(H,"y","576.42523"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("South Artefact Ocean")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","-437.99774"),N(H,"y","557.47095"),N(H,"id","text1258"),N(H,"transform","rotate(-61.581071)"),N(H,"inkscape:transform-center-x","-10.309419"),N(H,"inkscape:transform-center-y","-16.206225")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1256"),N(H,"x","-437.99774"),N(H,"y","557.47095"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Gulf of calibration")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","634.62994"),N(H,"y","424.33575"),N(H,"id","text1262"),N(H,"transform","rotate(33.699223)"),N(H,"inkscape:transform-center-x","-15.494072"),N(H,"inkscape:transform-center-y","11.752989")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1260"),N(H,"x","634.62994"),N(H,"y","424.33575"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Data Storage Avalon")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","634.00623"),N(H,"y","564.82593"),N(H,"id","text1266"),N(H,"transform","rotate(33.699223)"),N(H,"inkscape:transform-center-x","-15.494072"),N(H,"inkscape:transform-center-y","11.752989")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1264"),N(H,"x","634.00623"),N(H,"y","564.82593"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("(R)Markdown reef")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","332.49655"),N(H,"y","860.86316"),N(H,"id","text1339"),N(H,"transform","rotate(15.02823)"),N(H,"inkscape:transform-center-x","-18.04214"),N(H,"inkscape:transform-center-y","6.3837415")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1337"),N(H,"x","332.49655"),N(H,"y","860.86316"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Icy Plateau of Latex")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","640.65735"),N(H,"y","811.8045"),N(H,"id","text1343"),N(H,"transform","rotate(1.5599143)"),N(H,"inkscape:transform-center-x","-16.256403"),N(H,"inkscape:transform-center-y","11.543572")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1341"),N(H,"x","640.65735"),N(H,"y","811.8045"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle")]),V([Z("Linked Open")])),M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"x","640.65735"),N(H,"y","845.21399"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),N(H,"id","tspan1345")]),V([Z("Island")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1061.6815"),N(H,"y","-136.37398"),N(H,"id","text1349"),N(H,"transform","rotate(53.510639)"),N(H,"inkscape:transform-center-x","-10.068006"),N(H,"inkscape:transform-center-y","16.659193")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1347"),N(H,"x","1061.6815"),N(H,"y","-136.37398"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Shoals of Wikidata")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","819.34967"),N(H,"y","965.08252"),N(H,"id","text1353"),N(H,"transform","rotate(-1.9812092)"),N(H,"inkscape:transform-center-x","-19.803371"),N(H,"inkscape:transform-center-y","2.7586301")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1351"),N(H,"x","819.34967"),N(H,"y","965.08252"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Blogging Coast")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","503.2959"),N(H,"y","1220.7661"),N(H,"id","text1357"),N(H,"transform","rotate(-26.913675)"),N(H,"inkscape:transform-center-x","-18.67202"),N(H,"inkscape:transform-center-y","-5.6640496")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1355"),N(H,"x","503.2959"),N(H,"y","1220.7661"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Javascript Sea")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","381.1861"),N(H,"y","1080.525"),N(H,"id","text1361"),N(H,"transform","rotate(-26.913675)"),N(H,"inkscape:transform-center-x","-18.67202"),N(H,"inkscape:transform-center-y","-5.6640496")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1359"),N(H,"x","381.1861"),N(H,"y","1080.525"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Public Outreach Island")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","488.69992"),N(H,"y","685.71515"),N(H,"id","text1774"),N(H,"transform","rotate(-12.297004)"),N(H,"inkscape:transform-center-x","-20.102851"),N(H,"inkscape:transform-center-y","-4.8405568")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1772"),N(H,"x","488.69992"),N(H,"y","685.71515"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle")]),V([Z("Jungle of")])),M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"x","488.69992"),N(H,"y","719.12463"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),N(H,"id","tspan1776")]),V([Z("incomprehensible")])),M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"x","488.69992"),N(H,"y","752.53418"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),N(H,"id","tspan1778")]),V([Z("statistics")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","475.84653"),N(H,"y","252.16711"),N(H,"id","text1782"),N(H,"transform","rotate(-5.9729606)")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1780"),N(H,"x","475.84653"),N(H,"y","252.16711"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("HighR mountain range")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","707.16949"),N(H,"y","432.37146"),N(H,"id","text1786"),N(H,"transform","rotate(-12.289979)"),N(H,"inkscape:transform-center-x","-19.885997"),N(H,"inkscape:transform-center-y","0.0015220918")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1784"),N(H,"x","707.16949"),N(H,"y","432.37146"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Bash Forests")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","325.50275"),N(H,"y","-919.94769"),N(H,"id","text1790"),N(H,"transform","rotate(71.880184)"),N(H,"inkscape:transform-center-x","-3.7779208"),N(H,"inkscape:transform-center-y","18.814873")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1788"),N(H,"x","325.50275"),N(H,"y","-919.94769"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Archaeological Theory Passage")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1297.9855"),N(H,"y","-400.19702"),N(H,"id","text1794"),N(H,"transform","rotate(45.565803)"),N(H,"inkscape:transform-center-x","-10.006552"),N(H,"inkscape:transform-center-y","17.142197")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1792"),N(H,"x","1297.9855"),N(H,"y","-400.19702"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Rolling Hills of Photography")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1056.0248"),N(H,"y","1007.8676"),N(H,"id","text1798"),N(H,"transform","rotate(-16.058922)"),N(H,"inkscape:transform-center-x","-19.62393"),N(H,"inkscape:transform-center-y","-1.665494")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1796"),N(H,"x","1056.0248"),N(H,"y","1007.8676"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Digital Fieldwork Desert")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1427.3667"),N(H,"y","1342.5848"),N(H,"id","text1804"),N(H,"transform","rotate(-20.93002)")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"x","1427.3667"),N(H,"y","1342.5848"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),N(H,"id","tspan1802")]),V([Z("South Artefact Ocean")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1617.7301"),N(H,"y","-926.66522"),N(H,"id","text1810"),N(H,"transform","rotate(44.474421)"),N(H,"inkscape:transform-center-x","-11.834589"),N(H,"inkscape:transform-center-y","13.726068")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1808"),N(H,"x","1617.7301"),N(H,"y","-926.66522"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("GIS Passage")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1848.709"),N(H,"y","-408.39664"),N(H,"id","text1814"),N(H,"transform","rotate(25.631027)"),N(H,"inkscape:transform-center-x","-16.021199"),N(H,"inkscape:transform-center-y","11.918389")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1812"),N(H,"x","1848.709"),N(H,"y","-408.39664"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Geophysics Marshes")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1478.6812"),N(H,"y","1066.475"),N(H,"id","text1818"),N(H,"transform","rotate(-16.058922)"),N(H,"inkscape:transform-center-x","-19.62393"),N(H,"inkscape:transform-center-y","-1.665494")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1816"),N(H,"x","1478.6812"),N(H,"y","1066.475"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("3D peak")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","774.11865"),N(H,"y","1516.2793"),N(H,"id","text1822"),N(H,"transform","rotate(-42.620968)"),N(H,"inkscape:transform-center-x","-17.416968"),N(H,"inkscape:transform-center-y","-9.4917185")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1820"),N(H,"x","774.11865"),N(H,"y","1516.2793"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Lake LIDAR")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1715.6658"),N(H,"y","-371.70309"),N(H,"id","text1826"),N(H,"transform","rotate(22.034727)"),N(H,"inkscape:transform-center-x","-16.380753"),N(H,"inkscape:transform-center-y","7.604309")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1824"),N(H,"x","1715.6658"),N(H,"y","-371.70309"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Spatial Data Wastelands")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1857.8152"),N(H,"y","125.45741"),N(H,"id","text1830"),N(H,"transform","rotate(3.481433)"),N(H,"inkscape:transform-center-x","-19.966129"),N(H,"inkscape:transform-center-y","4.7864199")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1828"),N(H,"x","1857.8152"),N(H,"y","125.45741"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Satellite Sea")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1928.8497"),N(H,"y","46.259201"),N(H,"id","text1834"),N(H,"transform","rotate(3.481433)"),N(H,"inkscape:transform-center-x","-19.966129"),N(H,"inkscape:transform-center-y","4.7864199")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1832"),N(H,"x","1928.8497"),N(H,"y","46.259201"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Big Datia")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","959.85822"),N(H,"y","1366.3275"),N(H,"id","text1838"),N(H,"transform","rotate(-45.304885)"),N(H,"inkscape:transform-center-x","-16.8386"),N(H,"inkscape:transform-center-y","-10.503359")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan1836"),N(H,"x","959.85822"),N(H,"y","1366.3275"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Machine Learning Mountains")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","671.63116"),N(H,"y","1028.9729"),N(H,"id","text2238"),N(H,"transform","rotate(-38.201327)"),N(H,"inkscape:transform-center-x","-18.106222"),N(H,"inkscape:transform-center-y","-8.1069245")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan2236"),N(H,"x","671.63116"),N(H,"y","1028.9729"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Isla DNA")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1088.3958"),N(H,"y","736.54938"),N(H,"id","text2242"),N(H,"transform","rotate(-13.401477)"),N(H,"inkscape:transform-center-x","-18.194865"),N(H,"inkscape:transform-center-y","-2.2701272")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan2240"),N(H,"x","1088.3958"),N(H,"y","736.54938"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Bio- and Zooarch Coast")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1437.9337"),N(H,"y","-293.51471"),N(H,"id","text2246"),N(H,"transform","rotate(18.998404)"),N(H,"inkscape:transform-center-x","-16.803955"),N(H,"inkscape:transform-center-y","7.9853467")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan2244"),N(H,"x","1437.9337"),N(H,"y","-293.51471"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Python bay")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1206.5577"),N(H,"y","185.63713"),N(H,"id","text2250"),N(H,"transform","rotate(2.861159)"),N(H,"inkscape:transform-center-x","-19.323032"),N(H,"inkscape:transform-center-y","2.4058416")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan2248"),N(H,"x","1206.5577"),N(H,"y","185.63713"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("ABMtis")]))])),M(Q,"text",V([N(H,"xml:space","preserve"),N(H,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),N(H,"x","1161.3313"),N(H,"y","-855.96277"),N(H,"id","text2254"),N(H,"transform","rotate(39.103562)"),N(H,"inkscape:transform-center-x","-12.336889"),N(H,"inkscape:transform-center-y","15.311423")]),V([M(Q,"tspan",V([N(H,"sodipodi:role","line"),N(H,"id","tspan2252"),N(H,"x","1161.3313"),N(H,"y","-855.96277"),N(H,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),V([Z("Netlogostan")]))]))]))])))])),M(ce,function(t){return t.B},V([N(I7,function(t){return t.D},V([T9(0)]))]),M(Q0,b9,V([0,0,200,200]),V([0,100,100,0]))),N(St,C0(b),C(function(t,n){var e,a=Wt(n),r=Ft(n),i=N(L,r,a);return V([P(De,n,V([z9(0),x4("#fcf9e9")]),V([N(X,"opacity","0.8")]),V([E(1===i.$?"":(r=i.a).M+": "+r.ae)])),(e=function(t){return 1===i.$?G:o(i.a)},{$:10,a:C(function(t,n){return e(t)})})])})),M(ce,function(t){return t.B},V([N(J7,C(function(t,n){return V([s6(function(){switch(n.eM){case 0:return"#71c614";case 1:return"#FFCA00";default:return"#F5325B"}}())])}),M(y4,b,function(t){return V([it(12)])},N(B7,"Teaching resource",N(I7,function(t){return t.D},V([it(2),g7,Zt(.6),Et(2),Qt("#292929")])))))]),B),h.$?x9:(k=h.a,P(m9,$9(96),$9(2),V([Ct(7)]),V([Z("x: "+F(O9(k.B))),Z(" y: "+F(O9(k.D)))])))]));return N(Y,G,V([N(mt,G,K(t?V([ze]):G,V([ht,N(cn,G,V([N(dt,G,V([N(Y,V([N(X,"overflow","hidden"),N(X,"margin","auto"),N(X,"height","100%"),N(X,"width","100%")]),V([y]))]))])),N(cn,G,V([N(dt,G,V([N(L4,G,G),N(Y,G,V([N(vt,V([N(X,"font-size","30px")]),V([E("The didactic map of computational archaeology")])),N(vt,V([N(X,"display","inline-block"),N(X,"width","20px")]),G),E(" a project by the "),N(b4,V([z7("https://sslarch.github.io")]),V([E("SIG SSLA")]))])),N(ye,G,V([N(mt,G,V([N(cn,V([K4]),V([N(dt,G,V([N(Y,V([N(X,"display","inline-block"),N(X,"width","100%")]),V([t8(Bt),E(" Filter the list ("+F(Z0(B))+("/"+F(Z0(f)))+") "),N(I4,V([{$:4,a:V([N(X,"float","right")])},xe,D9,{$:4,a:V([B9(o4)])}]),V([t8(Rt),E(" Clear filters")]))]))])),(R=G,{$:1,a:N(Y,K(V([J("w-100")]),R),G)}),N(dt,G,V([N(g9,B0,N(Y,G,V([P(kr,u.cE,u.bd,u.c0,u.J)])))]))]))]))])),M($r,c,s,B)]))]))]))),S,n]))})(!1)});p1={Main:{init:h1(K5)(0)}},t.Elm?function t(n,e){for(var a in e)a in n?"init"==a?l(6):t(n[a],e[a]):n[a]=e[a]}(t.Elm,p1):t.Elm=p1}(this); \ No newline at end of file +!function(t){"use strict";function n(t,n,e){return e.a=t,e.f=n,e}function T(e){return n(2,e,function(n){return function(t){return e(n,t)}})}function M(r){return n(3,r,function(e){return function(n){return function(t){return r(e,n,t)}}})}function R(a){return n(4,a,function(r){return function(e){return function(n){return function(t){return a(r,e,n,t)}}}})}function u(i){return n(5,i,function(a){return function(r){return function(e){return function(n){return function(t){return i(a,r,e,n,t)}}}}})}function e(o){return n(6,o,function(i){return function(a){return function(r){return function(e){return function(n){return function(t){return o(i,a,r,e,n,t)}}}}}})}function r(c){return n(7,c,function(o){return function(i){return function(a){return function(r){return function(e){return function(n){return function(t){return c(o,i,a,r,e,n,t)}}}}}}})}function S(t,n,e){return 2===t.a?t.f(n,e):t(n)(e)}function H(t,n,e,r){return 3===t.a?t.f(n,e,r):t(n)(e)(r)}function B(t,n,e,r,a){return 4===t.a?t.f(n,e,r,a):t(n)(e)(r)(a)}function V(t,n,e,r,a,i){return 5===t.a?t.f(n,e,r,a,i):t(n)(e)(r)(a)(i)}function t1(t,n,e,r,a,i,o){return 6===t.a?t.f(n,e,r,a,i,o):t(n)(e)(r)(a)(i)(o)}function w(t,n,e,r,a,i,o,c){return 7===t.a?t.f(n,e,r,a,i,o,c):t(n)(e)(r)(a)(i)(o)(c)}var a=M(function(t,n,e){for(var r=Array(t),a=0;ao)return a}var m=e.$;if(4===m){for(var d=e.k;4===d.$;)d=d.k;return t(n,d,r,a,i+1,o,n.elm_event_node_ref)}var p=e.e;var h=n.childNodes;for(var b=0;bo))return a;i=g}return a}(t,n,e,0,0,n.b,r)}function W2(t,n,e,r){return 0===e.length?t:(q2(t,n,e,r),I2(t,e))}function I2(t,n){for(var e=0;e li { position: relative;}.fa-li { left: calc(var(--fa-li-width, 2em) * -1); position: absolute; text-align: center; width: var(--fa-li-width, 2em); line-height: inherit;}.fa-border { border-color: var(--fa-border-color, #eee); border-radius: var(--fa-border-radius, 0.1em); border-style: var(--fa-border-style, solid); border-width: var(--fa-border-width, 0.08em); padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);}.fa-pull-left { float: left; margin-right: var(--fa-pull-margin, 0.3em);}.fa-pull-right { float: right; margin-left: var(--fa-pull-margin, 0.3em);}.fa-beat { -webkit-animation-name: fa-beat; animation-name: fa-beat; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); animation-timing-function: var(--fa-animation-timing, ease-in-out);}.fa-bounce { -webkit-animation-name: fa-bounce; animation-name: fa-bounce; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));}.fa-fade { -webkit-animation-name: fa-fade; animation-name: fa-fade; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));}.fa-beat-fade { -webkit-animation-name: fa-beat-fade; animation-name: fa-beat-fade; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));}.fa-flip { -webkit-animation-name: fa-flip; animation-name: fa-flip; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); animation-timing-function: var(--fa-animation-timing, ease-in-out);}.fa-shake { -webkit-animation-name: fa-shake; animation-name: fa-shake; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, linear); animation-timing-function: var(--fa-animation-timing, linear);}.fa-spin { -webkit-animation-name: fa-spin; animation-name: fa-spin; -webkit-animation-delay: var(--fa-animation-delay, 0); animation-delay: var(--fa-animation-delay, 0); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 2s); animation-duration: var(--fa-animation-duration, 2s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, linear); animation-timing-function: var(--fa-animation-timing, linear);}.fa-spin-reverse { --fa-animation-direction: reverse;}.fa-pulse,.fa-spin-pulse { -webkit-animation-name: fa-spin; animation-name: fa-spin; -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); animation-timing-function: var(--fa-animation-timing, steps(8));}@media (prefers-reduced-motion: reduce) { .fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse { -webkit-animation-delay: -1ms; animation-delay: -1ms; -webkit-animation-duration: 1ms; animation-duration: 1ms; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; transition-delay: 0s; transition-duration: 0s; }}@-webkit-keyframes fa-beat { 0%, 90% { -webkit-transform: scale(1); transform: scale(1); } 45% { -webkit-transform: scale(var(--fa-beat-scale, 1.25)); transform: scale(var(--fa-beat-scale, 1.25)); }}@keyframes fa-beat { 0%, 90% { -webkit-transform: scale(1); transform: scale(1); } 45% { -webkit-transform: scale(var(--fa-beat-scale, 1.25)); transform: scale(var(--fa-beat-scale, 1.25)); }}@-webkit-keyframes fa-bounce { 0% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 10% { -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 30% { -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 50% { -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 57% { -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 64% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 100% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); }}@keyframes fa-bounce { 0% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 10% { -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 30% { -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 50% { -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 57% { -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 64% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 100% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); }}@-webkit-keyframes fa-fade { 50% { opacity: var(--fa-fade-opacity, 0.4); }}@keyframes fa-fade { 50% { opacity: var(--fa-fade-opacity, 0.4); }}@-webkit-keyframes fa-beat-fade { 0%, 100% { opacity: var(--fa-beat-fade-opacity, 0.4); -webkit-transform: scale(1); transform: scale(1); } 50% { opacity: 1; -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); transform: scale(var(--fa-beat-fade-scale, 1.125)); }}@keyframes fa-beat-fade { 0%, 100% { opacity: var(--fa-beat-fade-opacity, 0.4); -webkit-transform: scale(1); transform: scale(1); } 50% { opacity: 1; -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); transform: scale(var(--fa-beat-fade-scale, 1.125)); }}@-webkit-keyframes fa-flip { 50% { -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); }}@keyframes fa-flip { 50% { -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); }}@-webkit-keyframes fa-shake { 0% { -webkit-transform: rotate(-15deg); transform: rotate(-15deg); } 4% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 8%, 24% { -webkit-transform: rotate(-18deg); transform: rotate(-18deg); } 12%, 28% { -webkit-transform: rotate(18deg); transform: rotate(18deg); } 16% { -webkit-transform: rotate(-22deg); transform: rotate(-22deg); } 20% { -webkit-transform: rotate(22deg); transform: rotate(22deg); } 32% { -webkit-transform: rotate(-12deg); transform: rotate(-12deg); } 36% { -webkit-transform: rotate(12deg); transform: rotate(12deg); } 40%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }}@keyframes fa-shake { 0% { -webkit-transform: rotate(-15deg); transform: rotate(-15deg); } 4% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 8%, 24% { -webkit-transform: rotate(-18deg); transform: rotate(-18deg); } 12%, 28% { -webkit-transform: rotate(18deg); transform: rotate(18deg); } 16% { -webkit-transform: rotate(-22deg); transform: rotate(-22deg); } 20% { -webkit-transform: rotate(22deg); transform: rotate(22deg); } 32% { -webkit-transform: rotate(-12deg); transform: rotate(-12deg); } 36% { -webkit-transform: rotate(12deg); transform: rotate(12deg); } 40%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }}@-webkit-keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }}@keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }}.fa-rotate-90 { -webkit-transform: rotate(90deg); transform: rotate(90deg);}.fa-rotate-180 { -webkit-transform: rotate(180deg); transform: rotate(180deg);}.fa-rotate-270 { -webkit-transform: rotate(270deg); transform: rotate(270deg);}.fa-flip-horizontal { -webkit-transform: scale(-1, 1); transform: scale(-1, 1);}.fa-flip-vertical { -webkit-transform: scale(1, -1); transform: scale(1, -1);}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical { -webkit-transform: scale(-1, -1); transform: scale(-1, -1);}.fa-rotate-by { -webkit-transform: rotate(var(--fa-rotate-angle, none)); transform: rotate(var(--fa-rotate-angle, none));}.fa-stack { display: inline-block; vertical-align: middle; height: 2em; position: relative; width: 2.5em;}.fa-stack-1x,.fa-stack-2x { bottom: 0; left: 0; margin: auto; position: absolute; right: 0; top: 0; z-index: var(--fa-stack-z-index, auto);}.svg-inline--fa.fa-stack-1x { height: 1em; width: 1.25em;}.svg-inline--fa.fa-stack-2x { height: 2em; width: 2.5em;}.fa-inverse { color: var(--fa-inverse, #fff);}.sr-only,.fa-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;}.svg-inline--fa .fa-primary { fill: var(--fa-primary-color, currentColor); opacity: var(--fa-primary-opacity, 1);}.svg-inline--fa .fa-secondary { fill: var(--fa-secondary-color, currentColor); opacity: var(--fa-secondary-opacity, 0.4);}.svg-inline--fa.fa-swap-opacity .fa-primary { opacity: var(--fa-secondary-opacity, 0.4);}.svg-inline--fa.fa-swap-opacity .fa-secondary { opacity: var(--fa-primary-opacity, 1);}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary { fill: black;}.fad.fa-inverse,.fa-duotone.fa-inverse { color: var(--fa-inverse, #fff);}')])),Q9=function(t){return t<0||1114111>>32-h3,Aa=o,Ta=M(function(t,n,e){for(;;){var r=S(Aa,Ca&n>>>t,e);if(r.$)return S(Aa,Ca&n,r.a);t=t-h3,n=n,e=r.a}}),Ma=T(function(t,n){var e=n.a,r=n.b,a=n.c,n=n.d;return t<0||-1>>5<<5)?q(S(Aa,Ca&t,n)):q(H(Ta,r,t,a))}),Ra={$:0},Sa={$:2},Ha=T(function(t,n){var e=S(yr,F(["relatedTarget","attributes","data-select-id","value"]),kr),e=S(T3,p(Sa),S(T3,Z4(function(t){return Z(t,n.Y)?Ra:Sa}),M7(F([S(T3,q,e),R3(d)]))));return S(L6,"focusout",e)}),Ba=S(yr,F(["target","value"]),kr),Va=S(N5,"keyCode",z5),Za=T(function(t,n){return S(P6,t,{$:2,a:n})}),Ya={$:6},Ua={$:5},ja={$:7},Oa=T(function(t,n){return S(Ft,"data-select-id",n.Y)}),Fa=u(function(t,n,e,r,a){var i,o,r=r.b?O:t.ef,a=1===a.$?d:(a=a.a,1===(i=n.e9).$?$0(a):S(Ma,i.a%a3(a),(i=a).b?H($a,i,O,0):b3));return j(F([S(m7,"autocomplete","off"),S(Ft,"autocorrect","off"),S(V9,t.ga,S(Ha,t,n)),S(V9,t.ga,(o=1===(i=a).$?xr("not Enter"):R3({$:9,a:i.a}),S(Za,"keyup",S(T3,function(t){return{a:t,b:!0}},S($7,function(t){switch(t){case 13:return o;case 38:return R3(ja);case 40:return R3(Ya);case 27:return R3(Ua);default:return xr("not ENTER")}},Va))))),S(V9,t.ga,function(n){return S(Za,"keypress",S(T3,function(t){return{a:t,b:!0}},S($7,function(t){switch(t){case 9:case 13:return S(p,xr("nothing selected"),S(Z4,S(t5,R3,O8),n));default:return xr("not TAB or ENTER")}},Va)))}(a)),S(V9,t.ga,S(za,"input",S(T3,j8,S(T3,U8,Ba)))),S(V9,t.ga,S(L6,"focus",R3(La))),S(Oa,t,n)]),j(F([X(qr)]),j(t.dW,r)))}),qa=m7("placeholder"),Wa=m7("value"),Ia=u(function(t,n,e,r,a){var i=1===(i=n.fO).$?S(p,"",S(Z4,t.iC,$0(r))):i.a;return F([S(Pa,j(V(Fa,t,n,e,r,a),F([Wa(i),qa(t.h5)])),O)])}),Ka=T(function(t,n){return S(G,F([X(Er),S(V9,t.ga,Z8({$:4,a:n}))]),F([function(t){return S(A6,j(F([R6("14"),z6("14"),M6("0 0 20 20")]),t.fP),F([S(e9,F([E6("M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z")]),O)]))}(t)]))}),Xa=T(function(t,n){return 1===t.hY.$?_(""):S(Ka,t,n)}),Ga=T(function(t,n){return S(G,j(F([X(Jr)]),t.d3),F([S(G,F([X(Qr)]),F([_(t.iC(n))])),S(Xa,t,n)]))}),Ja=T(function(t,n){return S(G,j(F([X(Dr)]),t.d4),S(I,Ga(t),n))}),Da=u(function(t,n,e,r,a){var i=S(p,"",n.fO);return F([S(Ja,t,r),S(Pa,j(V(Fa,t,n,e,r,a),j(F([Wa(i)]),r.b?O:F([qa(t.h5)]))),O)])}),Ea=u(function(t,n,e,r,a){var i=r.b&&t.hd?Y8(t):_(""),n=V(t.hp?Da:Ia,t,n,e,r,a);return S(G,j(F([X(Wr)]),t.dX),j(n,F([i])))}),Qa=e(function(t,n,e,r,a,i){var o=t.iC(i),c=1===(c=t.hr).$?_(o):(0,c.a)(i),r=S(j9,i,r)?t.en:O,f=1!==(f=n.e9).$&&Z(f.a%e,a)?t.dL:O;return S(G,j(F([X(Xr),X(Gr),S(Ft,"data-select-item",o),(e=t.ga({$:9,a:i}),S(L6,"mousedown",R3(e))),S(Oa,t,n)]),j(f,r)),F([c]))}),_a=R(function(t,n,e,r){var a=Z(e,O)?function(t){return""===t.hT?_(""):S(G,j(F([X(Xr)]),t.d6),F([_(t.hT)]))}(t):_(""),i=a3(e),o=!t.hU&&Z(e,O)?F([S(D,"display","none")]):O,n=S(f3,B(Qa,t,n,i,r),e);return S(G,j(F([X(Ir)]),j(o,t.cv)),S(b,a,n))}),ti=R(function(t,n,e,r){return 1===e.$?_(""):B(_a,t,n,e.a,r)}),ni=R(function(t,n,e,r){return S(G,F([X(Kr)]),F([B(ti,t,n,e,r)]))}),ei=R(function(t,n,e,r){var a=1===(a=t.gP).$||1===(i=n.fO).$||""===(i=i.a)?e:j(S(I,a.a,S(oa,t.gl,i)),e),i=B(wa,t,n.fO,a,r);return S(G,F([ea(n.Y),X(_r)]),F([V(Ea,t,n,e,r,i),S(G,F([X(na)]),F([S(G,F([X(ta)]),O)])),B(ni,t,n,i,r)]))}),ri=R(function(t,n,e,r){return B(ei,v0(t),Y0(n),e,r)}),ai=d2("caption"),ii=M(function(t,n,e){switch(n.$){case 0:return e;case 1:return(r=n.a)(e);case 2:return y((r=n.a)(e));case 3:var r=n.a;return t?y(r(e)):r(e);default:r=n.a;return t?r(e):y(r(e))}}),oi=T(function(t,n){for(;;){if(!n.b)return d;var e=n.a.db,r=n.b;if(Z(n.a.as,t))return q(e);t=t,n=r}}),ci=M(function(t,n,e){var r=t.b,t=S(oi,t.a,n);return 1===t.$?e:H(ii,r,t.a,e)}),fi=M(function(t,n,e){return H(ci,n,t.gL,e)}),ui=d2("tfoot"),si=d2("thead"),li={$:0},mi=M(function(t,n,e){return S(L6,"click",S(T3,e,H(M3,d5,R3(t),R3(n))))}),di=M(function(t,n,e){var r=t.a,a=t.b,i=e.as;switch(e.db.$){case 0:return{a:i,b:li,c:H(mi,r,a,n)};case 1:return{a:i,b:{$:1,a:!Z(i,r)},c:H(mi,i,!1,n)};case 2:return{a:i,b:{$:1,a:Z(i,r)},c:H(mi,i,!1,n)};case 3:return Z(i,r)?{a:i,b:{$:2,a:q(!a)},c:H(mi,i,!a,n)}:{a:i,b:{$:2,a:d},c:H(mi,i,!1,n)};default:return Z(i,r)?{a:i,b:{$:2,a:q(a)},c:H(mi,i,!a,n)}:{a:i,b:{$:2,a:d},c:H(mi,i,!1,n)}}}),pi=b2,hi=T(function(t,n){n=(0,n.dt)(t);return S(Ue,n.bf,n.bi)}),bi=M(function(t,n,e){return S(je,n(e),S(I,hi(e),t))}),vi=R(function(t,n,e,r){return{a:t(r),b:B(pi,bi,n,e,r)}}),gi=M(function(t,n,e){var r=t.iB,a=t.gL,i=t.gQ,o=i.eD(S(I,S(di,n,t.ga),a)),o=S(si,o.bf,F([S(je,O,o.bi)])),t=H(fi,t,n,e),n=H(h8,"tbody",i.eA,S(I,H(vi,r,a,i.el),t)),r=1===(e=i.eC).$?S(b,n,O):S(b,S(ui,e.a.bf,e.a.bi),S(b,n,O));return S(Ve,i.ip,1===(a=i.dz).$?S(b,o,r):S(b,S(ai,a.a.bf,a.a.bi),S(b,o,r)))}),yi=T(function(t,n){return U(n,{bN:q(t)})}),ki={$:0},wi=M(function(t,n,e){return{$:7,a:t,b:n,c:e}}),xi=function(t){return{$:1,a:t}},zi=T(function(t,n){return t*d3(n/t)}),Ni=T(function(t,n){var e=t/n;return Z(e,wn(e))?t:S(zi,n,t)}),Pi=v1,Li=T(function(t,n){return j(t&&S(r7,function(t){return"0"!==t&&"."!==t},H(Pi,b,O,n))?"-":"",n)}),$i=function(t){return t===1/0||t===-1/0},Ci=M(function(t,n,e){return 0>1,j(n,n),1&t?j(e,n):e):e}),Ai=T(function(t,n){return H(Ci,t,n,"")}),Ti=M(function(t,n,e){return j(e,S(Ai,t-V3(e),p0(n)))}),Mi=function(t){for(var n=t.length,e=Array(n),r=0;r "),S(tt,F([S(D,"color","#FFCA00")]),F([_("Intermediate")])),_(" -> "),S(tt,F([S(D,"color","#EF3159")]),F([_("Advanced")]))])),S(vn,O,F([_("You can hover or click on the dots to get more information. Click "),S(tt,F([S(D,"color","#EF3159")]),F([_("Clear filters")])),_(" to reset the list.")]))]),H(At,O,F([_("The didactic map of computational archaeology")]),S(Mt,!0,f8(D7(W4))))))),C=function(){var t;return 1===g.$?S(Nr,v,H(Ct,O,F([_("Error - this should never happen")]),S(Mt,!0,U(t=D7(q4),{h1:U(t.h1,{bw:q(1)})})))):(t=g.a,S(Nr,v,H(mt,O,F([S(g7,F([bn,{$:4,a:F([sn(q4)])}]),F([_("Close")]))]),H(o7,O,F([S(D9,O,F([S(z,"Name: ",t.as),S(z,"Author: ",S(e3,", ",t.b$)),S(z,"Year: ",t.eH),S(z,"Topic: ",t.iL),S(z,"Description: ",t.gW),S(z,"Language: ",t.hs),S(z,"Prog. language: ",S(e3,", ",t.cP)),S(z,"Tools: ",S(e3,", ",t.iK)),S(z,"Level: ",function(t){switch(t){case 0:return"beginner";case 1:return"intermediate";default:return"advanced"}}(t.fs)),S(z,"Material type: ",t.hy),S(z,"Tags: ",S(e3,", ",t.dd)),S(z,"Tags OpenArchaeo: ",S(e3,", ",t.is)),S(z,"Link: ",t.d_),S(z,"Citation: ",t.gH)]))]),H(Ct,O,F([_(t.Y)]),S(Kn,!0,S(Mt,!0,f8(D7(q4)))))))))}(),k=S(Nr,k,H(o7,O,F([S(vn,O,F([S(yn,O,F([_(n)]))])),S(vn,O,F([_("Please report this error on "),S(Q4,F([i8("https://github.com/sslarch/MapofComputationalArchaeology")]),F([_("GitHub")])),_(".")]))]),H(Ct,O,F([_("Error")]),S(Kn,!0,S(Mt,!1,f8(D7(F4))))))),A=s.b?S(n5,e,f):f,n=M(function(t,e,r){return vr({as:t,db:hr,dt:function(t){return n=e(t),S(I4,O,F([S(G,O,F([S(Et,F([ir,i7,bn,{$:4,a:F([i8(n),S(D,"margin-bottom","-5px"),S(D,"width","40px")])}]),F([V8(Dt)])),S(g7,F([ir,i7,bn,{$:4,a:F([sn({$:16,a:i(r(t))}),S(D,"margin-bottom","10px"),S(D,"width","40px")])}]),F([V8(Ut)]))]))]));var n}})}),c=function(t){var n=t.iB,e=t.ga,r=t.gQ;return{gL:S(I,function(t){return t},t.gL),gQ:r,iB:n,ga:e}}({gL:Y(c,500)<0?F([S(L,"ID",function(t){return t.Y}),B(x,"Material",function(t){return t.eH},function(t){return t.as},function(t){return t.b$}),H(n,"",function(t){return t.d_},function(t){return t.Y})]):F([S(L,"ID",function(t){return t.Y}),B(x,"Material",function(t){return t.eH},function(t){return t.as},function(t){return t.b$}),H(w,"Language",function(t){return t.cP},r),H(w,"Tags",function(t){return t.dd},a),H(n,"",function(t){return t.d_},function(t){return t.Y})]),gQ:U(at,{ip:F([S(D,"width","100%")])}),iB:function(t){return t.Y},ga:O0}),w=S(X9,F([Tt(300),F9(600),kn(F([Lc(p),y7(m.N)])),it(F([Lc(p),y7(m.P)])),S(un,U0,S(Nt,20,ct)),S(ln,j0,pt),S(cn,"mousemove",B(nn,X4,pt,dt,S(Nt,20,ct))),S(cn,"mouseup",H(tn,G4,pt,dt)),S(cn,"mouseleave",S(fn,mn(K4),dt)),Yt(F([S(D,"user-select","none"),S(D,"cursor",function(){if(x0(b).b)return"pointer";switch(d.$){case 0:case 1:return"grabbing";default:return"grab"}}())]))]),F([s6(F([F8,e7(10),c8,lt(9)])),m6(F([F8,e7(10),c8,lt(9)])),l6(F([F8,e7(10),c8])),d6(F([F8,e7(10),c8])),t1(Zt,function(t){return t.fu},function(t){return t.fu},-5,-5,F([S(D,"transform","translateX(-100%)")]),F([S(tt,F([S(D,"margin-right","5px")]),F([_(J(p)+"%")])),S(g7,F([{$:4,a:F([sn(J4),en])},bn,ir]),F([_("+")])),S(g7,F([{$:4,a:F([sn(D4),en])},bn,ir]),F([_("-")])),S(g7,F([{$:4,a:F([sn(E4),en])},bn,ir]),F([_("⨯")]))])),V(fr,function(t){return 0},function(t){return 100},0,0,F([(L=F([S(K,"width",J(p/100*600)),S(K,"height",J(p/100*300)),S(K,"viewBox","0 0 2000 1000")]),H(Q,"svg",j(F([S(K,"xmlns:xhtml","http://www.w3.org/1999/xhtml"),S(K,"xmlns:dc","http://purl.org/dc/elements/1.1/"),S(K,"xmlns:cc","http://creativecommons.org/ns#"),S(K,"xmlns:rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#"),S(K,"xmlns:svg","http://www.w3.org/2000/svg"),S(K,"xmlns","http://www.w3.org/2000/svg"),S(K,"xmlns:xlink","http://www.w3.org/1999/xlink"),S(K,"xmlns:sodipodi","http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"),S(K,"xmlns:inkscape","http://www.inkscape.org/namespaces/inkscape"),S(K,"id","fantasyMap"),S(K,"width","100%"),S(K,"height","100%"),S(K,"viewBox","0 0 2000 1000"),S(K,"version","1.1"),S(K,"background-color","#000000"),S(K,"sodipodi:docname","comparchmap.svg"),S(K,"inkscape:version","0.92.3 (2405546, 2018-03-11)")]),L),F([H(Q,"metadata",F([S(K,"id","metadata393")]),F([H(Q,"rdf:RDF",O,F([H(Q,"cc:Work",F([S(K,"rdf:about","")]),F([H(Q,"dc:format",O,F([E("image/svg+xml")])),H(Q,"dc:type",F([S(K,"rdf:resource","http://purl.org/dc/dcmitype/StillImage")]),O)]))]))])),H(Q,"sodipodi:namedview",F([S(K,"id","namedview1962"),S(K,"pagecolor","#ffffff"),S(K,"bordercolor","#666666"),S(K,"borderopacity","1.0"),S(K,"inkscape:showpageshadow","2"),S(K,"inkscape:pageopacity","0.0"),S(K,"inkscape:pagecheckerboard","0"),S(K,"inkscape:deskcolor","#d1d1d1"),S(K,"showgrid","false"),S(K,"inkscape:zoom","0.67048425"),S(K,"inkscape:cx","799.31644"),S(K,"inkscape:cy","394.06479"),S(K,"inkscape:window-width","1920"),S(K,"inkscape:window-height","1021"),S(K,"inkscape:window-x","0"),S(K,"inkscape:window-y","36"),S(K,"inkscape:window-maximized","1"),S(K,"inkscape:current-layer","layer1")]),O),H(Q,"defs",F([S(K,"id","defs198")]),F([H(Q,"g",F([S(K,"id","filters")]),F([H(Q,"filter",F([S(K,"id","dropShadow"),S(K,"name","Shadow 2"),S(K,"x","-0.0021458333"),S(K,"y","-0.0044831713"),S(K,"width","1.0047083"),S(K,"height","1.0107236")]),F([H(Q,"feGaussianBlur",F([S(K,"in","SourceAlpha"),S(K,"stdDeviation","2"),S(K,"id","feGaussianBlur2")]),O),H(Q,"feOffset",F([S(K,"dx","1"),S(K,"dy","2"),S(K,"id","feOffset4")]),O),H(Q,"feMerge",F([S(K,"id","feMerge10")]),F([H(Q,"feMergeNode",F([S(K,"id","feMergeNode6")]),O),H(Q,"feMergeNode",F([S(K,"in","SourceGraphic"),S(K,"id","feMergeNode8")]),O)]))])),H(Q,"filter",F([S(K,"id","dropShadow05"),S(K,"name","Shadow 0.5"),S(K,"x","-0.0012632986"),S(K,"y","-0.0027448815"),S(K,"width","1.0027051"),S(K,"height","1.0055948")]),F([H(Q,"feGaussianBlur",F([S(K,"in","SourceAlpha"),S(K,"stdDeviation",".5"),S(K,"id","feGaussianBlur13")]),O),H(Q,"feOffset",F([S(K,"dx",".5"),S(K,"dy",".7"),S(K,"id","feOffset15")]),O),H(Q,"feMerge",F([S(K,"id","feMerge21")]),F([H(Q,"feMergeNode",F([S(K,"id","feMergeNode17")]),O),H(Q,"feMergeNode",F([S(K,"in","SourceGraphic"),S(K,"id","feMergeNode19")]),O)]))])),H(Q,"filter",F([S(K,"id","paper"),S(K,"name","Paper"),S(K,"x","-0.014160214"),S(K,"y","-0.15921271"),S(K,"width","1.0283717"),S(K,"height","1.316945"),S(K,"filterUnits","objectBoundingBox"),S(K,"primitiveUnits","userSpaceOnUse"),S(K,"color-interpolation-filters","sRGB")]),F([H(Q,"feGaussianBlur",F([S(K,"stdDeviation","1 1"),S(K,"x","0%"),S(K,"y","0%"),S(K,"width","100%"),S(K,"height","100%"),S(K,"in","SourceGraphic"),S(K,"edgeMode","none"),S(K,"result","blur"),S(K,"id","feGaussianBlur24")]),O),H(Q,"feTurbulence",F([S(K,"type","fractalNoise"),S(K,"baseFrequency","0.05 0.05"),S(K,"numOctaves","4"),S(K,"seed","1"),S(K,"stitchTiles","stitch"),S(K,"result","turbulence"),S(K,"id","feTurbulence26")]),O),H(Q,"feDiffuseLighting",F([S(K,"surfaceScale","2"),S(K,"diffuseConstant","1"),S(K,"lighting-color","#707070"),S(K,"in","turbulence"),S(K,"result","diffuseLighting"),S(K,"id","feDiffuseLighting30")]),F([H(Q,"feDistantLight",F([S(K,"azimuth","45"),S(K,"elevation","20"),S(K,"id","feDistantLight28")]),O)])),H(Q,"feComposite",F([S(K,"in","diffuseLighting"),S(K,"in2","blur"),S(K,"operator","lighter"),S(K,"result","composite"),S(K,"id","feComposite32")]),O),H(Q,"feComposite",F([S(K,"in","composite"),S(K,"in2","SourceGraphic"),S(K,"operator","in"),S(K,"x","0%"),S(K,"y","0%"),S(K,"width","100%"),S(K,"height","100%"),S(K,"result","composite1"),S(K,"id","feComposite34")]),O)])),H(Q,"filter",F([S(K,"id","filter-sepia"),S(K,"name","Sepia"),S(K,"x","0"),S(K,"y","0"),S(K,"width","1"),S(K,"height","1")]),F([H(Q,"feColorMatrix",F([S(K,"values","0.393 0.769 0.189 0 0 0.349 0.686 0.168 0 0 0.272 0.534 0.131 0 0 0 0 0 1 0"),S(K,"id","feColorMatrix37")]),O)]))])),H(Q,"g",F([S(K,"id","deftemp")]),F([H(Q,"mask",F([S(K,"id","land")]),F([H(Q,"path",F([S(K,"d","m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2"),S(K,"fill","#ffffff"),S(K,"id","land_2")]),O),H(Q,"path",F([S(K,"d","m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9"),S(K,"fill","#ffffff"),S(K,"id","land_3")]),O),H(Q,"path",F([S(K,"d","m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2"),S(K,"fill","#ffffff"),S(K,"id","land_4")]),O),H(Q,"path",F([S(K,"d","m 905,166.3 c -1.3,0.7 -2.7,0.7 -3.7,0.4 -1,-0.4 -1.6,-1 -1.6,-3 0,-2 0.6,-5.4 1.8,-7.4 1.2,-2 2.8,-2.6 4.2,-1.3 1.3,1.3 2.3,4.7 2.1,7 -0.1,2.3 -1.5,3.7 -2.8,4.3"),S(K,"fill","#000000"),S(K,"id","land_5")]),O),H(Q,"path",F([S(K,"d","m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3"),S(K,"fill","#ffffff"),S(K,"id","land_6")]),O),H(Q,"path",F([S(K,"d","m 916.8,227.7 c -1.5,1 -4.1,2.6 -6,3.5 -1.8,0.8 -2.8,0.8 -4,0 -1.1,-0.9 -2.5,-2.5 -2.3,-4.7 0.2,-2.2 1.8,-4.8 4.3,-5.7 2.5,-0.8 5.9,0.2 7.7,1.4 1.8,1.1 2.2,2.5 2.2,3.3 0,0.8 -0.4,1.2 -1.9,2.2"),S(K,"fill","#000000"),S(K,"id","land_7")]),O),H(Q,"path",F([S(K,"d","m 1311,270.2 c -0.3,2.8 -1.7,4.8 -2.7,5.8 -1,1 -1.6,1 -3.3,0 -1.7,-1 -4.3,-3 -5,-5.8 -0.7,-2.9 0.7,-6.5 1.7,-8.5 1,-2 1.6,-2.4 3,-2.4 1.3,0 3.3,0.4 4.6,2.4 1.4,2 2,5.6 1.7,8.5"),S(K,"fill","#000000"),S(K,"id","land_10")]),O),H(Q,"path",F([S(K,"d","m 669.3,294.4 c -0.5,1.8 -1.6,2.9 -2.8,4.1 -1.2,1.2 -2.3,2.3 -3.9,1.4 -1.6,-0.9 -3.6,-3.9 -4.1,-6.6 -0.5,-2.6 0.5,-5 2.5,-5.8 2,-0.8 5,-0.2 6.7,1.3 1.6,1.5 2,3.9 1.6,5.6"),S(K,"fill","#000000"),S(K,"id","land_11")]),O),H(Q,"path",F([S(K,"d","m 897.3,300.8 c 1,1.2 1.4,3.2 0.5,4.9 -0.8,1.6 -2.8,3 -4.6,3 -1.9,0 -3.5,-1.4 -4.4,-2.5 -0.8,-1.2 -0.8,-2.2 0,-3.4 0.9,-1.1 2.5,-2.5 4.2,-3 1.7,-0.5 3.3,-0.1 4.3,1"),S(K,"fill","#000000"),S(K,"id","land_12")]),O),H(Q,"path",F([S(K,"d","m 741.2,343.5 c 0.5,1.5 0.1,2.5 -1.7,3.7 -1.8,1.1 -5.2,2.5 -7.3,2.8 -2.2,0.3 -3.2,-0.3 -3.7,-1.2 -0.5,-0.8 -0.5,-1.8 0.8,-3.8 1.4,-2 4,-5 5.7,-6.3 1.7,-1.4 2.3,-1 3.3,0.1 1,1.2 2.4,3.2 2.9,4.7"),S(K,"fill","#000000"),S(K,"id","land_13")]),O),H(Q,"path",F([S(K,"d","m 697.2,382.3 c -2.2,1.7 -5.2,1.7 -7,0.5 -1.9,-1.1 -2.5,-3.5 -2.4,-5.8 0.2,-2.3 1.2,-4.7 2.9,-6 1.6,-1.3 4,-1.7 6,-1 2,0.7 3.6,2.3 3.8,4.8 0.2,2.5 -1.2,5.9 -3.3,7.5"),S(K,"fill","#000000"),S(K,"id","land_14")]),O),H(Q,"path",F([S(K,"d","m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6"),S(K,"fill","#ffffff"),S(K,"id","land_15")]),O),H(Q,"path",F([S(K,"d","m 332.2,391.5 c 2.1,0.2 4.5,0.8 6.3,2.5 1.8,1.7 3.2,4.3 3.2,7.2 0,2.8 -1.4,5.8 -2,8 -0.7,2.1 -0.7,3.5 -0.2,4.5 0.5,1 1.5,1.6 4,2.3 2.5,0.7 6.5,1.3 8.8,1.8 2.4,0.5 3,0.9 4.4,1 1.3,0.2 3.3,0.2 4.6,0 1.4,-0.1 2,-0.5 3.9,-0.6 1.8,-0.2 4.8,-0.2 6.6,-0.4 1.9,-0.1 2.5,-0.5 4.4,-0.6 1.8,-0.2 4.8,-0.2 6.8,-0.4 2,-0.1 3,-0.5 4.5,-0.5 1.5,0 3.5,0.4 4.9,0.5 1.4,0 2.3,-0.1 3.1,-0.3 0.8,-0.2 1.7,-0.3 3.6,-1.6 1.9,-1.2 4.9,-3.6 6.3,-5.2 1.4,-1.7 1.3,-2.7 1.1,-3.7 -0.2,-1 -0.3,-2 -0.6,-3.8 -0.2,-1.9 -0.6,-4.5 0.2,-6.1 0.7,-1.6 2.6,-2.1 4.4,-2.6 1.8,-0.5 3.7,-1 4.9,-0.6 1.3,0.4 1.9,1.8 2.9,2.8 1,1 2.4,1.6 3.9,1.8 1.5,0.2 3.1,-0.2 5,0.4 1.8,0.6 3.8,2.1 5.8,3.6 2,1.5 4,3 4.5,5.1 0.5,2.1 -0.5,4.7 -0.8,6.6 -0.4,1.8 0,2.8 -0.4,4.6 -0.3,1.9 -1.3,4.5 -1.8,6.2 -0.5,1.7 -0.5,2.3 -0.7,3.7 -0.1,1.3 -0.5,3.3 -1.1,5 -0.7,1.6 -1.7,3 -2.4,3.8 -0.6,0.8 -1,1.2 -1.6,1.8 -0.7,0.7 -1.7,1.7 -3.5,2.5 -1.9,0.9 -4.5,1.5 -6.4,3 -1.8,1.5 -2.8,3.9 -2.6,5.9 0.1,2 1.5,3.6 1.3,5.6 -0.2,2 -1.8,4.4 -3.8,5.2 -2,0.8 -4.4,0.2 -6.2,-1.5 -1.8,-1.7 -3.2,-4.3 -5.2,-5.8 -2,-1.5 -4.6,-1.9 -6.8,-1 -2.2,0.8 -3.8,2.8 -4.7,5 -0.8,2.1 -0.8,4.5 -1.5,6.6 -0.6,2.2 -2,4.2 -3.3,5.4 -1.3,1.1 -2.7,1.5 -4.8,3 -2.2,1.5 -5.2,4.1 -6.9,6 -1.6,1.8 -2,2.8 -4.3,4.1 -2.3,1.4 -6.7,3 -9.2,3.9 -2.5,0.8 -3.1,0.8 -5,1.1 -1.8,0.4 -4.8,1 -7,1.4 -2.1,0.3 -3.5,0.3 -5.1,0.6 -1.7,0.4 -3.7,1 -5.9,1.2 -2.1,0.2 -4.5,-0.2 -6.5,0.2 -2,0.3 -3.6,1.3 -6,1.6 -2.3,0.4 -5.3,0 -7.1,-1.5 -1.9,-1.5 -2.5,-4.1 -2.4,-6.5 0.2,-2.3 1.2,-4.3 1.3,-6.2 0.1,-1.9 -0.8,-3.8 -1.6,-5.6 -0.8,-1.8 -1.7,-3.7 -2.2,-4.6 -0.6,-0.9 -1,-0.9 -2.8,-0.1 -1.8,0.9 -5.2,2.5 -7,3.5 -1.8,1 -2.2,1.4 -3.5,1.9 -1.3,0.5 -3.7,1.1 -5.8,2.6 -2.2,1.5 -4.2,3.9 -5.5,5 -1.4,1.2 -2,1.2 -3,1.9 -1,0.6 -2.4,2 -4.9,2.1 -2.5,0.2 -6.1,-0.8 -8.1,-1.6 -2,-0.9 -2.4,-1.5 -2.7,-2.4 -0.3,-0.8 -0.7,-1.8 -1.7,-3 -1,-1.1 -2.6,-2.5 -3.5,-3.8 -0.8,-1.3 -0.8,-2.7 -1.5,-3.8 -0.6,-1.2 -2,-2.2 -4.3,-2.5 -2.3,-0.4 -5.7,0 -7.5,0.3 -1.8,0.3 -2.2,0.7 -3.3,0.8 -1.2,0.2 -3.2,0.2 -4.9,0.5 -1.6,0.4 -3,1 -4.6,0.9 -1.7,-0.2 -3.7,-1.2 -5.7,-1.4 -2,-0.1 -4,0.5 -6.3,0 -2.4,-0.5 -5,-2.1 -5.9,-4 -0.8,-1.8 0.2,-3.8 0.2,-6 0,-2.1 -1,-4.5 -1.2,-6.3 -0.1,-1.8 0.5,-3.2 0.2,-4.8 -0.3,-1.7 -1.7,-3.7 -1.7,-5.7 0,-2 1.4,-4 3,-4.8 1.7,-0.9 3.7,-0.5 5.7,-1.2 2,-0.7 4,-2.3 5.7,-2.8 1.6,-0.5 3,0.1 5,0 2,-0.2 4.6,-1.2 6.5,-2.4 1.8,-1.1 2.8,-2.5 4.1,-3.3 1.4,-0.8 3,-1.2 4.7,-2.2 1.7,-1 3.3,-2.6 4.3,-3.8 1,-1.2 1.4,-1.8 3,-3.8 1.7,-2 4.7,-5.4 6.2,-7.7 1.5,-2.3 1.5,-3.7 1.7,-4.8 0.1,-1.2 0.5,-2.2 1.8,-3.4 1.3,-1.1 3.7,-2.5 6,-3 2.3,-0.5 4.7,-0.1 6.5,0.5 1.8,0.7 3.2,1.7 4.8,2.2 1.7,0.5 3.7,0.5 5.5,1 1.9,0.5 3.5,1.5 5,1.8 1.5,0.4 2.9,0 4.7,-1.3 1.8,-1.3 4.2,-3.7 5.3,-5.3 1.2,-1.7 1.2,-2.7 2.1,-3.8 0.9,-1.1 2.8,-2.2 4.6,-3.4 1.8,-1.2 3.7,-2.3 5.6,-2.1 1.9,0.3 3.9,1.9 5.9,2.6 2,0.7 4,0.3 6.2,0.5"),S(K,"fill","#000000"),S(K,"id","land_16")]),O),H(Q,"path",F([S(K,"d","m 634,385.2 c 3,0.5 4,1.1 4.5,1.8 0.5,0.7 0.5,1.3 0,2.3 -0.5,1 -1.5,2.4 -3.8,4 -2.4,1.7 -6,3.7 -7.9,6 -1.8,2.4 -1.8,5 -3,7 -1.1,2 -3.5,3.4 -4.6,5.2 -1.2,1.8 -1.2,4.2 -2.5,6.3 -1.4,2.2 -4,4.2 -7,4.4 -3,0.1 -6.4,-1.5 -8.2,-3.5 -1.8,-2 -2.2,-4.4 -1.7,-6.5 0.5,-2.2 1.9,-4.2 2.9,-5.5 1,-1.4 1.6,-2 2.1,-3.2 0.5,-1.2 0.9,-2.8 3,-4.5 2.2,-1.7 6.2,-3.3 8.4,-5.5 2.1,-2.2 2.5,-4.8 3,-6.5 0.5,-1.7 1.1,-2.3 4,-2.5 2.8,-0.2 7.8,0.2 10.8,0.7"),S(K,"fill","#000000"),S(K,"id","land_17")]),O),H(Q,"path",F([S(K,"d","m 2273.5,455 c 0.5,0.3 1,0.7 1.8,2.7 0.7,2 1.7,5.6 1.2,8.5 -0.5,2.8 -2.5,4.8 -4.7,5.8 -2.1,1 -4.5,1 -6,-1.3 -1.5,-2.4 -2.1,-7 -1,-10.2 1.2,-3.2 4.2,-4.8 6,-5.5 1.7,-0.7 2.2,-0.3 2.7,0"),S(K,"fill","#000000"),S(K,"id","land_18")]),O),H(Q,"path",F([S(K,"d","m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5"),S(K,"fill","#ffffff"),S(K,"id","land_19")]),O),H(Q,"path",F([S(K,"d","m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5"),S(K,"fill","#ffffff"),S(K,"id","land_20")]),O),H(Q,"path",F([S(K,"d","m 760.2,538.3 c -1.5,0.7 -2.9,0.7 -4.4,-0.1 -1.5,-0.9 -3.1,-2.5 -3.6,-4.4 -0.5,-1.8 0.1,-3.8 2.1,-5 2,-1.1 5.4,-1.5 7.4,-0.3 2,1.2 2.6,3.8 2.1,5.8 -0.5,2 -2.1,3.4 -3.6,4"),S(K,"fill","#000000"),S(K,"id","land_21")]),O),H(Q,"path",F([S(K,"d","m 823.5,524.8 c -0.2,2.5 -1.8,4.9 -4,5.7 -2.2,0.8 -4.8,0.2 -6.3,-0.7 -1.5,-0.8 -1.9,-1.8 -0.9,-3.8 1,-2 3.4,-5 4.9,-6.7 1.5,-1.6 2.1,-2 2.6,-2.1 0.5,-0.2 0.9,-0.2 1.7,1.1 0.8,1.4 2.2,4 2,6.5"),S(K,"fill","#000000"),S(K,"id","land_22")]),O),H(Q,"path",F([S(K,"d","m 114.2,538.7 c -0.5,1.6 -1.9,4 -3.4,5.5 -1.5,1.5 -3.1,2.1 -5,2 -1.8,-0.2 -3.8,-1.2 -4.8,-2.9 -1,-1.6 -1,-4 0.7,-6.1 1.6,-2.2 5,-4.2 7.3,-4.5 2.3,-0.4 3.7,1 4.5,2.1 0.8,1.2 1.2,2.2 0.7,3.9"),S(K,"fill","#000000"),S(K,"id","land_23")]),O),H(Q,"path",F([S(K,"d","m 651.8,555.5 c -2.1,0.8 -4.5,-0.8 -5.8,-3 -1.3,-2.2 -1.7,-4.8 -0.8,-6.8 0.8,-2 2.8,-3.4 4.3,-3.9 1.5,-0.5 2.5,-0.1 3.8,1 1.4,1.2 3,3.2 2.9,5.9 -0.2,2.6 -2.2,6 -4.4,6.8"),S(K,"fill","#000000"),S(K,"id","land_24")]),O),H(Q,"path",F([S(K,"d","m 801.2,544 c 0.1,2.3 -0.5,4.7 -1.5,6.2 -1,1.5 -2.4,2.1 -4.4,2.1 -2,0 -4.6,-0.6 -6.5,-1.8 -1.8,-1.2 -2.8,-2.8 -3.1,-4.8 -0.4,-2 0,-4.4 0.8,-5.9 0.8,-1.5 2.2,-2.1 4.3,-2.5 2.2,-0.3 5.2,-0.3 7.2,0.9 2,1.1 3,3.5 3.2,5.8"),S(K,"fill","#000000"),S(K,"id","land_25")]),O),H(Q,"path",F([S(K,"d","m 759.7,572.8 c 2,0.2 4.6,-2.8 6.6,-3.6 2,-0.9 3.4,0.5 4.2,1.5 0.8,1 1.2,1.6 0.5,2.8 -0.7,1.2 -2.3,2.8 -4.5,3.8 -2.2,1 -4.8,1.4 -6.7,2 -1.8,0.7 -2.8,1.7 -4.6,2.9 -1.9,1.1 -4.5,2.5 -7.2,2.3 -2.7,-0.2 -5.3,-1.8 -6.8,-3.5 -1.5,-1.7 -1.9,-3.3 -0.9,-5.7 1,-2.3 3.4,-5.3 6,-7 2.7,-1.6 5.7,-2 7.9,-0.5 2.1,1.5 3.5,4.9 5.5,5"),S(K,"fill","#000000"),S(K,"id","land_26")]),O),H(Q,"path",F([S(K,"d","m 1950,586.8 c 3,0.5 5,1.9 6.9,2.5 1.9,0.7 3.8,0.7 5.6,0.7 1.8,0 3.7,0 5.3,0.5 1.5,0.5 2.9,1.5 4.9,1.7 2,0.1 4.6,-0.5 6.6,-1.2 2,-0.7 3.4,-1.3 5,-1.3 1.7,0 3.7,0.6 5.2,0.8 1.5,0.2 2.5,-0.2 4.7,-0.3 2.1,-0.2 5.5,-0.2 8.3,0.8 2.8,1 5.2,3 6.8,4.2 1.7,1.1 2.7,1.5 4.2,2.1 1.5,0.7 3.5,1.7 5.3,2 1.9,0.2 3.5,-0.3 5.2,-0.8 1.7,-0.5 3.3,-1 5.2,-3.1 1.8,-2.1 3.8,-5.7 6.3,-6.6 2.5,-0.8 5.5,1.2 7.2,3 1.6,1.9 2,3.5 2.3,5.2 0.3,1.7 0.7,3.3 1,5 0.3,1.7 0.7,3.3 0.9,4.8 0.3,1.4 0.4,2.5 0.6,3.7 0.2,1.2 0.3,2.3 1.8,3.6 1.4,1.2 4,2.6 5.7,4.1 1.7,1.5 2.3,3.1 3.3,4.3 1,1.2 2.4,1.8 4,3.3 1.7,1.5 3.7,3.9 5.2,5 1.5,1.2 2.5,1.2 4.3,2.2 1.9,1 4.5,3 5.4,4.9 0.8,1.9 -0.2,3.8 -1.2,5.6 -1,1.8 -2,3.7 -3.7,4.8 -1.6,1 -4,1.4 -6,2.5 -2,1.2 -3.6,3.2 -5,4.2 -1.3,1 -2.3,1 -3.3,0.8 -1,-0.1 -2,-0.5 -4.5,-0.3 -2.5,0.2 -6.5,0.8 -9,0.3 -2.5,-0.5 -3.5,-2.1 -6.2,-2.5 -2.6,-0.3 -7,0.7 -9.5,1 -2.5,0.4 -3.1,0 -4.1,0 -1,0 -2.4,0.4 -4.2,2.2 -1.8,1.8 -4.2,5.2 -5.3,7.3 -1.2,2.2 -1.2,3.2 -2.9,4.9 -1.6,1.6 -5,4 -7.1,5 -2.2,1 -3.2,0.6 -4.9,-0.2 -1.6,-0.8 -4,-2.2 -5.5,-2.7 -1.5,-0.5 -2.1,-0.1 -4.1,0 -2,0.2 -5.4,0.2 -7.5,1.4 -2.2,1.1 -3.2,3.5 -4.7,5 -1.5,1.5 -3.5,2.1 -5,3.3 -1.5,1.2 -2.5,2.8 -4,4 -1.5,1.2 -3.5,1.8 -4.8,2.8 -1.4,1 -2,2.4 -2.2,4 -0.2,1.7 0.2,3.7 1,5.2 0.8,1.5 2.2,2.5 4.5,3 2.3,0.5 5.7,0.5 7.7,0.3 2,-0.1 2.6,-0.5 4.6,0.5 2,1 5.4,3.4 6.7,5.7 1.3,2.3 0.7,4.7 0.5,6.8 -0.2,2.2 0.2,4.2 0,5.4 -0.2,1.1 -0.8,1.5 -1.3,2.8 -0.5,1.3 -0.9,3.7 -2.7,6.3 -1.8,2.7 -5.2,5.7 -7.5,6.8 -2.3,1.1 -3.7,0.2 -5,-0.6 -1.3,-0.8 -2.7,-1.7 -3.7,-2.7 -1,-1.1 -1.6,-2.5 -2.6,-3.8 -1,-1.3 -2.4,-2.7 -4.9,-3 -2.5,-0.3 -6.1,0.3 -8.5,1.8 -2.3,1.5 -3.3,3.9 -3.6,6 -0.4,2.2 0,4.2 -0.2,5.7 -0.2,1.5 -0.8,2.5 -1,3.5 -0.2,1 0.2,2 0.7,2.8 0.5,0.9 1.1,1.5 1.8,3.5 0.7,2 1.3,5.4 2.8,7.4 1.5,2 3.9,2.6 5.2,4.6 1.3,2 1.7,5.4 1.2,7.5 -0.5,2.2 -1.9,3.2 -4.2,3.7 -2.3,0.5 -5.7,0.5 -7.8,-0.3 -2.2,-0.9 -3.2,-2.5 -3.7,-3.9 -0.5,-1.3 -0.5,-2.3 -1.5,-3.8 -1,-1.5 -3,-3.5 -4,-5.3 -1,-1.9 -1,-3.5 -2.2,-5.5 -1.1,-2 -3.5,-4.4 -4.3,-6.7 -0.8,-2.3 -0.2,-4.7 0,-6.2 0.2,-1.5 -0.2,-2.1 -1.7,-3 -1.5,-0.8 -4.1,-1.8 -6.5,-1.8 -2.3,0 -4.3,1 -5.8,3 -1.5,2 -2.5,5 -3.7,7 -1.1,2 -2.5,3 -3.1,4 -0.7,1 -0.7,2 -0.5,3.5 0.1,1.5 0.5,3.5 0.3,5 -0.2,1.5 -0.8,2.5 -1.2,3.5 -0.3,1 -0.3,2 -1.5,4 -1.1,2 -3.5,5 -5.5,6.3 -2,1.4 -3.6,1 -4.1,-0.6 -0.5,-1.7 0.1,-4.7 -0.7,-7.2 -0.8,-2.5 -3.2,-4.5 -4.5,-5.8 -1.3,-1.4 -1.7,-2 -2.2,-2.9 -0.5,-0.8 -1.1,-1.8 -1.5,-2.8 -0.3,-1 -0.3,-2 -0.1,-3 0.1,-1 0.5,-2 0.1,-4.7 -0.3,-2.6 -1.3,-7 -2.5,-9.6 -1.1,-2.7 -2.5,-3.7 -3.1,-4.5 -0.7,-0.9 -0.7,-1.5 -0.5,-2.4 0.1,-0.8 0.5,-1.8 0.5,-4 0,-2.1 -0.4,-5.5 -0.8,-8.3 -0.4,-2.8 -0.9,-5.2 -1.4,-7.5 -0.5,-2.3 -1,-4.7 -1.4,-6.1 -0.4,-1.4 -0.8,-1.9 -1.1,-2.4 -0.3,-0.5 -0.7,-1 -1.3,-2.6 -0.7,-1.6 -1.7,-4.2 -2,-6.7 -0.4,-2.5 0,-4.9 0.1,-6.4 0.2,-1.5 0.2,-2.1 -0.1,-2.6 -0.4,-0.5 -1,-0.9 -2.4,-2.7 -1.3,-1.8 -3.3,-5.2 -4,-7.8 -0.6,-2.7 0,-4.7 -1.6,-6.5 -1.7,-1.9 -5.7,-3.5 -6.4,-5.5 -0.6,-2 2,-4.4 4.5,-4.2 2.5,0.2 4.9,2.8 7.7,2.8 2.8,0 6.2,-2.6 8.2,-4 2,-1.3 2.6,-1.3 3,-3.3 0.3,-2 0.3,-6 1.1,-8.8 0.9,-2.9 2.5,-4.5 5.4,-5.4 2.8,-0.8 6.8,-0.8 9.7,-1.2 2.9,-0.4 4.8,-1.3 6.6,-2.1 1.8,-0.8 3.7,-1.7 3.9,-4.4 0.3,-2.8 -1.1,-7.4 -2.2,-9.9 -1.2,-2.5 -2.2,-2.9 -2.9,-3.4 -0.6,-0.5 -1,-1.1 -0.8,-3 0.2,-1.8 0.8,-4.8 3.2,-5.8 2.3,-1 6.3,0 8.5,0.2 2.1,0.1 2.5,-0.5 4,-1.4 1.5,-0.8 4.1,-1.8 6.3,-2.1 2.2,-0.4 3.8,0 5.5,-0.4 1.7,-0.3 3.3,-1.3 4.2,-3.5 0.8,-2.1 0.8,-5.5 1.1,-7.5 0.4,-2 1,-2.6 3.4,-3.1 2.3,-0.5 6.3,-0.9 9.3,-0.4"),S(K,"fill","#000000"),S(K,"id","land_27")]),O),H(Q,"path",F([S(K,"d","m 1589.8,717 c -0.1,0.3 -0.5,0.7 -1.1,1 -0.7,0.3 -1.7,0.7 -3.9,0.3 -2.1,-0.3 -5.5,-1.3 -7,-3.1 -1.5,-1.9 -1.1,-4.5 0,-5.9 1.2,-1.3 3.2,-1.3 5.4,0 2.1,1.4 4.5,4 5.6,5.5 1.2,1.5 1.2,1.9 1,2.2"),S(K,"fill","#000000"),S(K,"id","land_28")]),O),H(Q,"path",F([S(K,"d","m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0"),S(K,"fill","#ffffff"),S(K,"id","land_29")]),O),H(Q,"path",F([S(K,"d","m 2050.8,740.3 c 2.2,0.4 4.2,2 5.4,3.7 1.1,1.7 1.5,3.3 1,5 -0.5,1.7 -1.9,3.3 -3.4,3.8 -1.5,0.5 -3.1,-0.1 -5,-1.5 -1.8,-1.3 -3.8,-3.3 -4.6,-5 -0.9,-1.6 -0.5,-3 0.8,-4.1 1.3,-1.2 3.7,-2.2 5.8,-1.9"),S(K,"fill","#000000"),S(K,"id","land_30")]),O),H(Q,"path",F([S(K,"d","m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5"),S(K,"fill","#ffffff"),S(K,"id","land_31")]),O),H(Q,"path",F([S(K,"d","m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5"),S(K,"fill","#ffffff"),S(K,"id","land_32")]),O),H(Q,"path",F([S(K,"d","m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7"),S(K,"fill","#ffffff"),S(K,"id","land_33")]),O),H(Q,"path",F([S(K,"d","m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9"),S(K,"fill","#ffffff"),S(K,"id","land_34")]),O),H(Q,"path",F([S(K,"d","m 89.7,1041.7 c -1.7,1 -4.7,2.6 -6.4,3.3 -1.6,0.7 -2,0.3 -2.6,-1.5 -0.7,-1.8 -1.7,-5.2 -1.4,-7 0.4,-1.8 2,-2.2 3.7,-2.5 1.7,-0.3 3.3,-0.7 4.8,0.3 1.5,1 2.9,3.4 3.4,4.7 0.5,1.3 0.1,1.7 -1.5,2.7"),S(K,"fill","#000000"),S(K,"id","land_35")]),O),H(Q,"path",F([S(K,"d","m 2221,1040.3 c 1.7,0 4.3,-0.6 6,-0.8 1.7,-0.2 2.3,0.2 3.8,0.2 1.5,0 3.9,-0.4 5.9,-0.2 2,0.2 3.6,0.8 5.5,0.8 1.8,0 3.8,-0.6 6,-0.3 2.1,0.3 4.5,1.7 7.3,2 2.8,0.3 6.2,-0.3 8.3,-1 2.2,-0.7 3.2,-1.3 4.7,-1.7 1.5,-0.3 3.5,-0.3 4.7,-0.5 1.1,-0.1 1.5,-0.5 2.6,-0.5 1.2,0 3.2,0.4 4.5,1 1.4,0.7 2,1.7 2.7,4.2 0.7,2.5 1.3,6.5 0.8,9.7 -0.5,3.1 -2.1,5.5 -2.6,7.3 -0.5,1.8 0.1,3.2 0.3,4.2 0.2,1 -0.2,1.6 -1.7,3.1 -1.5,1.5 -4.1,3.9 -6.6,5 -2.5,1.2 -4.9,1.2 -6.5,1.5 -1.7,0.4 -2.7,1 -4,0.9 -1.4,-0.2 -3,-1.2 -4.7,-1.9 -1.7,-0.6 -3.3,-1 -5.2,-2 -1.8,-1 -3.8,-2.6 -5,-4 -1.1,-1.3 -1.5,-2.3 -3.6,-4 -2.2,-1.6 -6.2,-4 -8.7,-5 -2.5,-1 -3.5,-0.6 -4.5,0 -1,0.7 -2,1.7 -3.5,2.5 -1.5,0.9 -3.5,1.5 -6.2,1.5 -2.6,0 -6,-0.6 -8.5,-1.8 -2.5,-1.2 -4.1,-2.8 -5,-4.6 -1,-1.7 -1.1,-3.6 -1.3,-5.4 -0.2,-1.8 -0.3,-3.7 1.6,-5.6 1.9,-1.9 5.9,-3.9 8.2,-4.6 2.4,-0.6 3,0 4.7,0"),S(K,"fill","#000000"),S(K,"id","land_36")]),O),H(Q,"path",F([S(K,"d","m 1537.5,1094.3 c 1.8,1.4 2.2,3 1.6,4.5 -0.6,1.5 -2.1,2.9 -3.6,4.2 -1.5,1.3 -3,2.7 -4.9,2.7 -1.9,0 -4.3,-1.4 -5.6,-3 -1.3,-1.7 -1.7,-3.7 -1.7,-5.2 0,-1.5 0.4,-2.5 1.4,-3.5 1,-1 2.6,-2 5.1,-2 2.5,0 5.9,1 7.7,2.3"),S(K,"fill","#000000"),S(K,"id","land_37")]),O),H(Q,"path",F([S(K,"d","m 1603.5,1093.5 c 1.5,-0.2 2.5,-0.8 4.8,-1 2.4,-0.2 6,0.2 9,0.2 3,0 5.4,-0.4 7.7,-0.7 2.3,-0.3 4.7,-0.7 6.3,0.3 1.7,1 2.7,3.4 2.7,5.5 0,2.2 -1,4.2 0.2,6.5 1.1,2.4 4.5,5 5.6,8.2 1.2,3.2 0.2,6.8 -0.3,9 -0.5,2.2 -0.5,2.8 -1.8,4.2 -1.4,1.3 -4,3.3 -6.3,4.7 -2.2,1.4 -4.1,2.3 -5.9,3.1 -1.8,0.8 -3.7,1.7 -5.9,1.3 -2.3,-0.5 -4.9,-2.1 -6.3,-3.6 -1.3,-1.5 -1.3,-2.9 -3,-4.5 -1.6,-1.7 -5,-3.7 -7.1,-5.4 -2.2,-1.6 -3.2,-3 -4.2,-4.3 -1,-1.3 -2,-2.7 -2.8,-3.5 -0.9,-0.8 -1.5,-1.2 -2,-1.5 -0.5,-0.3 -0.9,-0.7 -1,-3 -0.2,-2.3 -0.2,-6.7 0,-9.3 0.1,-2.7 0.5,-3.7 1.3,-4.5 0.8,-0.9 2.2,-1.5 3.8,-1.7 1.7,-0.2 3.7,0.2 5.2,0"),S(K,"fill","#000000"),S(K,"id","land_38")]),O),H(Q,"path",F([S(K,"d","m 1417.7,1123.6 c 2,-0.1 2.6,0.4 3.3,0.9 0.7,0.5 1.3,1 1.3,3.3 0,2.2 -0.6,6.2 -2.6,8.5 -2,2.4 -5.4,3 -7.7,3 -2.3,0 -3.7,-0.6 -4.5,-2.8 -0.8,-2.2 -1.2,-5.8 -1.3,-7.7 -0.2,-1.8 -0.2,-1.8 0.3,-2.1 0.5,-0.4 1.5,-1 3.7,-1.7 2.1,-0.7 5.5,-1.3 7.5,-1.4"),S(K,"fill","#000000"),S(K,"id","land_39")]),O),H(Q,"path",F([S(K,"d","m 1695.2,1135.2 c 0.5,2.5 0.1,6.1 -0.5,8.3 -0.7,2.2 -1.7,2.8 -1.7,4.5 0,1.7 1,4.3 -0.2,6.8 -1.1,2.5 -4.5,4.9 -7.3,4.9 -2.8,0 -5.2,-2.4 -7.7,-3.5 -2.5,-1.2 -5.1,-1.2 -7.1,-2.4 -2,-1.1 -3.4,-3.5 -3.4,-5.7 0,-2.3 1.4,-4.4 2.7,-6.6 1.3,-2.2 2.7,-4.3 4.5,-5.4 1.8,-1.1 4.2,-1.1 6,-1.9 1.8,-0.9 3.2,-2.5 4.3,-3.5 1.2,-1 2.2,-1.4 3.4,-1.4 1.1,0 2.5,0.4 3.8,1.2 1.3,0.8 2.7,2.2 3.2,4.7"),S(K,"fill","#000000"),S(K,"id","land_40")]),O),H(Q,"path",F([S(K,"d","m 1914,1126 c 0.7,1.3 1.3,3.7 0.8,6.2 -0.5,2.5 -2.1,5.1 -3,6.8 -0.8,1.7 -0.8,2.3 -0.8,3.2 0,0.8 0,1.8 -1,3.1 -1,1.4 -3,3 -4.2,5.2 -1.1,2.2 -1.5,4.8 -3.3,6.5 -1.8,1.7 -5.2,2.3 -7.5,3 -2.3,0.7 -3.7,1.3 -5.7,0.8 -2,-0.5 -4.6,-2.1 -4.8,-5 -0.2,-2.8 2.2,-6.8 4.3,-9 2.2,-2.1 4.2,-2.5 6,-4.1 1.9,-1.7 3.5,-4.7 4.2,-6.4 0.7,-1.6 0.3,-2 1.7,-3.8 1.3,-1.8 4.3,-5.2 6.5,-6.8 2.1,-1.7 3.5,-1.7 4.5,-1.5 1,0.1 1.6,0.5 2.3,1.8"),S(K,"fill","#000000"),S(K,"id","land_41")]),O),H(Q,"path",F([S(K,"d","m 486,1160 c -0.7,-2 -0.3,-5 1.3,-7 1.7,-2 4.7,-3 5.4,-1 0.6,2 -1,7 -2.7,9 -1.7,2 -3.3,1 -4,-1"),S(K,"fill","#000000"),S(K,"id","land_42")]),O),H(Q,"path",F([S(K,"d","m 2216.8,1162 c -1.6,2.7 -5.4,7.3 -7.3,9.7 -1.9,2.3 -1.9,2.3 -1.9,2.3 0,0 0,0 -0.4,0 -0.4,0 -1.3,0 -1.8,0 -0.4,0 -0.4,0 -0.4,0 0,0 0,0 0,0 0,0 0,0 -0.2,-1.8 -0.1,-1.9 -0.5,-5.5 -0.1,-8.2 0.3,-2.7 1.3,-4.3 3.5,-5.2 2.1,-0.8 5.5,-0.8 7.5,-0.5 2,0.4 2.6,1 1.1,3.7"),S(K,"fill","#000000"),S(K,"id","land_43")]),O)])),H(Q,"mask",F([S(K,"id","water")]),F([H(Q,"rect",F([S(K,"x","0"),S(K,"y","0"),S(K,"width","100%"),S(K,"height","100%"),S(K,"fill","#ffffff"),S(K,"id","rect82")]),O),H(Q,"path",F([S(K,"d","m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2"),S(K,"fill","#000000"),S(K,"id","water_2")]),O),H(Q,"path",F([S(K,"d","m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9"),S(K,"fill","#000000"),S(K,"id","water_3")]),O),H(Q,"path",F([S(K,"d","m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2"),S(K,"fill","#000000"),S(K,"id","water_4")]),O),H(Q,"path",F([S(K,"d","m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3"),S(K,"fill","#000000"),S(K,"id","water_6")]),O),H(Q,"path",F([S(K,"d","m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6"),S(K,"fill","#000000"),S(K,"id","water_15")]),O),H(Q,"path",F([S(K,"d","m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5"),S(K,"fill","#000000"),S(K,"id","water_19")]),O),H(Q,"path",F([S(K,"d","m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5"),S(K,"fill","#000000"),S(K,"id","water_20")]),O),H(Q,"path",F([S(K,"d","m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0"),S(K,"fill","#000000"),S(K,"id","water_29")]),O),H(Q,"path",F([S(K,"d","m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5"),S(K,"fill","#000000"),S(K,"id","water_31")]),O),H(Q,"path",F([S(K,"d","m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5"),S(K,"fill","#000000"),S(K,"id","water_32")]),O),H(Q,"path",F([S(K,"d","m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7"),S(K,"fill","#000000"),S(K,"id","water_33")]),O),H(Q,"path",F([S(K,"d","m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9"),S(K,"fill","#000000"),S(K,"id","water_34")]),O)])),H(Q,"g",F([S(K,"id","textPaths")]),F([H(Q,"path",F([S(K,"id","textPath_label1"),S(K,"d","m 1336,227 34,0.3 c 34,0.2 102,0.7 175.3,1.2 73.4,0.4 152,0.7 191.4,0.8 l 39.3,0.2")]),O),H(Q,"path",F([S(K,"id","textPath_label2"),S(K,"d","m 1259,508 38.2,-8.3 c 38.1,-8.4 114.5,-25 172.9,-24.5 58.4,0.5 98.8,18.1 140.5,37.3 41.7,19.2 84.5,39.8 106,50.2 L 1738,573")]),O),H(Q,"path",F([S(K,"id","textPath_label4"),S(K,"d","m 1230,665 20.5,25.4 c 20.5,25.3 61.4,76.1 111.7,98.5 50.2,22.3 109.8,16.3 169,7.8 59.1,-8.5 117.9,-19.6 176,-33.8 58.1,-14.2 115.5,-31.6 144.1,-40.2 L 1880,714")]),O),H(Q,"path",F([S(K,"id","textPath_label5"),S(K,"d","m 674,809 10.7,-76.3 c 10.6,-76.4 32,-229 97.8,-347.2 65.8,-118.2 176.2,-201.8 231.3,-243.7 L 1069,100")]),O),H(Q,"path",F([S(K,"id","textPath_label6"),S(K,"d","m 434,617 18.8,21 c 18.8,21 56.4,63 103.7,79.8 47.4,16.9 104.5,8.5 157.2,-16.3 52.7,-24.9 101,-66.2 125.1,-86.8 L 863,594")]),O),H(Q,"path",F([S(K,"id","textPath_label7"),S(K,"d","m 447,197 33,-2.6 c 32.9,-2.6 98.8,-7.8 162.8,-9.8 64,-2 126.1,-0.8 157.2,-0.2 l 31,0.6")]),O),H(Q,"path",F([S(K,"id","textPath_label8"),S(K,"d","m 1386,532 31.3,-8.5 c 31.4,-8.5 94,-25.5 157.9,-46.7 63.8,-21.1 128.8,-46.5 161.3,-59.1 L 1769,405")]),O),H(Q,"path",F([S(K,"id","textPath_label9"),S(K,"d","M 36,295 73.8,273.3 C 111.7,251.7 187.3,208.3 225.5,150 263.7,91.7 264.3,18.3 264.7,-18.3 L 265,-55")]),O),H(Q,"path",F([S(K,"id","textPath_label10"),S(K,"d","m 943.5,538 h 30.1 c 30.1,0 90.2,0 161,36.2 70.7,36.1 152.1,108.5 192.7,144.6 L 1368,755")]),O),H(Q,"path",F([S(K,"id","textPath_label11"),S(K,"d","m -101,284 26.7,32.5 c 26.6,32.5 80,97.5 125.8,130 45.8,32.5 84,32.5 103.1,32.5 h 19.2")]),O),H(Q,"path",F([S(K,"id","textPath_label14"),S(K,"d","m 1271,463 26.1,-6.2 c 26.1,-6.2 78.2,-18.6 127.9,-41.7 49.6,-23.2 96.8,-57.2 120.4,-74.1 l 23.6,-17")]),O),H(Q,"path",F([S(K,"id","textPath_label15"),S(K,"d","m 1554,179 24.1,7.2 c 24,7.3 72.2,21.7 119.5,37.2 47.3,15.5 93.9,32.1 117.1,40.3 l 23.3,8.3")]),O),H(Q,"path",F([S(K,"id","textPath_label16"),S(K,"d","m 650,930 29.7,12.5 c 29.7,12.4 89.1,37.3 138.6,58 49.5,20.7 89.1,37.1 108.9,45.3 l 19.8,8.2")]),O),H(Q,"path",F([S(K,"id","textPath_label17"),S(K,"d","m -6.6,1063 h 21.8 c 21.7,0 65.3,0 123.2,9.8 57.9,9.9 130.3,29.5 166.4,39.4 l 36.2,9.8")]),O),H(Q,"path",F([S(K,"id","textPath_label18"),S(K,"d","m 496.2,873.5 27.5,-6 c 27.5,-6 82.5,-18 135,-46.5 52.5,-28.5 102.5,-73.5 127.5,-96 l 25,-22.5")]),O),H(Q,"path",F([S(K,"id","textPath_label19"),S(K,"d","m 257.2,950 23.1,3.8 c 23,3.7 69.2,11.2 113.3,31 44.1,19.9 86.3,52 107.3,68.1 L 522,1069")]),O),H(Q,"path",F([S(K,"id","textPath_label20"),S(K,"d","m 1981.2167,699 h 197.5666")]),O),H(Q,"path",F([S(K,"id","textPath_label21"),S(K,"d","m 1837,842 11.3,-26.3 c 11.4,-26.4 34,-79 65.1,-105.4 31.1,-26.3 70.6,-26.3 90.4,-26.3 h 19.7")]),O),H(Q,"path",F([S(K,"id","textPath_label22"),S(K,"d","M 150.85001,438 H 407.14999")]),O),H(Q,"path",F([S(K,"id","textPath_label23"),S(K,"d","m -42,74 18,16.4 c 18,16.5 54,49.4 88.2,95 34.1,45.7 66.5,104.2 82.6,133.4 L 163,348")]),O),H(Q,"path",F([S(K,"id","textPath_label12"),S(K,"d","M 575.13333,976 H 860.86667")]),O),H(Q,"path",F([S(K,"id","textPath_label13"),S(K,"d","m 770,820 19.8,21 c 19.8,21.1 59.3,63.1 105.6,109.4 46.3,46.3 99.4,96.8 125.9,122 l 26.5,25.3")]),O),H(Q,"path",F([S(K,"id","textPath_label24"),S(K,"d","m 1879,368 18,-12.1 c 18,-12 54,-36.2 90.6,-60.9 36.6,-24.6 73.8,-49.8 110.7,-75.6 36.8,-25.7 73.3,-52.1 91.5,-65.2 L 2208,141")]),O),H(Q,"path",F([S(K,"id","textPath_label25"),S(K,"d","m 2132.9667,189 h 220.0666")]),O),H(Q,"path",F([S(K,"id","textPath_label26"),S(K,"d","M 820.4,1118 H 838 c 17.6,0 52.8,0 106.7,-4.7 54,-4.6 126.6,-14 163,-18.6 l 36.3,-4.7")]),O),H(Q,"path",F([S(K,"id","textPath_label27"),S(K,"d","m 2150,464 21.1,10.4 c 21,10.4 63.1,31.2 103,52 39.8,20.8 77.3,41.7 96.1,52.2 L 2389,589")]),O),H(Q,"path",F([S(K,"id","textPath_label28"),S(K,"d","m 826,-46 26.7,14.3 c 26.6,14.4 80,43 91.5,108.2 11.5,65.2 -18.9,166.8 -34,217.7 L 895,345")]),O),H(Q,"path",F([S(K,"id","textPath_label29"),S(K,"d","m 1882,896 37.2,-2.2 c 37.1,-2.1 111.5,-6.5 192,-38.6 C 2191.7,823 2278.3,763 2321.7,733 l 43.3,-30")]),O),H(Q,"path",F([S(K,"id","textPath_label30"),S(K,"d","m 1221,563 18.5,23.3 c 18.6,23.4 55.6,70.1 94.5,98.4 38.8,28.3 79.4,38.3 99.7,43.3 l 20.3,5")]),O),H(Q,"path",F([S(K,"id","textPath_label31"),S(K,"d","m 2012,260 26.2,0.2 c 26.1,0.1 78.5,0.5 120.6,0.6 42,0.2 73.9,0.2 89.8,0.2 h 15.9")]),O),H(Q,"path",F([S(K,"id","textPath_label32"),S(K,"d","m 1501,141 17.8,-14.7 c 17.9,-14.6 53.5,-44 98.5,-24.3 45,19.7 99.4,88.3 126.5,122.7 L 1771,259")]),O),H(Q,"path",F([S(K,"id","textPath_label33"),S(K,"d","m 1027.5,1020 22.8,-5.5 c 22.9,-5.4 68.5,-16.4 111.9,-35.2 43.5,-18.8 84.6,-45.6 105.2,-58.9 L 1288,907")]),O),H(Q,"path",F([S(K,"id","textPath_label34"),S(K,"d","m 773,386 25.3,-9.7 c 25.4,-9.6 76,-29 135.2,-46.6 C 992.7,312 1060.3,296 1094.2,288 l 33.8,-8")]),O),H(Q,"path",F([S(K,"id","textPath_label35"),S(K,"d","m 1,781 16.3,11.5 c 16.4,11.5 49,34.5 87.4,60.3 38.3,25.9 82.3,54.5 104.3,68.9 l 22,14.3")]),O),H(Q,"path",F([S(K,"id","textPath_label36"),S(K,"d","m 1962,400 22.5,18.4 c 22.5,18.4 67.5,55.1 113.4,90 45.8,34.8 92.5,67.7 115.8,84.2 L 2237,609")]),O)]))])),H(Q,"pattern",F([S(K,"id","oceanic"),S(K,"width","100"),S(K,"height","100"),S(K,"patternUnits","userSpaceOnUse")]),F([H(Q,"image",F([S(K,"id","oceanicPattern"),S(K,"opacity","0.4"),S(K,"xlink:href","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAPUExURbHj79ry+J/c68Pp8u35+3+J9HQAAAo8SURBVFjDNJiLleMqEEQbcADCEADCGwAyCsA6Uv4xvVvNvD07H48F9Ke6qrDl2Pux9daOYi223nsz4yt26/1Tvz3w5mZhiz2bpV/vZvy1h2uYtaPmwQY9soZVRy5ps30Lbwt1M7uMZ8LdrVnd2P3MMVpMR9a/9X2zXsxuiyHaMexiJwIJP/0W+GqWFaKiITBWx6YnjGCGvh08Ex+ej7slrda5/DmXYWsZufGyW45sZS1b56hqFu4WLaU6WgwX0Rk18JCmQquXxWPE1zDCJ+tQCd3Cr/nupbHRVSyZSnbsRNZ3ogpfsk+qVtpU1/0Z43V7HdJFYOl4cmmRCGJuLfAoOe+bpcEaa3cnlFbHDBZYqTOGluZ8UajGz6hK6lnlYuoNaaVrVNK1VHNSdB6YdVb4o2w4wtbs5Q053qyheEd+Ntv0tDLywCLtyS/WJKVyk/RXcacYtKYokIfn82iVFzTD8kOXvBk0SU14vdW7xJ47J4aLAtvqR66Pinv9hd+obw6DIoOVm/DC1duHwEly+BJVOqU5DTR9NrVLYRVg8rb9nuP1tkTBiCWNQHSkPZpjJAnQtOje321XiY4vy23GSHKfDJAO6qoSqbQLi+MPVVHYfTdKtN+mo5USheH3mpWyIMkRglNjKy0EJZF023GT8n1ubKJXW0pUeVtYJOzSeyrg0Iagl7WGfudJJc53jETordMhb8G+kpSeAUdkqg5WULYRNDVsWuN5zMq3j+0RfBQbJNA6qFIPHCffSJAEVq/YT2KadUsTqLDHoaaOpAHTcF82Wa7wR19zFEDci8fn8Wze5ibIDLBH5t12zsgnxWV8gvdb1fgcTE+enHEzQSwIRTiOgQJ82KMOEhF2Sd7BPbqmehZ1guoF24fxk/km+VZ8xerNbyWvyCGkRuxMCa9/mms7KHU0L5GviDrnc/lIUIHmzS7TeSM3UYvoAoZQu6iKnVp+jP65vhrw7DhMogMNDr9vLcEAmTR4QGcQptacNOwAmgR2aZXOIMURD023Slq3GNUSVmhraEMFSKQBIU7mO5fsJADktGYnv2NoOMVQn5+JsmDd2OIBk5A6MF8tDsUnjMkjl3x5UqS9a80X1q1O784QKrjQVJJ384jxQ+tyKuTCsEZhHqbmoAeOp5zAJPmKS5wZRISsKcz866eRbO8eRN5EK/o3US3pZwrFdoybOYC//Z8a8srE/5wbeSgvjuC9J9PFRPLpXojdvgwT5EsR6FL55GeyE02B0Xl/Hir+4r9VgN3Od9caNrgavdx8FmqZ4QGHzAfdJ3f2fvkZirlB6GHjAOq6i7a7uLylg97B0EtDRHHiQkqi3sXz209aOMY7BqQR5Epj+AeEBS/mz2tMyVpzYoXgDueR8+RXKqVOjzn/9E+sfajiVuHYS5xXF3ZgxE0oFewpITU9ZjEXQTFRA5cmMotCfs1iBoM/TfOi9T8JpooO60hmXbac1mlBdEwGIaFR58+9hjuXYy5CBCwwy/EI4sXZWuDvCIECOvNXKzt60c+cDsZcsjySoDnWhGpIKCStb1mKqAMATAenXd0eshhBIjqWiKerBwpeWNW8ALZSJHmYQ80uCm6BXXRELQW2j33ekWi0QhNGKVpu8SNEzaO6gtqx1tVrisBZHCYrwAxzouS7hFTgBYuxuVpdUx0q7NYAszzM0Z3YBbqfnsdQbC5Ym2MA3FMDGQJGN4v6oMlNeVziKnXkkI4ooqkSq2RL56JYsAnJjZ35f1nroGLXGjkn3k5usBTSahH7R4jgJ3T1z+b9Q3vRLbmIqOpdU9ZsSbCYmRcABuL+Yrc6ArqQAvDzH7GazNlYOuciTIfcrogrBOStsk1zdOk5eEJZg2Go4u/f4FEYPPjuhPVvs9cTWSOrST1NXOTbr8jaCuPbRH0igRxTyO/mHo2pDNkLVr2FY3rBQtb0knYXEbpyS8dkdXbl7v40eVzO+YcA4N0TlMR2YgD2wirUrewXQt9SdV/DYQxbmY9UU04CwNtyjPxgBoGWyGN3aM38uDVSEYo8pLii+2w55KHaXDpyLYrcWs0OkyTG52tIlRie7PC1CzQpET0wMD2fn1jg+N8SHcsPShY16ih9UlDjUu8hOQnCBg+8LgdwvnRA0joOd4G+5bX9x7KSIo8sA4MRhYXNH48THyKF+Epy3TWupWI2ce6x9NgESsKlAYv6mOMej+UUJMvMu7QIPMhVZY0nxkOpw8tqZlBgnW1cGqUpIxTZs6i88cd3AhAzQ5hpaTHboel5+RvO0XOIXfojwNsScqii1+L9p3R/JXOn+/HBIKlwIlufFepIch2yXw+xuXmmlBCXCNMe+QjJo6ReCKJXr5yG1qjBqzdNHBs/chHedmuPp5syKketw42RRvy54kwYMnsvpctEPNyrvclF4r0lpGXhYaq5Gkt9pbquU7Iyg2VsBhkPeSW2lUbAZJ9t/qFUQpxk4HSOrS3OjYgZGhmMqisXK9KlRPDQJBvTosnhPPMUN3Jwsuq0rdufGC97UAEuFZEv0yplkk+cczLh0LiEgt7pHlTsosNeMOFX4mKufU6baiyzd+iSOEeVniOF1dzYYVhVYBl8WT3FxWSW7DL10/hq29cWd+nMqNgsFTn9wdGzkXbOyXqMi1ogXMn7dM0PidDcdv6UR/JZEbNKOpXGsTkRapohjFOyRJI3a5ImAXkuTmLr5lgQnOy875YhB/cx8kU04ntK7OWnguTajMvVLGXW23zUdrlEW8kr0yTyUNe6gAsLLiRP6U2T6YteoK/5nQWXyDts0Y5HG6aqB6DaSq2c1uhvCstfcJll1pJLu9sV4aRw06pyPHP5EiHbmyaaAF5iZarq90XBhAEOWlbFZCKBIY5NCgLf6QbD/Oap69kQa65bY/NLuXjb1l8AhWhEfB7/yPla8cp+ifYRG3yvRPJa91wfLNJZd0ytSYIWol/kjP4+YXAxciOTy5Z+euL8SVSR1+H23c9n26l2r089pMhaH4P4i4u5dOOWQUN6pMVB8xT10UeWpDLDSXe16SZHIlkphUxF0cXc/FMMN2gKTJ7i8hvndOz/4DKnF8mw1eMXh19dXIvlCVy4u4NQxtRJ7IfHBY7qcHW/iYT1dckB1PoEw5NpjsuaLwlR+zBJgnONbSwl0y3CdCt0d7nCck2S0J8jYnDV1uOJ8fR5l9y7bldd2dTLZRLMFUGEfXZFRMM35A7ouIEE4KpscrlTh5e5FjT0SYl7XN19aM3g2aQZDo+8bnfvCoSf+kBFSahPqgwa4dzj1+/zXh8DcWkpy4/re0ODi+TEaXiLH3roiizTZvItwjWGH0/odt/R5vd2MVwPYJiz7hT5o9wktllW9OEi1xuqzxVXpMkBdZtopPTH7agajpPVx0n/lWAGNgCDMAxj8MCkPlD6QvfA/n+KOFwAqCKx25BY1feDPZwiC1evb5Y29tm8XamQq2mp1H1iMc58DDyWEJheYc1WJVRhFtdBrYDG028WevOF27GK0tqt3psnkcKYPvgegQkepOo+AAAAAElFTkSuQmCC")]),O)])),H(Q,"g",F([S(K,"id","rose"),S(K,"stroke-width","1")]),F([H(Q,"g",F([S(K,"id","sL"),S(K,"stroke","#3f3f3f")]),F([H(Q,"line",F([S(K,"id","sL1"),S(K,"x1","0"),S(K,"y1","-20000"),S(K,"x2","0"),S(K,"y2","20000")]),O),H(Q,"line",F([S(K,"id","sL2"),S(K,"x1","-20000"),S(K,"y1","0"),S(K,"x2","20000"),S(K,"y2","0")]),O)])),H(Q,"use",F([S(K,"transform","rotate(45)"),S(K,"xlink:href","#sL"),S(K,"id","use139")]),O),H(Q,"use",F([S(K,"transform","rotate(22.5)"),S(K,"xlink:href","#sL"),S(K,"id","use141")]),O),H(Q,"use",F([S(K,"transform","rotate(-22.5)"),S(K,"xlink:href","#sL"),S(K,"id","use143")]),O),H(Q,"use",F([S(K,"transform","rotate(11.25)"),S(K,"xlink:href","#sL"),S(K,"id","use145")]),O),H(Q,"use",F([S(K,"transform","rotate(-11.25)"),S(K,"xlink:href","#sL"),S(K,"id","use147")]),O),H(Q,"use",F([S(K,"transform","rotate(56.25)"),S(K,"xlink:href","#sL"),S(K,"id","use149")]),O),H(Q,"use",F([S(K,"transform","rotate(-56.25)"),S(K,"xlink:href","#sL"),S(K,"id","use151")]),O),H(Q,"g",F([S(K,"stroke-width","8"),S(K,"stroke-opacity","1"),S(K,"shape-rendering","geometricprecision"),S(K,"id","g161")]),F([H(Q,"circle",F([S(K,"r","9"),S(K,"stroke","#000000"),S(K,"fill","#1b1b1b"),S(K,"id","circle153"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","75"),S(K,"stroke","#008000"),S(K,"fill","#ffffff"),S(K,"fill-opacity","0.1"),S(K,"id","circle155"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","212"),S(K,"stroke","#1b1b1b"),S(K,"id","circle157"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","211"),S(K,"stroke","#008000"),S(K,"fill","#ffffff"),S(K,"fill-opacity","0.1"),S(K,"id","circle159"),S(K,"cx","0"),S(K,"cy","0")]),O)])),H(Q,"g",F([S(K,"stroke","#1b1b1b"),S(K,"stroke-opacity","1"),S(K,"shape-rendering","geometricprecision"),S(K,"id","g175")]),F([H(Q,"circle",F([S(K,"r","71"),S(K,"id","circle163"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","79"),S(K,"id","circle165"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","94"),S(K,"id","circle167"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","152"),S(K,"id","circle169"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","164"),S(K,"id","circle171"),S(K,"cx","0"),S(K,"cy","0")]),O),H(Q,"circle",F([S(K,"r","207"),S(K,"id","circle173"),S(K,"cx","0"),S(K,"cy","0")]),O)])),H(Q,"g",F([S(K,"id","s3"),S(K,"stroke-opacity","1"),S(K,"shape-rendering","geometricprecision")]),F([H(Q,"g",F([S(K,"id","s2")]),F([H(Q,"g",F([S(K,"id","s1"),S(K,"stroke","#1b1b1b")]),F([H(Q,"path",F([S(K,"d","M 39.416,95.16 C 33.65,103.95 30.76,110.5 28.93,117.18 15.24,113.43 13.54,127.15 23.04,131 13.71,145.8 7.84,173.93 0,212 V 103 a 103,103 0 0 0 39.416,-7.84 z"),S(K,"fill","#47a3d1"),S(K,"id","path177")]),O),H(Q,"path",F([S(K,"d","M 39.416,95.16 C 33.65,103.95 30.76,110.5 28.93,117.18 15.24,113.43 13.54,127.15 23.04,131 13.71,145.8 7.84,173.93 0,212 V 103 a 103,103 0 0 0 39.416,-7.84 z"),S(K,"fill","#000000"),S(K,"transform","scale(-1,1)"),S(K,"id","path179")]),O),H(Q,"path",F([S(K,"d","m -31.995,160.849 a 164,164 0 0 0 63.99,0 C 18.9,170.1 8.4,176.3 0,207 -8.4,176.3 -18.9,170.1 -31.995,160.849 Z"),S(K,"fill","#c2390f"),S(K,"transform","rotate(22.5)"),S(K,"id","path181")]),O)])),H(Q,"use",F([S(K,"transform","rotate(45)"),S(K,"xlink:href","#s1"),S(K,"id","use184")]),O)])),H(Q,"use",F([S(K,"transform","rotate(90)"),S(K,"xlink:href","#s2"),S(K,"id","use187")]),O)])),H(Q,"use",F([S(K,"transform","scale(-1)"),S(K,"xlink:href","#s3"),S(K,"id","use190")]),O)])),H(Q,"symbol",F([S(K,"id","icon-anchor"),S(K,"viewBox","0 0 30 28")]),F([H(Q,"title",F([S(K,"id","title193")]),F([E("Port")])),H(Q,"path",F([S(K,"d","m 15,4 c 0,-0.547 -0.453,-1 -1,-1 -0.547,0 -1,0.453 -1,1 0,0.547 0.453,1 1,1 0.547,0 1,-0.453 1,-1 z M 28,18.5 V 24 c 0,0.203 -0.125,0.391 -0.313,0.469 -0.063,0.016 -0.125,0.031 -0.187,0.031 -0.125,0 -0.25,-0.047 -0.359,-0.141 L 25.688,22.906 C 23.235,25.859 18.829,27.75 14,27.75 9.171,27.75 4.766,25.859 2.312,22.906 L 0.859,24.359 C 0.765,24.453 0.625,24.5 0.5,24.5 0.437,24.5 0.375,24.484 0.313,24.469 0.126,24.391 0,24.203 0,24 V 18.5 C 0,18.219 0.219,18 0.5,18 H 6 c 0.203,0 0.391,0.125 0.469,0.313 C 6.547,18.501 6.5,18.704 6.36,18.86 L 4.797,20.423 C 6.203,22.314 8.906,23.689 12,24.11 V 14.001 H 9 c -0.547,0 -1,-0.453 -1,-1 v -2 c 0,-0.547 0.453,-1 1,-1 h 3 V 7.454 C 10.812,6.766 10,5.485 10,4.001 c 0,-2.203 1.797,-4 4,-4 2.203,0 4,1.797 4,4 0,1.484 -0.812,2.766 -2,3.453 v 2.547 h 3 c 0.547,0 1,0.453 1,1 v 2 c 0,0.547 -0.453,1 -1,1 H 16 V 24.11 c 3.094,-0.422 5.797,-1.797 7.203,-3.687 L 21.64,18.86 C 21.499,18.704 21.453,18.501 21.531,18.313 21.609,18.125 21.797,18 22,18 h 5.5 c 0.281,0 0.5,0.219 0.5,0.5 z"),S(K,"id","path195")]),O)])),H(Q,"xhtml:style",F([S(K,"type","text/css")]),F([E("@font-face {font-family: "Almendra SC"; src: url('data:font/woff2;base64,d09GMgABAAAAACyAAA0AAAAAc4wAACwrAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGYACBHBEICoHQKIGbSAuDJgABNgIkA4ZIBCAFhCoHg0sMBxufVkUHctg4MMBevI8oysUoAv6vl9tmzWvaPQV1IwkEIcFlBhNsEgRD++djF2HrA9/rB8zFAhuyS4qqjtJ8wdU6X7VHaOkj3iHYZkeFNjqxMACDEsVGoRVBJAwkLBQztzmnM2PTub1LXYW6qt9+Ljo+auv/vcz5Wg8IIRNN24ll4v55jecfDn/nvT+aS7+3waNFnPj2+Au0SKMNEtaFKC62u/fTizVRxGFmVUSBSXPzfTpzNumz9/K1O6sCuK2KLfcnkEt7L9hw57u+uwPWO8sE5yl5pJcZSJ2J/9SwcHuWhLDsgItwqVfArdyU6yUBAhQKvD8A5t82q/0zSd5jxSQr5dnrRby9bsurhs/CMPMZLAqskhPCKrAaeTeZDBoiaFZVyZlrsqdaiTbFlrmyOy+1KHvTMWQJXPqre2VuvUx3hNYxYWeqz2pD1Kw/o2vYkUCCA4lLGwMQAOAx0DgUBMTVNUPruQYhAOhrdwOgVzaDvGHzNZhNDunDCss/lVWAB+m2DbY1CABWKt8Mh1QBJ8omlsQvTiIMAI4NQeQycJ0aD2zRvFpbxDY/IEGl6dN9rx9MHElEkgfJmxRJ2vbjR02atXZwItR1HEjzSG54xILyvif2+A5s2f+xqnffmjFj2nElsRb5A+H1IPnB4NdUkOkAJwLSU+D/KAIGnZfmIShtchg4KIgrqIxgOgZloCfyaRXlEcm7DtLLB7h7w8CsZE/Ty2Hg42VgtPfw/KjFAQqSOskoGiKjEKHDE4LWhKBW1pOGRUIONUkUVy/3G0paf5HlYUKcRvpepExEbYXM/7QBFqKg1yl5w3w5pVWe2bAG0AHvcIAuUQx5tJ1/bOVT/11cf7eetvfzF+66o6QkEVQdc6kwLs1+a2Oz8+JhQ7qS0/2WG7ZXOHWtMpXjTCWYOLoQFcvMFsBqRAZoAVEaWk3Va3A2IEYsSuBJ0Co2xeMAB8iAKJkP413NcHSqwzxCu2dmW03IBZ1SHBTvkrqi94WoidFdt9dq1VHVucS1WKKlCrOq2URlsy1zKdmQVjelQKd0ZTocolM9x2g9NAOjE27GGyOTMEOSNKKhowcXLlmlK6h80Sme310+y83iUjHg5rT2tvBcvKnyMlp3BN5cgIWRsBHXuFMjQEtkN95UPKGIbvuo9OrHzgRZqnfismNPdPDt4JIHaWS2x5NLi4CQLhHYQEtYYFzFJgmf78YXLlzxaeCdvb+L+FjkuOSrnLO1nZe9sBHRq7IaoyYLrMu+EEwFWn+iudSXp6jqqQkiY2c/ODUycoFtKoCkJsd2pcOa3dHszjBlUG0aShmvaMz9ciomPEgHaQCZsCXfWB5/bfnmmMY/T4BI33pPjr7uIa0NGji5hH3cu7/KLI6DSW6TZNG2GGT9N01u2gWraE+BAouTigVPPS1XWPEJq9Tloml8ZzUs7TdqDNFUCTnc5DtvQQZR2SmhY0aZx2jVMU88pVY6sUNOcZj4aWRAtERuNzK2AKDNM3YHJmIdaunosciaxWc5xnvy0IJ1XN9TsLFM46zGkwl7xntrjjZRE/n4bU3VEzewQRdDRB39QtmsPWSyqB4LzbPeyNmExpz71QWxCRK2FGSwYsWn9cC/aiBzC8S2asnSfoPqPi6B8OwyJuEpyVNVgyqIMCpYLKh0xA/RLkeak07skifBjOhnaoNxFY8I0skno/YEsGZhs08rc9SASGt8NuEJb87H1b6OLIk0jSTGbY3tCRJ2D0YEjFvexYysmxAJe9gho2W0UtyNetfZiMNCDDUUP5nQgKiL2A68KvDLSuF5inYsTzy5YvwEZIZCsTKmdYbLgSrdf6FxC507TiTfRfzWtBmSJQt5qlhyAlVJHNBMMmWcNgiEVk8RrV3hmD1neY775VUNq2DJbY1XWHvAkI2ln2MfQ/9+1oaFt9IZNn6AVkn5eI5e8QORI7qBoQekbl5echyupQUga2ytjbHHmCfEqHU77TsB0PotvO9rt0sInTKoMctcQdaHGiwdmcxk5+N+nSfo4gZzvxKj/tz2kPKTSZ/G8ywdCyx4qcccWzeY87BT+tVobG+bZ2iA5mFO8rk5+zwR/cA4RhY0Q/HYySmSPTd9iG+8ShVzxah/k288bVC4QEuuV9lBChQMz8oh5s48IgeNW2yTAMT39Zgc3UZpzgZqYXLiztqqx1Tox5odUT0lKXImU8XxDKAa4TJUV7rGgqfaNvmqWIV0ugcXz7K0tIXKMH4quCwQuhzmOw3aNbsjWjc5DjdDwpsRkDWMVsqZ4s4rhuWdxuaEX9CP/v5rRHr4/NBgxTxtbzIueSJ8pld4kmMVnNYmr4NmyCox63hOjPZf7HxPdI7j8KtZQHyAwhd4yFRmAcPyNF3m1HmfilcXg3I9v+04U91Fcg4ytUWp4MGm8cHBeLZNsxv7VVAJrRSsgUlHIrnvVLP0GHLmFJ9TIW8s0lGg6JsBet0Ty1HVoLssTwByIoY+UnPCr6nqmYBauBmtjD/XHZ+mSu8NkJFz3PFiynNgXPrOV3IUH9HYDhh6K2pXcgWycyFy0raboQJkARlhGAq4JJoSRQtaJyJH1x3KP5KbgnbzTfGWzvCY2Kj/K0BvoskvRukphFrRsskB8ZiiGvOBKG9KcAqcNhyeKCoUJqDBWc7URS2DBg2oHL7Yyotcd5zotL3unVli56xlEM4JbcmNSbkP7niQdl0IkSgpI3URKtj/nuSJqyn7HIrj7XIql9xJ+CR/Ro/5FfTJeu2Pto8uprwk2rzQSGfLuuQJ+9xQu8lqGXTXwYhXjbVe+Ya/8jBP4JI+MMohnOsemu1Kmd8/2Lo3pEN2r1iPhdQBvLRUrek91i/f8EdoHIYKYVqsnFOABJjxLrwrpb+7AmOX2sBuWNaxnhK9aIZqs7woDLlOAxhMmmOA2NaZZMMNSikVylVLh2rvzTyJ0xGADFC34mWv4XzBVUOsF+l/Bs6cyU0ger815wM2BHerYNIxpT8o/UKO99niH741Dxk0dN+35wODjwzENe6TvuvLfRm743soV+b2Cbk+FJSncwsERItZfXtolqXXYArLOQRYCLSzPYP5HKY/Qw7z9VNfbB28a1S8AIsZC2ahz1Mtg+JOueh8DaYtFFwwzF/I4Ax9Fjm+sOwFtq6X9RyWE/WBEgFuAt0ngZb3uGteShbsjyh78/ix3cPAIk38dndotUcZxGpn49HJLuKSBw8O841Boyc9658JF6w837vIg/5x6ogc8Zs6fXhTxBJJYZm8xlIhaS9ESuEQZA+P+u3ghks2GybFammzGdG/7L5OvFqKovcitTRqw5SO4G+Ims/KTqWthxTzPPtxdK2ji+p84yHDlCuGqQosz6VwV6fOzttDnwnXQN4FlIBQe5MA065Yk+FsRgXwOrt2J4T2TFBHkUYPnegdL1fIJFCpClFgIXfjiLeX7FK1UgUWIGva3TKPASLb5fjFXOYpTVUOc5AlwYJyr9FHbINBOLB6P2NtGZtMhC95CrJ18as7s8JgupKu+wNxSEtSoASNbMFgsUbz+0HqCypsxcVHJ12z7A4gWc+0n+0ouPHXbiN25i8wy4lNPzatxNKVhZCujMp9ONyc6YAH84Cox+f1Cx54LMWpkeEJuJTQC7cbyq1azPJ4mpwl9Fi0eSb8qpveYugGa7YaJ2J123c9qtGjd6JnrCJZKDtw5jOlWB1AWV5hvVL6fkx3kWjpVNBQiA5kJDHSdBWRnIP4e1eiw5zrzrfI4REjgKMxaqWg0mdcuag83xhrbhuwTZ647cxzbgkpyJYvu7oqiyBLT4TiVRopxaNcLicMaSoiCLUQMnbtWohIMOEB2UkEGH8pZvk1F/0zKOy070niYSqEQjSk0eQrUWGejUPYUF1UG/tfjjt5/kLsuEgzBdm2+LTOnJfZjS6yN71LeLFwhsHSMp1NpB+pB2gRVngSlZz4QnzhquMDwVQseyY5Q3BgpNECc4spqUeNLCnA9VpKL7bZ5dKMVQRd8s1k/Or3q3nctm3vMiDPys1WIR3c8djTHjwWab1wxaAvPNpSTZn+fcylYsmSQZea3o0BtXvEAQLkrCERPuN6QCfGbeAR+9/NjyyqW3xpiUMYijSqOnjJIcoqCTUXKUspvnVmMdyiSm0oU+AMwheiAqoX2lkRSa8TnOepshFpqrqqOmU3vZr1EswiLLMHXGLSXLHg6J939pnkW+1rGXiTt4dq1kQH3G80mDsjxvQ+OSr+9yaRWw01y7Za7ePVaEyQzqIJznjoqAHdROONhlpHtxbLTM5kfVcFhsYx/0Q//BhaUtuYE9/qeYvqiJczwdLVfY3nSdqPgQazUJmuLUEnsvVWhdj7v0W4Rtk5RCMlmBNTu8NDbym67/Go9+qXWbJJXuKpVr5sZvYUVNpsmdcqqOJculDbkvcoUFiYdRn+8FvyLLHPc6dKX37CwhELgQgwVXYTkkyINHvCaC1ZXJMUT9he5KLOL6vdm+BVD2kDXYpZFSK+dcZFOktpl3M9s7NsJFY0uV5FINrcEFh31UDUCrVRK+oUm2mDph5z6zBZYRXgFsop6zKCBsqbCRFOrLb5XVC547IN1agzlTVoV0UfsRV0wuUdZnLHt7KyKjmzRsQFppeBcZCQPhBecLKOXwMetSsEWA1IwkURdLU6J6Jdxp74BSJgpmg9Zh/39middn4qvLaJ/T7D4Idlvt0zVo0zS37mOefBASJ/0Gkyy4gD5DJP1DCQUCCCsG4TPhAjQemQM/qL9GWJrP2zF9HeX4oHhBT1SPDoP6b0jyR/vslTsQfrGMuSS/HXpsMnodhnbHRu6UMPqmRYLTvXS3E9IGtOcnniUq2PGsyVrB+s88QGa9JLzPXV12n1TbyZ88I8USicGDPMSE9nrU8mkC7OWq876VsbH7y8YWNp8tz03fNYBXKaPJuR0+E1OJ7dXe/meEgWiXl1gYwWg1QP3PjpgM6srBywzu4fswKscLcBPcAKbhv0Ie1ki4MrcG3QkV+Y2kDEFuc3e5elvRwGHlyptwZb7cs+9mEJcczDwrGPN+dLIsuO3AFp52zcK0v+e/tn456Dl4l3h71TzbofcQw9Yw7YqD5Kw4lIC1JvpULKmg9a25JhyJ6Am3AH296WorrV9+hrGQ7Ig4o+tt1MOMGd8joUccl5gn+Ah5ipIO6wJYqlkkXsOTq08uitYRYPi13NRb6edJpHV02aUQWFINLUGD3w9nIOIxvKLHmbD7ENccJkMe8Y2ra65/MWPBkNRSCLV3Ln152DBIo2agldtpgLkh+ukCSUkPNIxtvNXmQm2ADk08oBm4uXnLQDTf0ZabJjtMXf+DcTFB9Nk2Y4duNtaWwABPMNQDXYlpogHWktAYClHbID7JNshbh4VOlKx3WT7LGFDncCPB2wbB9/JflmMXrziTvke5u+n6T2b1X6oiKobUtTPRzLsBX2ABl+cZPHvjSYZa6I0onqUXnOiBm+l0TSAkOerUDFfOwzkqV6o90Uoalw4ZxVupB7d1CKobP60WtL7lztXeAPFyPd3fakOftXNiYPhAdVYJSvlltOOWqemCpSsmonS8QYLbfcdBCv0gxbVXNlF338SfSMF73NQMU8Ce3Qip8kzp5N/CTbpa6r75FUsuerDXSzgrHBmj0EYjqvzOCwh9K6+2rDnecOggWVAsBC565eBLVu+ZOJMg/WQ4nPEdU2dtn44qKIeB0qvAxaOxKH2G2zuAhaszQOkeVyxaGV7ViGM0MSIC63jo7KcZat03/5D4dNSxEUGJID1RlHoPK/1rPVQP6HtQIhcPKjGFmI4dzIjFW2ISkFAhLQIeDjCqXUxUqB4DtRCW3X0NvzLva+O+KqDUKuypHsCCImMOAtSWiwO8Jpn3trrk610VuYKa9jPUSsPGnu5O2wY0rpiaz6/Bof7/fWGqvUZINOpbWSW6WmGhiJqYEpyVee1s6LBrIa942qSadqvuG2rfr4+gRdnG+tzVZ4mVxj6i33FK3297nZPMqtrBQSivosmeIqvQwuhKULo2Nrc4V2UpH9p3YFX2ldSgyzHiqyypEp86J7MuQt0hJjbyhY2V4EHAreZCSN9xz93CT9KDSMg/6a0ZFDETAqx434fB02fe45Og7OrV5mdwnJC10Nc9BOg0yuANh9HIQPjh/r0we8NgKxNJLNtHqlaB1ga8hI3iW7ZScF/FPL7I6ieOQ1/ZoIHly/nwWrtzoUzdtx6YGAh01o053RJwdrWxoQT86/EcOXyCC8+uzkPrCazhZaHo3HecVhx+7C6OEDpWeaBlOtu2PdZgQAuyjAGUQBjJbjlVYRQLWQq3dPsVeELwf0xpbxJXW9rnUuXS1jBehOnpGxhtfT2srref5OADfuh1kC5XZWZIVd3bRtkJVqd1i7+fQDb7K5zp62Bx0PVqfYZObgl52UbOAV79tK6oLD/14VzkgvV2v4hQytyee3Ir/lyNWpu67gGKWGpvR4TUZS4+yI02tgWUollCc6x4VdpAtkEiGnfZXDq+nINGTbBoklanBTHXHNwBbrnK7+sXlrhYU5an8LgWWVDheBFAe8/DWU8vvhv3uZQd4s5nzZreBW430fj3P5rL+4yVllE+zc8d+TCthl2pqPCQD6G6jUVuQS7QMpoD7Zj9sRFSbkhzfBzIRN0yKFtrVdjNQUhGBbcp1NkLwMg9LfpMmTArY6P+wlmSvixtg8Q33sSc/VaNU1+YlanVFbs+p8RfCJ1JjiKRCBWJYrE34hIuNjegUFsTk+N082hrS3ahXC6U25jgcR3T0BQnOgXrUF1H/+DgZnuMXybLZimaukSD8jzpU0VStNkRpzuXpFZBI7cWIf/QJ2wLgBfUkpZpsW13Jzgs5u8eCl0CSJgCMa1QkVcmM5UJAT2XCBEz/cbS747dDr+Ze5j8v/y8gKaozP64bndcUD7rnN6PvZyX1batEXzuLBXw+5BF+6ige64rvjGwchm0E5+J1J/ld2xP8vV6GhTCVTqGJ0JhMyDZY05NjtUFfntVzr3Tnw71TssVRsRLcEm6fbrFPzfQRTJk96noweJ055WDg6sHYwpq34QLztrs2bdp19SjxONDKXDV6vts3+rQhvJTJN2oqTfFjmJc4Rdzn1G+Jq5f/cNC7bVOFNGwKPTJiROHyGqI8aj9ouDb9IQfGhw5zGKees2k3c5yMbrXeiCWatTUn0CmR/966n+KCaDq9R2xW4qz1iTt3pBe274WXeIQoQMqxFzUFXfptfpkivhcfpBPykZSMpTjEaMkYtci5+q0PtK4X8JumbFyO/EfJdBg9bIPAuUqPMInhqVB01k7viqAichPMoqWnsmw/jKhb6p5Sk0rrOsWcbB43E3Hx7BDGtG6Vy6Q+UN7Wx89btYchArq1z8Tg6U8H5/6RFbbTD9Aw9XegTl0bGqKcqGC/QRjk8Vd+tYhvstUN5MqnVmq0ivDIvpjfnkUKsTpdXGChuVT7yD1AgLS7dgrFEHQoVP77RP1EWPKBLz3kpECRVg/M4ueMR084SVrUrKgc3ADXnTV0MPWgHWHxmoNo5yr/BN5uQFsdqzjphvx2MnmrNCrOJtf4lOjMpcqq9sVDgVF8/iht+scArP98e4ZK/A6Fw6Qx529nMTmm3A/we8yF8vKiP+mnnXPhFCsYMDscjh6fW4CYu0cMeyWktwZZAlOgm+YfFy/BSV6QMMpKAGRWiwTTKQBseCMMz8JveZG6OvvUvuGvBylbgM+RJ14EGysVw6fYsKNQ+cCk76gBKIWifSZw18RK7S8+OoXXKisR9WCWuCFwyhqXoTU3iMMB9XgW1T2PQ2s6W7TUUzQ37CINqLYZMgHrEbhHDCZmcgdDSyhnoGEY8mUcMrQd3LfjUJpTOzqPZupKhOS5Xe8SOZuhL9k6segp5OgJEabGKvz1zsuDz27HqabrDjrC4/xHSBaSKB6rxbaFmEBS2taT+HmQyj/LvPgKupmWA5XHPob+KbDPBfb5sKj7K6ONakPRD+ADAUre6r1rFfN17N1IkttP4rPVRh/Dx5PPh0iKoV/PzLdigTR98ZWaj8yx71YfLuVfeVYqL+0a82FZm2bb6cxCYHl84ZNN5p4FR07ei8cJI2z5J3niJeVt6VGWQftFUjNwlmHikw9HxllP6dlukL6+4LBvUkHGqSkxRcdBciD2ZmeJdQyVZNpmx+ARlwoCAE0+5hkprxqWZ/kMSsAYTPS1RdR7kCwPm2N02+w0hCajJY+bTNX7KODm9XBUQX/auTu1bN7+04V3/5WrS/IVD6Pnnq4Nb3iz2JZxwCfX6sh+0eOMzLCMyrM0riE5RvX7MHirlYvjGrudc4Jdk3NHqRcbHKSQdYnqCTzYqrRcrg+A3+61p8qYA3AbKGbImyGnjoRJ75iJB1IJejlk5NGRWRkka65WuKXJbx1hEjgtHuj5XHCCIFGhi1LxImY+5ZKWJshAvC48CP49O28nJ9ynfQkRYWTZRhUAW5+Azgnm/iOcTnPK1ajyFEf12cYM7vBmOraBc5Mzt/OTbJ8LHH40Kz3zUakvvjorgpXpVpLU0Rlh98vCRVFAzZbiYGe4ZsAG1ceg5dyYJG9+6as/hGqBvwjcFRquNZrZrDoQfl5jcuM+7EPgcFjinpZxd8JJyEVTD/ikU85JSau5kYsKPhAsi5pM3q36PP8g4LhaVSqu+W3wPPef7DDlK8gecUW/Yj56D/8443jVv5Vq0SstndYCTmU4RXIeyeOksRNM5e5LjspWFWfMrDy++5SvqoypR6ztCpkSUaeDEGrw5aB9xFE+/vGQGvP2XuLkoDZzbUcdeHFpSeidMXS9ORm5MR5cPmJ/NE1j5O6PXOhHYozli+0wfHtJe9kHl7ifFnKMUq4LSk2nAk1nB+Lshg6XeVLFJtYxXYHvik2O/B7A6XnzJjBF9x4jMl4qtrAgKiIliUkAIVsCFhtiNpXd6Jn39AncxBSwu5noaqNmPQdiuXv9PQIUzpEv6ibSH8abf0sYuAXjbZvRAdnKtqRbMuznkPNgg0cStPVyMQYMiByP2uAEbcf8DVuWLVbH14Z9G6yKIkzpo3guTr4OKFOTDMi+WRtSPNs/tRYtRuRmEAzV2XnaAjPwdmY36oOfFPYVHx7OrmuoF9vPUDuPbOkT2aWJ0kpvnqQMxu/pZqRleB5FCYlhbzjCEJVBwZGyAjxBfeCjQGj2zSuZfbd5ndovXWyMckDSjS4WvOt+VIsmdEFAvAx/kS2Tl/KLb7Qdy3Ihq+y3Sd91iPx5ZcRDJcw91KnhHlhZkk3igbSIqZ/DLhXKHJ4+yNFBBX2RB1XZlldIRmK6RDFU1SyikqFc+W/gt7UQrZs/5obqpEXfhaGkr04ApCz3oJ8P8xsMKG+Bql0yAjwhcDi/cX+tbgRNXDx1cadUBSyVUfxpep/vKocbNRZaDPFtqc6if7tREP3Nw5SmdX2gzNWI/GVUOyj8Uv5zqvQrVdtKKkZL3R/TptqGhrtkJaFEmm1Jg7nVNIlrQvCtQPX/NWE0LHPMZDC2t1huboNvoteAY0T+3KNrEecfTavZFWPahhYXmJa6j9RHSumreQzdh4ijrObQhYzA3yxqwHMvDPpZh/A6GrhxkLsQo4XcjqN0ov3OzNaq6qjTSVYYLTN4E6GEx3I/kKta8AzaVhnBv1o2ssQjiDcNceLu/FLvAyXaDrRP3NUGWRUwPtNMvkUYJ1n/DGNXo4jklyvcLbaJGYLTQ925XYHlMpE5S/XQfcEUOqtEvs2jFIma7YZ3Bv7tRTOT9Ds+Qa/j5uuVe89td24m2S/ML/XunMcpFzOXLRjv9iWlVTtGWjqQWRXtQ+9z9U5vBelzDwmtN+/JcLEXVd6q3W8i2z+loP3HhfCGPnX2XKj4nXQgCkK+Re5bEL9ap8TwWJuaXamSo1zkkPxrNW3oPF0vHiP3RSTQPMA4va7gksuBdzd9k9EtaL03+tnP3U7JktCSHZbBZeQY8U3JlvUSm60IkrMj4v8peEG5HjhbciL3gwRW3C93csLXF5lzvLUg+r3fWlbcIGbe3mAh+Ck/XUf3KI6ckMZ6csqJ1sqP24/A4F7d4ZpLAy1nC0fhLuJ7RBbWfYks/2rgtROhcfEig4hqJt74mFKt2LOgoykF/RUiwjeuj3VcFE9XbeHKMkxar7nF0c8kEF1yZXRjhzdt+SIt3dBeDI5y37SLd6hfvDMhoR+SY6QaLrcJlnGNom6thynsosFxyGAHIREw1n2Q2A1REvvT+CKwoom70U7iejeSLINQSwVLa+OI21g0jFp4SN8hatNU7Pn1L0FEgQXBqenYsOBKRitYrgMUefeqhPO3VylkatZT6G6SsZiGUi4/nT+m3+m0Ucyo6Xktk1iS3/4ffRrsDlPHiippuJF/0w5WA96hPY3URP1XSFm0sXfbkZ0NE3YZP4VHZzkmtmm53+w2QzOv+0Zu1K5pW/zO6P2LMfINVbcXUj2WsNkMlzkD5ynaqXYrlNVNfWjCyWesthoxuKyFUvX05TZzeXf3dP16W6Mq0bUDxo2Ol3M+9U+tVT4/h+RIR6fVczr4K+3XCXbwLl59V2BUHMdSPK93Ziz47EOweOIKdZ1I0BuIk01eIZ0ttKEzilD5F8x93+z/dTNohv6tyGlxOu+pHO8Ts/mc7FwycdsnL3o386O7Gg/SBBftTNHriFJMibsUW4n3PIzppyPMIRIwhclIFW73G+V4CMjHNJJndVuAH+DOFHnO3PPRFXkySkdwq/ZM1/VaDkoZNjgfHy7xBFuLfzQh5EkxefNC0KtETlvX0JJvvxz1mXRbuRCXobPHFIhfQhitUtV24Cywd8HxIdpuRYZVc1q0miHeyVCH4UybS7nrwdM0pmGrdCBaZOeH9ahqNNpocaQnAv1mM0zueXLAW+WjB9lfypIm1DtkGTKyuX5ukclg7Yc6n8PHqnPQ0hG986zKXKG101u14X0S+ZWGilZzenaBtPfu9PyFZutiAve0e80HhF+I55brkjSEOFyinNTMEH7+BDxALvCJYhuiEeFvnw1XaeWmHgNo9NPs6M9n7wekgKA8nhdzy0eAaYcDq02bUwJJ30/ifv4OlGpe8bLAHccf6TtTfiwbpA87CCJ4qeiBbzucFGJ5l8luRMq/IySdRmRmdmpRVH6IQv693gV9JecHFAwHaOL7jY0AARpZW3TmPYS9cbIAMp2gs3w7vVXglJOgmMnuk82J7AcT8t9K+xPmoqGzPtyfE03PEObbH08QVlz5u2/Fx+/1n50dAntAaexXE8OMn8+B2yf9lvHKxf8qzUrfKYHPyBHdmaJbESCVqiG7KxMt1GqFW+BMoJRZNcA2FWrajKVidRRP1ZvVz0zPkDMecUKGSBo7+1lrbsgn9IDuZB18ifgMc105WVHy6aStQnQZje7qxM13fLtFBfdWCxIDUEJwg4C8nrfdIJQoLp1K9vTCV0Ha6FpvNqsRNnwgr9p3BAvRaHWL+yeq+H9A2sLBHGVmlTv4aKY2qSlA/SNp1K8mWpn+tTD0IwKoZt/AZbFXx1Pi4XVdYj1/8/qkrUh56eCWiLyR9dMA9++ExlKOlWJ7jI5C4FSZ4ViP3HshyIqfJLgoeCxKyK7LtJ4HivKv117iV7fIXDB9trf1kBd1xKBWRwMhtS7arud11TpBVabGvO5UgbZRuxpdlgyW3Bp2HLGjM4eK1cRIN+PmxgygYKanzIPwtscnCinQsz4LsIy5HChx13vu+teONmOM4jY7d5qf17p9KUi63o1gyiUes4vekgTNDXmgX9g8yHpnDptSPy/EeuIr3DXAVJSOQZ06jjetch+uvp7hn2mQNlegmwWpXaPxTI3W3fXWvPV2jIReeaGQzugLuyc/SZoc1QZ9B61chjRFthyNIHVJ3W3thk3RClbEjnFSTnmfb3YoSgUaoMWNFRqfCQaFMXWHokLpZZXmzJ1sis9gkzao+jh6cWFg0kd+PV2eZgh21bEPhAY+sflMTXqjMCXWUM9IzwB1kUdjO63FUTFAFgx53+rNXTTbKduukPPBIVOdqTkEwTTXA7+NZHTDUfP3PFKmKK9U+ZX+yDKxWj+6J2dqHJJZm7eFBtoNRfxGjueb6RPoZAkfIl2/1XILX7YwSH+lTY48rnZ6aU1MODpTygZB70QcV9y7KMFviQlUyncrHPMCaveh7ObhflFWpfGQ6VWjcFvac4Fbfz62RPTsa1keIDI4Hscx96iLRK3GoEu8oCCMu/JeQ50EIVArBH1e++5Xjk3hzH31JyzYf39zlYduMDQ5B5rt0CyYrZmGoY68Yukiq7vylOwZm1KxMiUtQPFCX5HiVJXfUI4HwpaEteEt5sq7DuBy7aUmBudp2RAlcymJeI0PBb9iTrrAmbk7CUpomunRw3ixZD0/7THIIJ1ilUjxQF1SSrZKOZQrGN4V4gESI5WbwfnLSw/06uHJT86dIV5dhlZvKjT/9s13v+NwM+iTf6YU1A7JvZy09HGbMFVDW0T6uEu3RZwBdNZ+ATL9I9Hseh7beFpFz0dufb/pocHlQ0IvKK4Wc/Z/AzkdVjBfolJVlMGiwDDEOXQ4cR0K0kGFQdKNzLVCzVss9enpocl7W9gpx9dQBwQ0X/vRmd91YQX647Lt7M24PrsuIxAVv2aQeHxVX5h7Yi5tY8QwBt7e5CrJ8VF2+MyuvdxRMpCA+r2IWkrN7yt6dHLdZL9gxTmqcOpxXWM6dZSo9vNa7tbAkQ8S7gjm8sMTt/+mfw3U3FhZ/tC5nj2ycK7AgfnNC1/BG6KVJHT8/p4e5EqGfAeIcnGOCL2ITF+pr9v1OqorIZfYhMnM/4V8+1K95Mz61j9gr2Udek7Blk15GlWxjVfzBXL4m5E/6pp2g08GIxTfghA1wpUsmk5ThcAI1RvHmUpih0JZ6KGnqxXWbhalK181nEOhZkYjSrb7CMi/S8xluYu71RuFVXx7HGWmkuE27/QzwEQGXBdSJXIrENV/tW+FipCEdEHrreLNb876rJfOzjJ4C7cMLlvflhnN6SRTUw9ZErK2526ff2dumO66RhGQ6hmRqJMfBw2H4DTlFlFrDo3rRjIp3aq7M97Xbb+M+Wenz18s07HzyykeDi4eC1kU8tr64RQOjJwaoBM0cPtuLw7614vuh3EyDehz+Lyys7uXh/L8LrD68pD+e4iIBd8j7MOmC93mSK+2kg9cF0vP5db28bSUqYfrSd8p7Yj2eoBsZ/cGI6mI47UWNeu56BKjAgZ5fLH4P5unnatohPL7A5jPmRnXK223IjrzOSm+lfi26m8msCZyuwdplOuyuqkqnSOVkqY90gVrXtlHxoUtxfx8tpGfA4+IrCdm25f3ndXvW1WdjfbWSops52adN6Z0q1ilnrGQr7gHYcT+d5bcCXwVshck+ySq3SrVg2y8NeId49KgenQsPEW2fT3jXmlL6lfJVCZJ8gT/3WmcHZjsYXuIU32H0ROuqKQLXA6DUBegP2cm1o7UATn0zzXvIk//n5WO15XIqOptnxK0gKZ7pdfU+hL0HGG5pyC3e22qsujejn6e1PNZb5OgjkUdbf9tTD5H03HbUWurV2j1snzfgSvrsDFjTEZzYIIoZj0rJoOjT6iA5kz4aXKZNxnGhynrH+U7K/Np4gvSYtRLBc/KjTqS9G8NI9iGng2Xhjng8tFuBnNizlT8cAts78AXYnuCUf4bPMFHDam2AY540Ue4XS7G4AS5A+DoVLfjKjvvwa5ganYwLV+NvLA2cPdAKSxfQ3RI/QeALg1cp/x23agBC9i/29AGx7irPXikXsXzF9A1jR73Kuf1c0qAmf69r+KlvRzzf5370/dcDfVszx2OPcsOwAOkLrhghlv43HzFcn3MgAIBY8n9FdWfYRP8CbvADAHB+Qz4CAHBz98KpH+lLnm2DGgCgQQEAAAQ4ih11xQAq+ExLql0zKwFyAeg7+0yIUWKj8PNnYb3hXTo2s2L1xxqJZKsEcjYukpt89eDGDSFms/U+x4a1Yr4YFbPC2JgcM2ExNClH2Or4RhFCc+SrQSW7MQgrNefi5Sf/FlBxfgqC7ZsMRxfQqSxVhaAqY5lqcKaRycy1flaV7hrwY63dvTkVZadX4XomNxvPYKkxTHcMtWVHXkn3fO4rYTIDQQmPkNhZ8h9nAOhO/g6P4jR6rnw9ju5+gf6KXiGaHDT94HsJzTGB3ciPLhOQtQAvCFxDJHzlUwjuzPcEPPwvr3o9Xxw2+eLV/OV+8NpD43c6SeJKxOYZuj+TvwzEwpDsWsp7Ppi8zl4yAP0T4AoUJxCiCHYaQXsAcokeBdtqJBN5jMNyjTjw49tcU/t5iYdE9nA6n+A2MUTc6KESmPP0AbwRrUNZiGAJwDUQAwZDhHWSFM6io1DJcB3YBUKSEAjDR5hz7oJBz1hD/nQJusfLcHhgNMy6nVOu3NeAG+DnC8pwHRKS8AbILT3yn3NoADiqCeRJt1kjUgBwogjkVPeQb58LzU2cVtqXK1UsxSnja0HjRiF8Ili6eYY7kG/UHs3ApQEHRRA7xTME1Wqj5QFTDeeywiUgEsKJS5FQ1l5EwkTydyQcRVokAlF1JJKvxTtrLcTBEyUsK2+oLLDkV5P8cvzXpmxWUJBR2SxTEr80yzSaLEvMyy1W1isvL0NZMYqqUyLPUoLssaCYkVNG+VcaktoIbp3cylrKjFISQ6U9oBJVqCTGkuTNL7YklporPWNvD+yXe8InbNHUUlOc5fk7iMFisaOSE1ITo7LhyQUd+LTginRGKWPTVRWMyoHUpvXtwFUgcvHlkUxmVU7lPFPVdXNG1XxSZTuUhZNMKZFDyen+aAO2/NohjyXHPv57CpAUazFRO3sHR4KT8zwXoqubu4cnycvbx5dMofr5BwTS6AwmK4gdHMIJDQuPiIyK5sbE8vgCoUgskcbFyxLkikRlkkqt0SanpKbp0vUGoykjM2u9Vm2OGPWmXb8eEzab1O3eEiP+/qfPmE4nH/21yhYf/v24znZn53bIzhlkPp975tzlCxcvvc27fuXqTpY/h9y6cTP//W9dCguKSopL1yirKK+sqqmurXtXP79hQePC/dZqWrRYs19/P+j2LrvdeXh32oy99jk1a49fOhx1LOjxz+vmj/5o23X0AQ=='); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-variant: normal;}")]))])),H(Q,"g",F([S(K,"id","ocean"),S(K,"style","display:inline;shape-rendering:geometricPrecision")]),F([H(Q,"rect",F([S(K,"x","-0.64865482"),S(K,"y","-0.4043372"),S(K,"width","2001.2579"),S(K,"height","1001.211"),S(K,"id","rect208"),S(K,"style","display:inline;fill:#80b3ff;stroke-width:0.843286;shape-rendering:geometricPrecision;fill-opacity:1"),S(K,"inkscape:label","rect208"),S(K,"fill","url(#oceanic)")]),O),H(Q,"path",F([S(K,"d","m -0.64865472,-0.40433722 c 0,0 0,0 0,13.81568722 0,13.730408 0,41.276503 0,55.09219 0,13.730408 0,13.730408 0,13.730408 0,0 0,0 9.42258982,3.581845 9.5059759,3.581845 28.3511549,10.660253 49.5311359,17.994507 21.096594,7.24898 44.444609,14.58322 61.538689,28.39893 17.09407,13.81567 27.93422,33.94224 36.68971,57.56535 8.75553,23.62313 15.42638,50.57225 32.35369,64.64378 17.01068,14.07154 44.19444,15.26548 72.96253,11.4278 28.76808,-3.8377 59.12048,-12.70703 78.79953,-26.60799 19.76243,-13.90097 28.93486,-33.00416 30.60257,-53.98352 1.66771,-21.06469 -4.16929,-44.09083 -6.83764,-65.66717 -2.58495,-21.661639 -2.08464,-41.788198 11.00693,-49.634145 13.09155,-7.845946 38.60759,-3.240716 66.70859,-2.729025 28.10101,0.596975 58.62018,-2.814306 85.88733,1.449796 27.26713,4.264101 51.11547,16.203584 76.71489,19.870711 25.59943,3.75241 52.78318,-0.852819 78.21583,-4.690511 25.43266,-3.837692 49.11421,-6.907844 74.21332,-1.790922 25.1825,5.116921 51.86594,18.420916 76.6315,19.017896 24.68219,0.59697 47.52988,-11.683642 64.20704,-12.110051 16.67714,-0.426412 27.18376,11.001381 22.76431,28.569481 -4.41945,17.65337 -23.93172,41.53234 -23.18125,60.46496 0.6671,18.84732 21.51353,32.83357 26.93361,49.88998 5.42006,17.05642 -4.58622,37.18296 -23.76495,44.43194 -19.17873,7.24897 -47.52986,1.62036 -75.46411,2.30261 -27.93421,0.68226 -55.45151,7.84594 -81.30109,22.7703 -25.84959,14.92436 -50.03146,37.60938 -54.86783,61.91475 -4.91977,24.30538 9.58936,50.23112 26.09974,71.38106 16.51038,21.14994 35.18878,37.69467 51.03208,60.37967 15.84329,22.77031 28.85147,51.7662 23.4314,76.24215 -5.42008,24.39065 -29.26841,44.34664 -48.36375,62.93813 -19.01194,18.59148 -33.18752,35.98901 -53.45026,46.64927 -20.34612,10.66025 -46.696,14.58322 -73.29607,19.18846 -26.51668,4.51993 -53.20011,9.63686 -75.96442,6.39615 -22.84769,-3.326 -41.69288,-14.92436 -57.95309,-33.00415 -16.26024,-18.07979 -29.93549,-42.47046 -40.44209,-67.96978 -10.59,-25.41404 -18.09471,-51.85147 -13.5085,-75.73044 4.58623,-23.87896 21.26338,-45.19947 18.92858,-63.27927 -2.4182,-17.99451 -23.76495,-32.83357 -48.36375,-33.68638 -24.59879,-0.85282 -52.44962,12.28061 -77.1318,23.6231 -24.76558,11.34251 -46.44587,21.06468 -58.95373,39.05917 -12.50786,18.0798 -15.8433,44.51723 -27.51732,68.99318 -11.67399,24.39064 -31.68658,46.90511 -49.78129,52.53371 -18.01131,5.7139 -34.18815,-5.37276 -53.03332,-17.31225 C 111.92211,583.77756 90.241813,570.98525 67.894432,557.85182 45.463665,544.6331 22.449197,531.15854 10.858579,524.42125 -0.64865472,517.5987 -0.64865472,517.5987 -0.64865472,517.5987 c 0,0 0,0 0,45.11419 0,45.1142 0,135.34258 0,180.45678 0,45.11419 0,45.11419 0,45.11419 0,0 0,0 10.67337572,6.82255 10.756762,6.82258 32.103515,20.55298 53.116724,34.53923 21.013207,13.98626 41.526095,28.14306 63.623335,35.81845 22.09721,7.67539 45.77877,8.86933 71.04465,14.92435 25.26588,6.14031 52.28287,17.22697 80.88417,23.02616 28.60132,5.88447 58.95373,6.39616 87.55505,10.83081 28.60131,4.43467 55.61829,12.62174 83.55251,19.01789 27.93423,6.39616 56.78571,11.00138 83.80268,12.53646 26.93359,1.53508 51.94932,0.17057 64.9575,8.78404 13.00818,8.69879 14.00881,27.46082 14.59251,36.84185 0.50031,9.38105 0.50031,9.38105 0.50031,9.38105 0,0 0,0 9.58937,0 9.58936,0 28.76807,0 38.35745,0 9.58934,0 9.58934,0 9.58934,0 0,0 0,0 7.67151,-10.91612 7.67148,-11.0014 23.09784,-32.8336 45.36184,-42.21462 22.26398,-9.38102 51.44901,-6.31086 80.38386,-7.67537 28.85148,-1.4498 57.53617,-7.41953 86.38763,-13.21873 28.93487,-5.88446 58.11987,-11.51308 83.7193,-10.66024 25.51604,0.85282 47.52974,8.18707 68.79324,4.09353 21.2634,-4.09353 41.7763,-19.78543 65.4578,-31.72492 23.5981,-11.93947 50.2816,-20.12655 77.9657,-26.011 27.6006,-5.79918 56.2854,-9.21047 83.4691,-9.03991 27.2672,0.0853 53.1167,3.83769 79.1331,10.23385 25.933,6.39615 52.1161,15.43605 75.1306,25.1582 23.0978,9.63686 43.1105,19.8707 52.2829,13.47457 9.1723,-6.39615 7.5046,-29.42231 21.4301,-42.47047 13.8421,-13.13343 43.3605,-16.20357 71.7952,-15.35075 28.5179,0.85281 56.0351,5.62861 85.3869,3.83768 29.2684,-1.87621 60.4547,-10.40441 90.9739,-16.37415 30.6024,-5.96974 60.6215,-9.38102 88.8058,-13.21871 28.2677,-3.8377 54.6177,-8.1018 79.2165,-15.52133 24.5987,-7.33426 47.4465,-17.90922 61.4553,-21.14994 14.0087,-3.15544 19.3455,0.85283 21.9304,2.89958 2.6684,2.04677 2.6684,2.04677 2.6684,2.04677 0,0 0,0 0,-19.52959 0,-19.44429 0,-58.41818 0,-77.94776 0,-19.44431 0,-19.44431 0,-19.44431 0,0 0,0 -11.424,-4.86108 -11.3404,-4.86107 -34.188,-14.58321 -34.188,-23.53783 0,-8.86934 22.8476,-17.05641 34.188,-21.06465 11.424,-4.09356 11.424,-4.09356 11.424,-4.09356 0,0 0,0 0,-14.58321 0,-14.49795 0,-43.6644 0,-58.16234 0,-14.58324 0,-14.58324 0,-14.58324 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.04676 0,-1.96149 0,-6.05503 0,-8.10179 0,-1.96149 0,-1.96149 0,-1.96149 0,0 0,0 -3.9193,-0.85282 -3.8356,-0.85282 -11.674,-2.47318 -25.8494,-10.66026 -14.1756,-8.18708 -34.6887,-23.02614 -58.0366,-37.95049 -23.3479,-14.92436 -49.5311,-29.934 -72.7123,-44.43194 -23.1813,-14.49795 -43.5274,-28.4842 -58.1199,-41.70291 -14.5924,-13.21871 -23.4313,-25.6699 -39.0245,-25.41406 -15.5932,0.25585 -37.7738,13.38928 -61.8723,23.02616 -24.015,9.63686 -49.8646,15.94775 -71.9619,12.53646 -22.0973,-3.41129 -40.4421,-16.54472 -61.4553,-17.22697 -20.9298,-0.68226 -44.6114,10.91608 -69.2102,22.42917 -24.5988,11.51307 -50.1147,22.94087 -79.2998,30.27512 -29.185,7.41954 -62.039,10.83081 -91.2238,13.81568 -29.1852,2.98487 -54.7012,5.54335 -59.8711,-5.28748 -5.17,-10.74553 10.173,-34.96563 29.7686,-53.38655 19.5958,-18.5062 43.444,-31.2985 69.2936,-43.49383 25.8496,-12.28062 53.7004,-23.87897 79.2164,-25.49933 25.5994,-1.53508 48.9476,6.99312 72.8793,1.87621 23.8482,-5.11693 48.3636,-23.87897 71.3781,-40.25312 23.098,-16.28885 44.7783,-30.27512 50.1982,-47.33152 5.4201,-17.05642 -5.4199,-37.18298 -12.0909,-56.11558 -6.6708,-18.9326 -9.1723,-36.5007 3.1687,-40.50895 12.4245,-4.00827 39.6082,5.71388 66.7086,2.3026 27.1003,-3.41128 54.1173,-19.956 82.4686,-25.75517 28.351,-5.79918 58.0363,-1.02339 83.8861,8.35763 25.8494,9.38104 47.8633,23.36729 68.543,23.87898 20.6796,0.59696 40.1919,-12.19534 54.4509,-19.18846 14.3422,-6.99314 23.5147,-8.27236 28.101,-8.86932 4.5862,-0.59698 4.5862,-0.59698 4.5862,-0.59698 0,0 0,0 0,-18.250361 0,-18.250355 0,-54.751061 0,-73.001415 0,-18.2503547 0,-18.2503547 0,-18.2503547 0,0 0,0 -0.1668,-0.3411281 -0.083,-0.34112809 -0.417,-0.93810226 -0.5004,-1.27923034 -0.1667,-0.34112808 -0.1667,-0.34112808 -0.1667,-0.34112808 0,0 0,0 0,0 0,0 0,0 -54.034,0 -54.0339,0 -162.1854,0 -216.2193,0 -54.0338,0 -54.0338,0 -54.0338,0 0,0 0,0 0.5836,1.96148652 0.5004,2.0467688 1.5843,5.969742 -4.0858,5.969742 -5.587,0 -17.928,-3.9229732 -24.182,-5.969742 -6.1705,-1.96148652 -6.1705,-1.96148652 -6.1705,-1.96148652 0,0 0,0 -5.8369,0 -5.8371,0 -17.5945,0 -23.4315,0 -5.837,0 -5.837,0 -5.837,0 0,0 0,0 -1.7512,1.87620452 -1.6676,1.7909226 -5.1698,5.5433318 -9.0055,5.5433318 -3.8358,0 -8.0884,-3.7524092 -10.1731,-5.5433318 -2.1681,-1.87620452 -2.1681,-1.87620452 -2.1681,-1.87620452 0,0 0,0 -193.3715,0 -193.3715,0 -580.03129,0 -773.40285,0 -193.37155,0 -193.37155,0 -193.37155,0 0,0 0,0 -0.33354,0.17056399 -0.33354,0.0852821 -1.00063,0.42641018 -1.50094,0.42641018 -0.50031,0 -0.75048,-0.34112809 -0.91726,-0.42641018 -0.16676,-0.17056399 -0.16676,-0.17056399 -0.16676,-0.17056399 0,0 0,0 -5.08653,0 -5.16992,0 -15.42637,0 -20.51291,0 -5.16991,0 -5.16991,0 -5.16991,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -21.51352,0 -21.51353,0 -64.62396,0 -86.13747,0 -21.51353,0 -21.51353,0 -21.51353,0 0,0 0,0 -3.75236,4.69051162 C 252.9274,8.9766857 245.33931,18.35771 230.1631,22.62181 215.07029,26.885912 192.22258,26.033091 172.12661,21.342581 152.03066,16.652068 134.68641,8.1238654 126.0143,3.8597642 c -8.75551,-4.26410142 -8.75551,-4.26410142 -8.75551,-4.26410142 0,0 0,0 -19.595645,0 -19.679037,0 -59.037112,0 -78.632763,0 -19.67903672,0 -19.67903672,0 -19.67903672,0 M 1037.087,396.75406 c 7.0878,20.46769 17.9279,46.56399 25.2659,71.89275 7.4213,25.32876 11.2571,49.71942 -0.834,62.25588 -12.0907,12.53646 -40.1084,13.04816 -68.04264,14.49794 -27.93423,1.44982 -55.78507,3.66714 -72.0453,-8.9546 -16.26021,-12.62174 -20.92982,-40.25312 -21.68029,-67.20224 -0.66708,-27.0344 2.66834,-53.47183 17.42762,-70.10183 14.6759,-16.62999 40.85903,-23.45255 60.45468,-30.53096 19.59564,-7.16369 32.60383,-14.49795 40.85913,-10.83082 8.1717,3.66713 11.5071,18.5062 18.5949,38.97388"),S(K,"style","display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision"),S(K,"id","path201"),S(K,"fill","#ecf2f9")]),O),H(Q,"path",F([S(K,"d","m 8.8573208,-0.40433722 c 0,0 0,0 -1.5843293,1.70564052 -1.5843293,1.7909226 -4.7529877,5.2874858 -6.33731691,6.9931262 -1.58432931,1.7909225 -1.58432931,1.7909225 -1.58432931,1.7909225 0,0 0,0 0,12.19533 0,12.19533 0,36.585991 0,48.781321 0,12.195329 0,12.195329 0,12.195329 0,0 0,0 9.00566092,4.605229 9.0890468,4.690512 27.1003688,14.071539 44.3612198,21.491069 17.26085,7.33426 33.604456,12.79231 51.865924,17.73866 18.1781,4.94636 38.19067,9.55159 48.78068,22.42917 10.5066,12.96288 11.67401,34.28337 14.25896,53.21599 2.66834,18.84733 6.83763,35.39205 16.67715,49.03717 9.9229,13.64513 25.43266,24.39066 42.52673,26.94912 17.09408,2.55846 35.77249,-3.07015 53.53366,-10.23384 17.76114,-7.07841 34.77185,-15.60661 45.69538,-28.39892 11.00693,-12.79231 16.01006,-29.84872 25.59942,-42.89686 9.58937,-13.13343 23.76495,-22.17333 26.09976,-34.70978 2.41817,-12.53647 -7.08779,-28.39892 -16.51039,-44.94363 -9.42259,-16.45943 -18.92857,-33.51584 -14.84266,-46.478707 4.00251,-12.877587 21.51352,-21.746918 40.27531,-20.894097 18.76179,0.852819 38.77437,11.427791 58.95374,17.056404 20.09595,5.713897 40.44208,6.566717 60.28788,5.969742 19.84581,-0.511691 39.35809,-2.558461 57.70294,2.558461 18.34487,5.116922 35.52234,17.397534 52.19948,20.21184 16.67716,2.814307 32.85399,-3.667126 51.19885,-11.257226 18.34488,-7.504819 38.85777,-16.033021 55.86845,-15.180201 16.92731,0.85282 30.26904,11.086662 47.94682,19.78543 17.59439,8.613485 39.60822,15.777184 58.62018,14.924354 19.01195,-0.85283 35.18878,-9.722151 53.11672,-13.815688 17.92793,-4.093537 37.60698,-3.581845 46.7794,0.682256 9.17243,4.264102 7.83827,12.280602 -2.16802,22.599732 -10.0063,10.40442 -28.6847,23.19671 -34.5217,37.43882 -5.837,14.15682 1.16739,29.8487 11.42384,42.89687 10.25645,13.04814 23.93171,23.62309 29.3518,38.20634 5.42006,14.6685 2.58495,33.43055 -7.50473,39.40029 -10.17306,5.96974 -27.68406,-0.85283 -47.52988,-3.58185 -19.92919,-2.64373 -42.10979,-1.27923 -62.87285,1.62036 -20.67967,2.81432 -39.85839,7.07841 -58.62019,16.45944 -18.76178,9.38102 -37.10665,23.87896 -51.94932,37.95049 -14.92605,14.07153 -26.2665,27.71666 -26.18312,44.34666 0.16677,16.63 11.84076,36.24486 24.51541,53.72768 12.59124,17.48282 26.2665,32.83358 41.52611,47.07568 15.25958,14.15682 32.27028,27.29025 43.11041,44.1761 10.84015,16.88582 15.50977,37.69464 10.50661,56.11556 -5.00314,18.50621 -19.67903,34.70978 -32.18689,48.95188 -12.50786,14.15682 -22.8477,26.43743 -36.43958,37.5241 -13.59187,11.08666 -30.60257,20.97938 -47.11295,26.43744 -16.51036,5.37276 -32.6872,6.22558 -51.28224,10.23383 -18.59502,3.92297 -39.775,11.08666 -57.286,11.93948 -17.51101,0.85282 -31.35304,-4.60523 -45.44524,-10.66025 -14.00879,-6.1403 -28.18438,-12.96286 -39.69161,-23.19671 -11.59063,-10.23384 -20.42951,-23.87897 -30.76934,-38.80332 -10.25644,-14.92436 -21.93046,-31.12794 -28.01762,-48.35492 -6.17054,-17.14169 -6.67085,-35.39203 -5.16991,-53.72767 1.50094,-18.33564 5.16991,-36.75655 11.50724,-53.72768 6.42069,-16.88585 15.59313,-32.23661 10.00627,-42.21459 -5.50344,-9.89273 -25.84957,-14.49795 -45.86215,-9.80744 -20.01258,4.69052 -39.69162,18.67675 -59.87097,25.32877 -20.17934,6.65199 -40.69225,6.14031 -57.70293,10.66025 -16.92731,4.51994 -30.26903,14.24209 -38.02391,27.46082 -7.83825,13.21871 -10.00629,29.93397 -12.00755,49.12243 -1.91787,19.18846 -3.58559,40.8501 -12.59125,58.58876 -9.08905,17.73865 -25.43266,31.7249 -39.19131,34.36865 -13.75865,2.72903 -24.93233,-5.79917 -41.27593,-13.04814 -16.427,-7.24898 -38.10729,-13.21873 -53.366884,-26.18158 C 71.313247,577.55197 62.474358,557.59597 48.965867,544.12141 35.457375,530.73213 17.446053,523.65372 8.3570062,520.15716 c -9.00566092,-3.49656 -9.00566092,-3.49656 -9.00566092,-3.49656 0,0 0,0 0,13.30399 0,13.304 0,39.91199 0,53.21599 0,13.30399 0,13.30399 0,13.30399 0,0 0,0 1.41755773,0.25585 1.33417199,0.34113 4.16928749,0.9381 5.92038829,11.34251 1.8344865,10.4044 2.668344,30.53097 15.1762067,41.7882 12.507863,11.25723 36.689731,13.47455 57.70294,20.63825 20.929822,7.0784 38.774372,19.01789 53.617042,32.66302 14.84266,13.64512 26.8502,28.99588 32.27028,44.77306 5.42007,15.77717 4.25268,31.98075 0,31.29849 -4.33606,-0.76754 -11.84077,-18.33563 -26.85022,-29.42229 C 123.59611,738.735 101.08196,734.12976 81.65308,730.88905 62.140816,727.64833 45.797207,725.60157 32.538874,723.89592 19.363925,722.105 9.3576353,720.6552 4.3544903,719.88766 c -5.00314502,-0.76753 -5.00314502,-0.76753 -5.00314502,-0.76753 0,0 0,0 0,11.68364 0,11.59835 0,34.88034 0,46.56398 0,11.59836 0,11.59836 0,11.59836 0,0 0,0 6.50408862,5.2022 6.5874741,5.20221 19.5956521,15.52135 34.7718581,22.25862 15.176207,6.73727 32.353669,9.80742 46.862791,18.50618 14.425737,8.69879 26.099747,22.85559 39.441457,32.66303 13.34172,9.80744 28.35115,15.26548 45.61201,17.65338 17.17747,2.38789 36.68973,1.8762 55.45152,6.99313 18.76179,5.11692 36.77312,15.86245 56.53554,21.14994 19.76242,5.28749 41.10917,4.94635 61.45529,6.56672 20.26275,1.53506 39.44147,4.94635 59.7042,9.0399 20.34612,4.1788 41.69289,8.95461 61.28853,13.13342 19.59565,4.09354 37.44019,7.50483 57.53618,5.79918 20.17934,-1.70564 42.6935,-8.52821 57.8697,-4.94636 15.09282,3.49657 22.93108,17.48281 26.93359,28.82533 4.00251,11.34252 4.25267,20.21185 4.33606,24.56123 0.0834,4.43469 0.0834,4.43469 0.0834,4.43469 0,0 0,0 9.58938,0 9.58935,0 28.68468,0 38.27406,0 9.58934,0 9.58934,0 9.58934,0 0,0 0,0 4.50284,-6.65203 4.50284,-6.73728 13.42511,-20.04129 26.01636,-32.40718 12.50786,-12.36588 28.68469,-23.79367 46.44586,-26.43742 17.76117,-2.72901 37.27343,3.24072 57.36939,4.94635 20.17934,1.70565 41.02579,-0.85282 60.03774,-3.24071 19.09534,-2.47318 36.2728,-4.69051 57.28602,-8.44291 21.01321,-3.66714 45.69538,-8.78407 62.70608,-6.65202 16.92727,2.13206 26.09977,11.51308 37.52347,8.69879 11.3406,-2.89959 25.0158,-17.90924 41.7764,-27.03441 16.8439,-9.12518 36.8565,-12.19532 55.0346,-19.0179 18.2615,-6.82256 34.6051,-17.39752 53.2835,-22.08803 18.5949,-4.69053 39.4415,-3.49657 58.6201,-5.11693 19.1788,-1.53508 36.6899,-5.79918 54.7845,-5.54333 18.0113,0.34112 36.6896,5.11691 57.7863,5.7139 21.0965,0.59697 44.7782,-3.15545 60.8715,4.09353 16.0935,7.24897 24.7657,25.49932 37.2736,36.84183 12.5078,11.34253 28.8515,15.94773 38.4407,10.83084 9.5894,-5.11693 12.4246,-19.95601 16.427,-33.26 4.0026,-13.38928 9.3393,-25.32877 23.0979,-30.87211 13.7586,-5.54332 35.9392,-4.6905 57.2027,-1.27922 21.2633,3.41127 41.6094,9.38102 61.2051,12.3659 19.5955,2.98486 38.4408,2.98486 58.2032,-2.38791 19.7624,-5.45805 40.2752,-16.20358 61.2886,-24.04953 21.0132,-7.84593 42.3599,-12.62173 62.1223,-17.65337 19.7625,-4.94637 37.7738,-10.06328 56.2854,-14.58323 18.5116,-4.60524 37.3568,-8.52819 53.5337,-11.85421 16.0933,-3.24071 29.4352,-5.79918 40.6922,-5.45804 11.257,0.42639 20.4295,3.75241 25.0158,5.37277 4.5862,1.62035 4.5862,1.62035 4.5862,1.62035 0,0 0,0 0,-12.28061 0,-12.28061 0,-36.92713 0,-49.20774 0,-12.3659 0,-12.3659 0,-12.3659 0,0 0,0 -9.0058,-2.98485 -9.089,-2.98488 -27.1003,-8.95462 -45.8621,-8.69876 -18.7618,0.34112 -38.274,6.82255 -50.3651,9.29573 -12.0908,2.38788 -16.7603,0.68225 -12.9247,-9.12518 3.9192,-9.80743 16.4269,-27.71665 22.0139,-46.30815 5.5035,-18.67675 4.1693,-37.9505 3.3353,-54.58049 -0.8337,-16.63 -1.1673,-30.61624 7.755,-33.25999 8.9223,-2.72903 26.9335,5.79918 42.6935,11.17194 15.6765,5.37278 29.0182,7.5901 35.6891,8.69877 6.6709,1.10867 6.6709,1.10867 6.6709,1.10867 0,0 0,0 0,-9.89272 0,-9.89271 0,-29.76342 0,-39.74142 0,-9.89272 0,-9.89272 0,-9.89272 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.13205 0,-2.13204 0,-6.39614 0,-8.52821 0,-2.13205 0,-2.13205 0,-2.13205 0,0 0,0 -6.4208,-2.13204 -6.3372,-2.13206 -19.1786,-6.39615 -32.9373,-14.75378 -13.7588,-8.44294 -28.4345,-20.89411 -45.0283,-31.12794 -16.5105,-10.23386 -34.8553,-18.25037 -48.7808,-29.33704 -13.842,-11.08664 -23.3479,-25.24347 -37.7736,-35.47732 -14.4258,-10.23383 -33.938,-16.5447 -43.7776,-27.46081 -9.8395,-10.9161 -10.1731,-26.60798 -16.2603,-29.67814 -6.0869,-3.15544 -18.0946,6.22559 -33.9379,12.87758 -15.8432,6.73729 -35.5223,10.66024 -55.2846,11.93948 -19.7626,1.27924 -39.4415,-0.0853 -54.034,-1.79092 -14.5927,-1.70563 -24.0986,-3.7524 -36.6065,-2.72901 -12.5077,1.02338 -28.0175,4.94634 -46.3625,8.95461 -18.3448,4.00826 -39.5247,7.93122 -56.869,16.03301 -17.3443,8.10181 -31.0194,20.3824 -49.3643,29.33703 -18.345,8.9546 -41.3595,14.58322 -62.2058,18.59148 -20.8465,4.00825 -39.5248,6.22557 -60.2046,9.21046 -20.6795,2.98486 -43.5273,6.73729 -57.3693,2.47317 -13.9254,-4.2641 -18.9286,-16.54471 -14.7594,-30.27511 4.1693,-13.8157 17.511,-29.16647 30.6026,-40.25313 13.0082,-11.08666 25.8498,-17.90922 43.444,-27.88721 17.6778,-9.89273 40.1919,-23.02616 61.7055,-32.49244 21.5968,-9.55161 42.1097,-15.52135 60.0377,-15.94776 17.9279,-0.42641 33.2709,4.69052 49.5312,3.58185 16.2602,-1.19394 33.4376,-8.5282 50.0314,-15.26548 16.5105,-6.652 32.3536,-12.62174 49.698,-20.04128 17.4275,-7.33425 36.2727,-16.20359 43.2772,-30.70154 6.9209,-14.49793 1.9178,-34.62449 -8.5055,-49.54886 -10.4232,-14.92435 -26.2664,-24.64649 -31.5198,-36.41541 -5.3366,-11.76893 0,-25.75519 8.8389,-29.25174 8.9223,-3.58186 21.4302,3.24072 40.0253,4.77579 18.6782,1.62036 43.3605,-2.13206 64.3736,-8.78405 21.0134,-6.65199 38.1907,-16.37415 56.7025,-18.16507 18.5116,-1.8762 38.1906,4.09353 55.2013,12.02477 16.9273,8.01651 31.1028,17.90923 47.5298,23.36727 16.3436,5.37277 35.0221,6.22559 52.7834,4.51996 17.761,-1.70565 34.7717,-5.96975 48.6139,-11.59836 13.9253,-5.71391 24.7653,-12.70703 30.1854,-16.28887 5.4202,-3.49657 5.4202,-3.49657 5.4202,-3.49657 0,0 0,0 0,-14.839069 0,-14.839073 0,-44.602501 0,-59.441573 0,-14.839073 0,-14.839073 0,-14.839073 0,0 0,0 -2.6684,1.876205 -2.5849,1.876204 -7.9217,5.713896 -17.5945,7.5901 -9.756,1.876204 -23.9317,1.876204 -39.1079,3.41128 -15.0928,1.620359 -31.2695,4.690513 -48.7805,1.193948 -17.5112,-3.581844 -36.3563,-13.815687 -51.1155,-16.971122 -14.7593,-3.070153 -25.2659,0.85282 -40.2755,2.046768 -15.0094,1.108667 -34.5215,-0.596974 -54.3674,0.852821 -19.8458,1.364512 -40.1919,5.969741 -58.2032,9.636867 -18.0947,3.667129 -33.9381,6.566718 -50.8653,8.784051 -17.0107,2.302614 -35.022,4.008256 -49.1976,-3.240717 -14.0922,-7.248972 -24.3488,-23.452558 -29.4352,-31.5543507 -5.0865,-8.10179252 -5.0865,-8.10179252 -5.0865,-8.10179252 0,0 0,0 -25.933,0 -25.933,0 -77.7988,0 -103.7318,0 -25.9331,0 -25.9331,0 -25.9331,0 0,0 0,0 -3.8357,3.66712712 -3.8358,3.7524092 -11.5906,11.0866631 -22.1806,11.0866631 -10.59,0 -24.0983,-7.3342539 -30.7694,-11.0866631 -6.754,-3.66712712 -6.754,-3.66712712 -6.754,-3.66712712 0,0 0,0 -5.9205,0 -5.9204,0 -17.6779,0 -23.5982,0 -5.837,0 -5.837,0 -5.837,0 0,0 0,0 -5.7537,2.13205072 -5.6702,2.1320507 -17.0941,6.3961519 -27.4337,6.3961519 -10.4232,0 -19.7625,-4.2641012 -24.3488,-6.3961519 -4.6697,-2.13205072 -4.6697,-2.13205072 -4.6697,-2.13205072 0,0 0,0 -33.3543,0 -33.3542,0 -100.0628,0 -133.4172,0 -33.4376,0 -33.4376,0 -33.4376,0 0,0 0,0 -2.0846,4.00825532 -2.1682,3.9229732 -6.5041,11.9394829 -18.0947,14.4979449 -11.5907,2.558461 -30.43581,-0.341128 -42.19321,-4.264101 -11.75738,-4.0082559 -16.26021,-9.1251776 -18.51164,-11.6836385 -2.3348,-2.55846072 -2.3348,-2.55846072 -2.3348,-2.55846072 0,0 0,0 -16.2602,0 -16.34363,0 -48.86407,0 -65.20767,0 -16.26022,0 -16.26022,0 -16.26022,0 0,0 0,0 -2.41818,4.69051162 -2.4182,4.6905113 -7.25457,14.0715356 -14.92607,14.0715356 -7.67148,0 -18.26147,-9.3810243 -23.51476,-14.0715356 -5.3367,-4.69051162 -5.3367,-4.69051162 -5.25331,-4.69051162 -0.0834,0 -0.0834,0 -28.01761,0 -28.01761,0 -84.05284,0 -112.07045,0 -28.01761,0 -28.01761,0 -28.01761,0 0,0 0,0 -0.75047,2.55846072 -0.75047,2.5584609 -2.33481,7.6753826 -7.75488,7.6753826 -5.42006,0 -14.84266,-5.1169217 -19.51227,-7.6753826 -4.6696,-2.55846072 -4.6696,-2.55846072 -4.6696,-2.55846072 0,0 0,0 -31.0195,0 -30.93611,0 -92.89173,0 -123.91122,0 -30.93611,0 -30.93611,0 -30.93611,0 0,0 0,0 -0.33354,0.17056399 -0.33354,0.0852821 -1.00063,0.42641018 -1.50094,0.42641018 -0.50031,0 -0.75048,-0.34112809 -0.91726,-0.42641018 -0.16676,-0.17056399 -0.16676,-0.17056399 -0.16676,-0.17056399 0,0 0,0 -5.08653,0 -5.16992,0 -15.42637,0 -20.51291,0 -5.16991,0 -5.16991,0 -5.16991,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -15.59313,0 -15.59313,0 -46.86279,0 -62.45592,0 -15.67652,0 -15.67652,0 -15.59313,0 -0.0834,0 -0.0834,0 -3.58559,8.10179252 -3.5856,8.1017927 -10.67338,24.3053787 -15.00945,41.3617837 -4.25266,17.056405 -5.58685,34.965631 -2.41817,51.169211 3.16864,16.20359 11.00691,30.70155 9.42256,45.37005 -1.50092,14.58321 -12.34108,29.42229 -23.34799,30.7868 -10.92353,1.4498 -22.09724,-10.48969 -26.76683,-26.0963 -4.75299,-15.69188 -3.08527,-34.96563 -8.25519,-48.61075 C 220.90729,88.033125 208.89974,80.016614 193.22321,72.938207 177.5467,65.859798 158.03444,59.548928 139.4394,52.470519 120.84439,45.392112 102.99982,37.375601 85.238667,29.444371 67.477503,21.513143 49.632952,13.496633 40.794062,8.5502756 31.871788,3.6039181 31.871788,1.5571493 31.871788,0.61904703 c 0,-1.02338425 0,-1.02338425 0,-1.02338425 0,0 0,0 -3.835745,0 -3.835744,0 -11.507234,0 -15.342978,0 -3.8357442,0 -3.8357442,0 -3.8357442,0 M 990.14083,333.30423 c -14.5925,11.68365 -34.93864,16.80056 -54.53429,20.63826 -19.59565,3.83769 -38.44084,6.39616 -56.53553,5.79918 -18.09471,-0.51169 -35.27218,-4.2641 -53.11673,-4.2641 -17.76116,0 -36.10602,3.75241 -40.85901,9.38102 -4.6696,5.71389 4.16929,13.38928 17.51101,21.32051 13.34172,8.01651 31.18626,16.20357 42.94366,29.42229 11.84077,13.21873 17.67777,31.46907 23.76494,50.91338 6.17053,19.4443 12.50785,40.25311 14.09218,60.97664 1.50095,20.72354 -1.83449,41.53235 5.42009,47.92851 7.17117,6.39614 25.01571,-1.62036 44.69475,-3.8377 19.76242,-2.3026 41.44272,1.10866 62.87285,1.10866 21.34675,0 42.52685,-3.41126 60.53815,-2.8143 18.0947,0.5117 33.1042,5.11693 42.9436,1.96149 9.9229,-3.15544 14.5925,-13.90098 21.5969,-28.14308 6.921,-14.24209 16.0934,-31.81019 10.8401,-44.51721 -5.3366,-12.62174 -25.0157,-20.29712 -35.8558,-33.34528 -10.8402,-13.13342 -12.8414,-31.55434 -13.9254,-52.44844 -1.0841,-20.89409 -1.4176,-44.26136 -9.7562,-63.87623 -8.3386,-19.61488 -24.6822,-35.47733 -34.4383,-45.6259 -9.7562,-10.06327 -12.7581,-14.32738 -18.7618,-7.33424 -6.0037,6.90783 -14.8427,25.15818 -29.43517,36.75654 m 153.51327,422.57246 c 8.0883,11.51307 11.4238,18.67675 4.1691,25.92574 -7.1711,7.24898 -25.0156,14.58321 -32.5203,10.91609 -7.5048,-3.66711 -4.6697,-18.5062 -3.8358,-33.6864 0.8339,-15.18019 -0.3336,-30.87209 5.5035,-30.70152 5.837,0.17056 18.6784,16.03302 26.6835,27.54609"),S(K,"style","display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision"),S(K,"id","path203"),S(K,"fill","#ecf2f9")]),O),H(Q,"path",F([S(K,"d","m 346.31944,-0.40433722 c 0,0 0,0 -2.9185,1.10866634 -2.91849,1.19394838 -8.83889,3.41128098 -13.50849,10.66025388 -4.75299,7.248972 -8.42196,19.529583 -13.84203,30.27512 -5.42008,10.830816 -12.59125,20.21184 -16.51037,31.042658 -3.91913,10.745537 -4.41944,23.026147 -1.91789,32.918859 2.50158,9.978 8.00504,17.65337 12.09095,25.75519 4.00251,8.10178 6.50409,16.62999 3.41881,25.75515 -3.00189,9.03991 -11.67399,18.76205 -18.17808,27.97251 -6.5041,9.21046 -11.00693,18.07979 -17.67779,24.73179 -6.67086,6.652 -15.50975,11.25723 -25.09912,11.08666 -9.58935,-0.17056 -19.92919,-4.94635 -28.10099,-12.19532 -8.1718,-7.24898 -14.34234,-16.97113 -18.59503,-27.88723 -4.33606,-10.9161 -6.83763,-23.1967 -8.33857,-34.79507 -1.58432,-11.68364 -2.08465,-22.77031 -6.58747,-32.83358 C 186.13542,103.04276 177.79686,94.002867 165.95607,89.141791 154.19868,84.280716 138.8557,83.769024 126.26446,82.063384 113.58983,80.357743 103.58353,77.458154 94.411101,72.682361 85.238667,67.821285 76.900092,60.998723 67.477503,55.711237 57.971528,50.509032 47.464923,46.756625 38.792805,43.68647 30.204073,40.531036 23.533214,37.972577 17.279281,37.375601 11.02535,36.778626 5.1883478,38.143138 2.2698465,38.825395 c -2.91850122,0.682257 -2.91850122,0.682257 -2.91850122,0.682257 0,0 0,0 0,6.993127 0,6.993125 0,20.979378 0,27.972503 0,6.907846 0,6.907846 0,6.907846 0,0 0,0 4.00251602,1.023383 4.0859017,1.023387 12.0909327,2.98487 21.5969087,6.73728 9.422591,3.667128 20.262738,9.125179 30.435799,13.048149 10.089676,4.00826 19.595651,6.56671 27.350527,10.57496 7.754874,3.92299 13.92542,9.38104 22.680924,12.02478 8.7555,2.72902 20.09597,2.72902 28.60131,5.88444 8.50534,3.07017 14.00881,9.38104 16.67715,17.90925 2.66835,8.52819 2.33481,19.27374 5.42007,30.78681 3.08528,11.51307 9.42261,23.79368 12.25771,34.88035 2.75172,11.08667 1.91787,20.97937 4.41945,30.70154 2.50156,9.63687 8.33857,19.01787 17.26085,26.52268 8.83888,7.59011 20.84643,13.21872 30.68595,13.13344 9.83952,-0.17055 17.67777,-6.14029 27.35053,-9.55158 9.75613,-3.41128 21.43013,-4.26411 32.85398,-4.94635 11.34047,-0.76755 22.51415,-1.27924 34.18816,-5.54334 11.67401,-4.2641 23.84833,-12.2806 27.51729,-22.51446 3.58559,-10.23382 -1.41756,-22.68501 0.41693,-31.21322 1.75112,-8.5282 10.42323,-13.13343 19.01195,-19.10317 8.58875,-5.96973 17.26086,-13.30399 21.01323,-22.17333 3.75234,-8.78404 2.58494,-19.0179 -1.66773,-26.69327 -4.33606,-7.67539 -11.84077,-12.7923 -20.42951,-19.4443 -8.67211,-6.73728 -18.34487,-14.92436 -23.26462,-24.64651 -4.83636,-9.636869 -4.83636,-20.723532 0.16676,-27.716657 5.00315,-6.907845 15.00944,-9.807434 25.43266,-12.877587 10.42322,-3.155435 21.26337,-6.566716 32.68722,-6.822561 11.34046,-0.34113 23.34801,2.55846 34.18815,4.946356 10.84016,2.387898 20.5129,4.434667 30.93613,6.993127 10.4232,2.55846 21.5969,5.628613 33.35428,5.372768 11.84079,-0.255848 24.34865,-4.008255 35.77249,-4.093539 11.34047,-0.170563 21.6803,3.240718 31.10289,7.078409 9.4226,3.837692 18.0947,8.101794 27.10037,13.815688 9.00566,5.628614 18.51162,12.792306 29.43516,15.009636 11.00693,2.30262 23.5148,-0.25585 32.68722,-4.264099 9.17243,-3.922974 15.00943,-9.381024 24.34865,-13.730407 9.2558,-4.434666 22.09722,-7.845947 33.43768,-11.683638 11.42385,-3.837692 21.43013,-8.101793 29.51855,-6.566717 8.00504,1.620359 14.17558,8.954613 21.93045,16.118304 7.75487,7.078409 17.26086,13.90097 28.10099,17.141688 10.84015,3.325999 23.01447,2.984869 34.68848,4.690509 11.67401,1.70565 22.8477,5.45805 32.43706,2.98487 9.58936,-2.38789 17.5944,-10.916097 25.51603,-16.629993 7.92165,-5.628613 15.75991,-8.528203 27.26715,-9.210459 11.50723,-0.682256 26.8502,0.682256 35.27218,7.419537 8.50534,6.651998 10.17305,18.591485 5.42007,24.305385 -4.6696,5.62861 -15.84328,5.11692 -28.18439,8.9546 -12.34108,3.8377 -26.01635,12.02477 -32.68721,21.57636 -6.67086,9.55159 -6.33732,20.29712 -1.66772,28.31363 4.75299,7.93123 13.92543,13.04814 22.68092,16.88585 8.75551,3.83768 17.09408,6.39616 22.51416,13.04815 5.42009,6.73727 7.92165,17.48281 9.42259,27.71666 1.58432,10.23383 2.08464,19.95599 -0.41693,29.76342 -2.50157,9.80743 -8.00502,19.70016 -15.42635,21.83221 -7.33796,2.13204 -16.51038,-3.49657 -25.93297,-8.95463 -9.50598,-5.37277 -19.17873,-10.48969 -31.60321,-10.74552 -12.34109,-0.34113 -27.35052,4.26408 -39.60822,7.67537 -12.17432,3.41129 -21.6803,5.62862 -32.10351,8.95461 -10.42323,3.24073 -21.7637,7.50482 -33.18754,11.9395 -11.42385,4.34938 -22.76432,8.95459 -32.93738,15.00963 -10.17305,6.14031 -19.01195,13.81568 -27.10036,22.17332 -8.08842,8.44293 -15.2596,17.48281 -20.26273,27.29026 -5.00316,9.80743 -7.83826,20.3824 -6.83763,31.55435 1.00061,11.25722 5.67022,23.1967 12.67462,31.98075 6.92102,8.86934 16.09345,14.49794 25.43265,20.38241 9.25583,5.79918 18.7618,11.76892 27.5173,17.14169 8.75552,5.45804 16.76055,10.23383 25.51604,17.48281 8.75551,7.24897 18.26148,16.97112 22.68093,29.59287 4.41944,12.62174 3.91913,28.31364 6.25394,40.67952 2.33479,12.3659 7.67148,21.40579 6.42069,30.53097 -1.25079,9.12517 -9.08905,18.16507 -17.51101,26.26685 -8.50534,8.1018 -17.67778,15.26549 -27.93421,21.23524 -10.33984,5.96974 -21.68031,10.74553 -28.76809,16.63 -7.08779,5.79918 -9.92291,12.62174 -13.67528,21.57634 -3.75235,8.95462 -8.42195,20.04128 -16.92731,24.47596 -8.50533,4.34937 -20.67966,2.13204 -31.68658,2.21732 -11.0069,0.17057 -20.67965,2.72902 -30.43579,5.28749 -9.75613,2.55846 -19.42888,5.11692 -30.18564,8.69876 -10.67338,3.49658 -22.34738,8.10179 -32.93737,9.80745 -10.50661,1.70563 -20.01258,0.51168 -27.35052,-3.15545 -7.33795,-3.66712 -12.67463,-9.97798 -19.42888,-15.1802 -6.83763,-5.28748 -15.17622,-9.55159 -23.26464,-11.68364 -8.00502,-2.13204 -15.84328,-2.13204 -22.34736,-7.24897 -6.5041,-5.11692 -11.84079,-15.35076 -17.67779,-23.62313 -5.83701,-8.18707 -12.17431,-14.49794 -20.09596,-21.74691 -7.92167,-7.24898 -17.42763,-15.43604 -23.09786,-25.15821 -5.67024,-9.63686 -7.67149,-20.72352 -6.25393,-32.663 1.41755,-11.93948 6.08715,-24.73179 6.92102,-36.24486 0.83386,-11.51307 -2.16804,-21.74692 1.16739,-31.55435 3.33544,-9.80743 13.00818,-19.18846 19.67904,-28.31364 6.67085,-9.03989 10.33983,-17.90922 11.25707,-27.80194 1.00064,-9.97799 -0.66708,-21.06467 -7.50471,-25.07292 -6.75425,-3.92297 -18.7618,-0.85282 -30.10226,1.27923 -11.42384,2.13206 -22.26398,3.32601 -30.85271,7.24898 -8.67213,4.00825 -15.00945,10.83081 -25.59943,15.77718 -10.59,5.03163 -25.26588,8.10178 -38.94115,9.80743 -13.59188,1.70564 -26.09974,2.04677 -36.35619,2.8996 -10.33984,0.85281 -18.34487,2.21731 -25.01572,7.0784 -6.67086,4.86108 -12.00755,13.04813 -15.75991,24.04953 -3.75235,10.91609 -5.92039,24.56123 -6.33731,36.0743 -0.41694,11.51307 0.91723,20.89408 1.08401,30.2751 0.16678,9.38103 -1.00063,18.76206 -5.16992,28.31365 -4.1693,9.4663 -11.34046,19.18846 -20.26274,28.99588 -8.92228,9.80744 -19.42887,19.70015 -26.01635,22.42917 -6.50408,2.72903 -9.00567,-1.87619 -14.84265,-5.96974 -5.83702,-4.09352 -15.00946,-7.84594 -25.84959,-12.11004 -10.84015,-4.2641 -23.34801,-9.0399 -34.18816,-14.32737 -10.840152,-5.28749 -20.012585,-10.91611 -26.516674,-18.0798 -6.587473,-7.0784 -10.423217,-15.60662 -16.26022,-25.1582 -5.837003,-9.4663 -13.675263,-20.04128 -22.263996,-27.11969 -8.588732,-7.0784 -18.094708,-10.83081 -25.682811,-12.7923 -7.671489,-1.96148 -13.5084912,-2.13206 -16.4269925,-2.21732 -2.91850122,-0.17057 -2.91850122,-0.17057 -2.91850122,-0.17057 0,0 0,0 0,7.16368 0,7.16369 0,21.40579 0,28.56948 0,7.16368 0,7.16368 0,7.16368 0,0 0,0 4.41944472,2.13206 4.5028305,2.21734 13.341721,6.65199 19.345494,13.98626 6.003774,7.33426 9.005661,17.56809 11.090305,29.93399 2.084644,12.3659 3.252044,26.86384 9.505975,33.6864 6.253931,6.82256 17.594394,5.96975 29.852099,4.51994 12.257705,-1.3645 25.265881,-3.41127 34.605097,0 9.33919,3.41128 14.84265,12.28061 21.0132,20.89411 6.08715,8.69877 12.75801,17.22696 23.01446,21.74691 10.33984,4.60524 24.18187,5.11692 34.77187,3.15544 10.58998,-1.9615 17.76115,-6.56671 23.59816,-4.86107 5.83701,1.70563 10.33984,9.72214 9.75613,17.82393 -0.5837,8.1018 -6.08716,16.28888 -8.58872,24.39066 -2.50158,8.10178 -2.00126,16.11831 -1.83449,25.1582 0.16676,9.12518 -0.16677,19.35902 5.2533,27.20496 5.42007,7.76068 16.59376,13.21871 25.7662,17.05641 9.17243,3.8377 16.3436,6.05503 21.51352,14.15682 5.16992,8.1018 8.1718,22.08806 14.75927,32.40717 6.50409,10.40441 16.51038,17.22698 17.59439,21.23524 1.16741,3.92296 -6.67086,5.11691 -15.84329,2.64373 -9.17242,-2.38789 -19.67904,-8.35763 -27.76746,-15.77716 -8.08841,-7.33427 -13.59187,-16.20361 -21.26336,-19.44432 -7.67149,-3.24072 -17.34423,-1.02338 -27.93423,1.53508 -10.58998,2.55846 -21.93045,5.45805 -31.43642,2.47318 -9.42259,-2.98486 -16.9273,-11.85419 -24.5988,-17.82394 -7.5881,-5.96975 -15.42636,-9.0399 -21.68029,-16.20359 -6.25393,-7.07841 -10.92353,-18.16506 -16.67715,-23.53783 -5.67023,-5.45806 -12.341092,-5.11693 -21.930454,-5.88447 -9.58936,-0.68226 -22.097223,-2.38789 -31.519813,-7.33425 -9.505975,-5.03164 -15.843292,-13.21872 -24.515411,-17.22698 -8.588732,-4.00825 -19.428879,-3.75241 -24.8489529,-3.58183 -5.42007382,0.17055 -5.42007382,0.17055 -5.42007382,0.17055 0,0 0,0 0,7.41954 0,7.41954 0,22.34389 0,29.76342 0,7.41954 0,7.41954 0,7.41954 0,0 0,0 1.66771492,0.68225 1.6677151,0.68227 5.0031451,1.9615 10.2564478,6.48144 5.336687,4.51995 12.507862,12.19533 20.179352,18.16508 7.671488,5.96974 15.67652,10.23384 25.599424,12.7923 9.83952,2.55847 21.513523,3.41128 30.936113,8.5282 9.505976,5.11693 16.677143,14.49794 23.514793,23.19672 6.83762,8.61348 13.17494,16.62999 20.59626,21.32051 7.33795,4.6905 15.67653,6.05501 23.59818,6.22558 7.92164,0.17056 15.42635,-1.02338 26.43328,-2.30261 10.92353,-1.27924 25.43265,-2.64374 35.6891,0.59698 10.25646,3.24071 16.42699,11.25721 25.59943,16.37414 9.17243,5.11693 21.34675,7.33425 32.93736,8.61348 11.50724,1.27924 22.3474,1.62038 34.02138,3.15544 11.67401,1.53508 24.18187,4.43465 35.68911,5.7139 11.59063,1.27923 22.09722,0.93809 33.10414,3.66712 11.00692,2.72904 22.34739,8.35765 33.938,11.68363 11.50723,3.24072 23.18124,4.09355 34.0214,7.93124 10.84014,3.83769 20.84643,10.66026 31.93675,16.20359 11.17368,5.54332 23.34799,9.80742 34.52168,8.27235 11.09032,-1.62036 21.0966,-8.95461 30.85273,-15.77718 9.67275,-6.82256 19.17872,-13.13343 30.51919,-15.77717 11.42385,-2.72902 24.76556,-1.8762 31.43642,5.62862 6.67085,7.5901 6.67085,21.74691 6.75425,33.26 0.16676,11.51307 0.41692,20.3824 0.50031,24.73178 0.0834,4.43469 0.0834,4.43469 0.0834,4.43469 0,0 0,0 9.50599,0 9.50597,0 28.51792,0 37.94052,0 9.50596,0 9.50596,0 9.50596,0 0,0 0,0 0.83386,-6.82259 0.83387,-6.82256 2.4182,-20.46769 8.17182,-27.88723 5.67023,-7.33425 15.34297,-8.5282 24.01509,-12.62174 8.58873,-4.09353 16.09345,-11.25723 26.68343,-14.32738 10.50662,-3.15543 24.18186,-2.30261 35.68911,-2.89959 11.50723,-0.51168 21.01321,-2.55846 30.26902,-3.92297 9.33921,-1.44979 18.51165,-2.30261 30.35241,-1.44979 11.75739,0.85282 26.26653,3.41127 38.0239,3.41127 11.84079,0 21.01321,-2.55845 32.10352,-2.55845 11.1737,0 24.18188,2.55845 35.77249,0 11.50723,-2.55846 21.51353,-10.23386 32.52045,-14.07154 10.92353,-3.83769 22.93108,-3.83769 30.51917,1.27924 7.6715,5.11691 11.0069,15.35075 18.345,18.33563 7.4212,2.98486 18.7615,-1.27923 26.183,-9.38103 7.3379,-8.1018 10.6734,-20.04127 18.1781,-27.11969 7.5046,-7.16369 19.1788,-9.381 30.4358,-10.66024 11.2571,-1.27923 22.0972,-1.62037 31.8533,-2.98488 9.6728,-1.44979 18.3449,-4.00825 28.3512,-8.27236 10.0063,-4.2641 21.3467,-10.23382 32.5204,-14.6685 11.0903,-4.34939 21.9304,-7.24898 32.1036,-8.35764 10.0896,-1.10867 19.5956,-0.59696 30.0188,-1.53508 10.4233,-1.02338 21.7637,-3.58184 31.6865,-5.11691 9.8396,-1.62037 18.1781,-2.13206 28.6013,-0.59699 10.4233,1.53509 22.9311,5.28749 34.4385,6.65202 11.5905,1.44979 22.0971,0.59696 34.3548,-0.51171 12.2578,-1.19395 26.0998,-2.55846 35.6057,2.98487 9.4227,5.54334 14.4259,17.99451 19.2621,26.26687 4.9199,8.27236 9.5895,12.19534 16.0101,15.35077 6.4208,3.15543 14.4258,5.37277 23.1812,7.0784 8.7556,1.70564 18.2614,2.89961 23.765,-1.79092 5.5868,-4.69052 7.2545,-15.26548 5.3368,-24.04953 -2.0014,-8.78405 -7.5048,-15.94773 -6.1707,-21.49108 1.4176,-5.54333 9.7562,-9.46628 19.3456,-12.19532 9.5894,-2.72903 20.4295,-4.09353 32.2702,-4.86107 11.7574,-0.68226 24.5988,-0.68226 35.856,-0.93812 11.257,-0.34112 20.9298,-0.85281 31.9366,1.27925 11.0069,2.13205 23.1814,6.90785 35.2722,9.03989 12.0909,2.13204 24.0985,1.62035 34.1882,0.17056 10.1729,-1.44979 18.5116,-3.66713 29.6019,-7.50482 11.1737,-3.83769 25.0157,-9.29574 36.6896,-11.51308 11.6742,-2.30261 21.1802,-1.44979 30.7694,-4.00825 9.5895,-2.55846 19.2622,-8.5282 29.602,-13.38928 10.2565,-4.77579 21.0965,-8.5282 33.0208,-11.3425 12.0076,-2.81431 25.0157,-4.86108 36.6063,-2.81431 11.5073,1.96149 21.5135,7.93124 30.8527,5.96974 9.2559,-2.04676 17.9279,-11.93947 27.3506,-19.35903 9.4225,-7.41953 19.7624,-12.19532 29.4353,-12.36589 9.7559,-0.17055 18.9285,4.43467 25.1824,7.1637 6.2539,2.8143 9.5893,3.92296 11.2571,4.43465 1.6677,0.5117 1.6677,0.5117 1.6677,0.5117 0,0 0,0 0,-8.61349 0,-8.61347 0,-25.92574 0,-34.53922 0,-8.61346 0,-8.61346 0,-8.61346 0,0 0,0 -4.5862,-0.17058 -4.5863,-0.17056 -13.7588,-0.42641 -25.1825,-1.79093 -11.3405,-1.44979 -25.0159,-4.00824 -36.106,-2.30261 -11.0905,1.70564 -19.7625,7.67538 -30.019,12.96288 -10.2564,5.2022 -22.264,9.80741 -33.521,11.59835 -11.2572,1.8762 -21.7637,1.02338 -30.4358,2.13205 -8.5888,1.19394 -15.2596,4.26411 -25.6828,6.14031 -10.4232,1.87619 -24.5988,2.38788 -36.0227,4.2641 -11.3405,1.87621 -20.0125,4.94635 -29.2684,9.38102 -9.3392,4.43467 -19.3455,10.06327 -28.9348,14.24209 -9.5894,4.09355 -18.7618,6.652 -28.1012,11.76893 -9.2556,5.11693 -18.7616,12.79229 -28.351,14.7538 -9.5894,2.04674 -19.2621,-1.70565 -28.8515,-5.62862 -9.5892,-4.00825 -19.0953,-8.27237 -27.8508,-13.38929 -8.7555,-5.11692 -16.7606,-11.08666 -25.2659,-10.4044 -8.5054,0.76753 -17.3443,8.10178 -27.3504,10.66025 -10.0064,2.55846 -21.18,0.34112 -31.6868,-0.42641 -10.5899,-0.68226 -20.5962,0.17056 -30.0187,3.75241 -9.5061,3.49656 -18.3449,9.80744 -27.9342,11.59835 -9.5895,1.8762 -19.9292,-0.68226 -30.7694,-2.38789 -10.8402,-1.70565 -22.1807,-2.55846 -33.1875,-4.51996 -11.0069,-2.04676 -21.5135,-5.11691 -22.264,-9.38101 -0.6671,-4.26411 8.5052,-9.72215 13.5084,-18.33565 5.0031,-8.69876 5.8371,-20.63824 12.5078,-26.77856 6.671,-6.05502 19.1789,-6.39614 30.6859,-4.6905 11.5908,1.70564 22.0974,5.45804 32.6874,3.15544 10.5898,-2.30261 21.0965,-10.48969 31.0195,-16.80056 9.8394,-6.22559 19.012,-10.4897 29.1849,-10.74554 10.0898,-0.34113 21.2634,3.41128 32.7705,2.55846 11.5074,-0.85281 23.515,-6.31088 33.3545,-4.43465 9.8394,1.87619 17.6776,10.91607 25.8495,18.9326 8.1718,7.93123 16.844,14.75378 25.8496,15.86245 9.0057,1.19397 18.5117,-3.41128 26.5167,-8.35763 8.0884,-4.94635 14.7593,-10.40441 22.6809,-13.38928 7.9217,-2.98488 17.0941,-3.49657 27.3506,-4.2641 10.3397,-0.68226 21.6801,-1.53507 31.1862,-7.24898 9.4226,-5.62862 16.9273,-16.20357 26.3499,-21.14994 9.506,-4.94635 20.8465,-4.43466 32.2703,-5.96974 11.424,-1.53507 22.7643,-5.28749 28.768,-11.51307 6.004,-6.2256 6.5043,-15.09491 12.091,-22.34389 5.5868,-7.24897 16.0934,-12.87759 21.0965,-22.68503 5.0032,-9.80744 4.503,-23.79368 3.5023,-36.24485 -1.0007,-12.53647 -2.3347,-23.62313 -7.2545,-35.73318 -4.8364,-12.02476 -13.175,-25.15819 -19.2621,-36.75655 -6.1706,-11.68363 -10.0063,-21.91748 -8.9223,-30.18983 1.084,-8.18708 7.2546,-14.49795 15.4264,-11.76892 8.1717,2.72902 18.5116,14.32738 28.3511,21.74692 9.8395,7.41952 19.3455,10.48968 29.3517,15.6066 10.0063,5.11692 20.5129,12.2806 29.602,18.76204 9.0057,6.56672 16.5104,12.53645 25.4327,15.00964 8.8389,2.3879 19.1787,1.36452 24.2653,0.76754 5.1699,-0.51168 5.1699,-0.51168 5.1699,-0.51168 0,0 0,0 0,-5.28749 0,-5.28749 0,-15.86247 0,-21.14995 0,-5.28749 0,-5.28749 0,-5.28749 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-2.04676 0,-1.96149 0,-6.05503 0,-8.10179 0,-1.96149 0,-1.96149 0,-1.96149 0,0 0,0 -3.9193,-0.85282 -3.8356,-0.85282 -11.674,-2.47318 -20.4294,-5.79918 -8.7554,-3.41128 -18.4282,-8.5282 -26.2666,-15.60661 -7.7548,-7.16369 -13.5919,-16.20359 -21.3467,-21.66163 -7.8382,-5.37278 -17.5109,-7.07842 -27.8509,-9.38104 -10.2563,-2.21732 -21.0965,-5.11691 -31.353,-10.66024 -10.3399,-5.54333 -20.0125,-13.73041 -25.7661,-23.11144 -5.6703,-9.38102 -7.338,-19.95598 -14.4259,-24.90235 -7.0877,-4.94635 -19.5954,-4.43466 -30.6024,-8.9546 -10.9236,-4.51995 -20.4296,-14.24211 -21.7637,-24.30539 -1.4177,-10.06327 5.2532,-20.63825 3.5855,-27.9725 -1.6676,-7.41954 -11.6738,-11.68364 -21.2633,-10.40441 -9.5894,1.27923 -18.7618,8.10181 -25.4327,15.35075 -6.6707,7.24898 -10.84,14.92437 -18.9284,20.63826 -8.0052,5.62862 -20.0126,9.38102 -30.2691,6.90785 -10.2565,-2.3879 -18.9286,-10.91611 -29.1851,-13.04816 -10.2564,-2.13205 -22.2639,2.13205 -32.2703,8.95464 -10.0063,6.82255 -18.0113,16.20357 -22.7642,14.49793 -4.753,-1.70564 -6.0872,-14.49793 -11.4239,-22.17333 -5.2533,-7.67538 -14.4258,-10.23383 -24.8491,-8.27236 -10.4231,2.04677 -22.097,8.52821 -33.104,13.98626 -10.9236,5.37277 -21.2633,9.63686 -31.6866,14.32738 -10.4232,4.69051 -20.9298,9.80743 -30.5192,16.45942 -9.5894,6.73729 -18.2614,14.92436 -26.6834,20.38241 -8.5053,5.37278 -16.8439,7.93123 -28.3512,10.74553 -11.5906,2.8996 -26.2664,5.96975 -39.1912,7.67539 -12.9248,1.70565 -24.0985,2.04678 -35.4391,2.04678 -11.4238,0 -23.0978,-0.34113 -35.3555,2.98485 -12.1742,3.24073 -25.0157,10.06329 -37.3567,14.07154 -12.3411,3.92297 -24.3488,5.11692 -30.8528,-0.34112 -6.5042,-5.37278 -7.6716,-17.31226 -4.0025,-27.80194 3.5855,-10.57498 11.9242,-19.61487 19.2622,-27.46081 7.4212,-7.84595 13.7586,-14.32738 20.8463,-22.34389 7.0878,-7.93123 14.9261,-17.31226 21.6803,-21.74693 6.8377,-4.34938 12.6747,-3.83768 21.4301,-7.50482 8.7555,-3.66712 20.4296,-11.68363 32.9376,-17.22696 12.5076,-5.54334 25.8495,-8.61348 39.608,-10.9161 13.7588,-2.30262 27.9343,-3.66712 38.3576,-5.28749 10.4231,-1.53508 17.0939,-3.24071 24.432,-3.83769 7.4213,-0.51169 15.4263,0 23.6814,2.55846 8.1718,2.55847 16.5104,7.16368 25.2659,5.45805 8.7555,-1.70563 17.928,-9.72214 27.1005,-17.22696 9.1723,-7.50483 18.3449,-14.66852 28.3512,-19.78543 10.0061,-5.11693 20.8463,-8.18709 31.0194,-11.93949 10.0897,-3.66714 19.5956,-7.93123 28.6013,-12.87758 9.0056,-5.03165 17.6779,-10.66027 17.9279,-18.33565 0.2503,-7.67537 -7.7548,-17.39752 -10.4232,-28.99588 -2.6684,-11.68365 0.1669,-25.32876 -2.7516,-32.83359 -2.9186,-7.5901 -11.5909,-8.9546 -21.5971,-14.49793 -10.0061,-5.54334 -21.3467,-15.2655 -24.5986,-23.87898 -3.1688,-8.69876 1.8343,-16.37414 9.5059,-18.67677 7.588,-2.21732 17.928,0.85283 26.9335,4.00826 9.0057,3.15542 16.8441,6.22559 28.1845,9.38102 11.4238,3.15544 26.4333,6.22558 37.9404,2.72904 11.5907,-3.58186 19.5958,-13.81569 29.1017,-21.66164 9.4226,-7.76067 20.2628,-13.21871 31.9367,-15.77718 11.6741,-2.558459 24.1819,-2.21733 36.2727,0.42641 12.0911,2.72903 23.7651,7.84594 33.6046,11.25723 9.9229,3.41128 17.9279,5.11692 26.6,9.38101 8.5888,4.26411 17.7613,11.08667 27.5173,16.03304 9.6727,5.03163 20.0126,8.10179 29.602,9.12517 9.5893,1.02338 18.4281,-0.17057 27.7674,-1.70563 9.3392,-1.53509 19.0119,-3.58187 29.0182,-6.56672 10.0064,-2.98488 20.3462,-6.90785 26.4334,-12.02477 6.087,-5.11692 8.0883,-11.42779 11.924,-14.49795 3.9193,-3.15544 9.7563,-3.15544 12.6747,-3.15544 2.9186,0 2.9186,0 2.9186,0 0,0 0,0 0,-9.97799 0,-9.977996 0,-29.93399 0,-39.911988 0,-9.892715 0,-9.892715 0,-9.892715 0,0 0,0 -5.2533,-0.42641 -5.3368,-0.42641 -15.8434,-1.193948 -22.0973,1.620358 -6.2539,2.899589 -8.255,9.381024 -14.7593,10.830818 -6.504,1.449795 -17.6778,-2.302614 -25.2658,-1.108666 -7.6715,1.108666 -11.8407,7.078409 -17.2609,14.497945 -5.4201,7.334256 -12.0909,16.203585 -19.0119,16.203585 -7.0044,0 -14.1756,-8.869329 -21.18,-16.118304 -6.921,-7.248972 -13.5919,-12.877585 -23.348,-12.19533 -9.6728,0.682258 -22.5141,7.845947 -33.7714,7.845947 -11.2569,0 -20.9297,-7.163689 -31.9365,-13.645124 -11.0071,-6.566716 -23.1812,-12.536459 -33.9382,-12.792304 -10.6733,-0.341129 -19.8457,5.11692 -29.435,10.319125 -9.5894,5.287486 -19.5957,10.404407 -28.9348,16.544714 -9.2559,6.055024 -17.928,13.218713 -26.9336,15.60661 -9.0059,2.387898 -18.5118,0.170564 -29.0183,-2.984871 -10.5901,-3.155435 -22.2641,-7.078408 -33.9381,-9.381022 -11.6739,-2.302616 -23.348,-2.814307 -32.1035,0.852819 -8.7556,3.667127 -14.5924,11.683638 -19.7624,12.110048 -5.0866,0.426412 -9.5894,-6.73728 -12.1744,-16.629995 -2.6683,-9.977997 -3.5021,-22.770301 -7.8382,-32.748299 -4.2528,-9.892715 -12.091,-17.056405 -21.2633,-21.576353 -9.1724,-4.519947 -19.679,-6.566715 -30.8528,-6.396152 -11.0902,0.170565 -22.7643,2.387897 -34.4383,6.396152 -11.6739,4.008255 -23.3479,9.63687 -34.0214,14.668508 -10.7567,4.94636 -20.4294,9.21046 -31.6866,9.466307 -11.257,0.341128 -24.0985,-3.411283 -35.0219,-4.946358 -11.007,-1.535077 -20.1795,-1.023385 -29.9355,0 -9.6728,1.023384 -20.0127,2.387896 -31.2697,2.814307 -11.2572,0.42641 -23.4315,-0.08529 -34.6051,-0.852821 -11.0903,-0.682254 -21.0966,-1.535075 -33.3543,-4.775793 -12.1744,-3.325999 -26.6834,-8.954614 -40.4422,-11.939483 -13.7585,-2.984873 -26.7667,-3.326 -38.8576,-3.411283 -12.091,-0.170562 -23.2647,-0.170562 -34.6051,1.279232 -11.4239,1.364512 -23.0979,4.264101 -32.6872,10.233842 -9.5894,5.969743 -17.0941,15.009637 -26.0998,24.134814 -9.089,9.125178 -19.5956,18.165073 -27.9341,18.591483 -8.3387,0.426409 -14.5091,-7.760664 -21.18008,-15.009638 -6.67086,-7.248973 -13.84205,-13.559843 -22.34739,-15.691892 -8.50533,-2.132051 -18.17808,-0.08528 -28.18437,-2.558461 -10.0063,-2.387896 -20.34613,-9.210459 -31.26965,-9.039894 -11.00693,0.08529 -22.68094,7.248971 -33.52108,13.218712 -10.84015,5.969743 -20.84644,10.745537 -32.68722,12.451177 C 834.62642,57.843286 820.95117,56.478774 812.11228,51.6177 803.19,46.756625 799.0207,38.569549 791.51599,33.708472 c -7.50472,-4.861074 -18.34487,-6.225585 -30.01887,-9.636867 -11.67399,-3.411281 -24.18185,-8.869331 -37.27343,-9.125178 -13.00818,-0.255845 -26.68344,4.519948 -37.94052,8.357639 -11.25707,3.837692 -20.09595,6.73728 -27.5173,11.939484 -7.33795,5.287486 -13.17494,12.962868 -20.26274,15.094918 -7.08781,2.132051 -15.42637,-1.279229 -26.51668,-6.651998 -11.1737,-5.45805 -25.01573,-12.792304 -34.60509,-20.467686 -9.50598,-7.675383 -14.67588,-15.6918927 -17.34424,-19.6148659 -2.58495,-4.00825532 -2.58495,-4.00825532 -2.58495,-4.00825532 0,0 0,0 -2.66835,0 -2.66834,0 -8.08841,0 -10.75675,0 -2.75174,0 -2.75174,0 -2.75174,0 0,0 0,0 -4.25266,2.13205072 -4.33607,2.1320507 -12.9248,6.3961519 -22.18062,8.6987665 -9.3392,2.217333 -19.34549,2.558461 -30.85273,3.411282 -11.5906,0.85282 -24.59879,2.217332 -36.27279,2.13205 -11.67402,-0.170564 -22.01385,-1.876205 -30.68596,-4.861076 -8.58872,-2.9848706 -15.67653,-7.2489718 -19.17874,-9.3810225 -3.50219,-2.13205072 -3.50219,-2.13205072 -3.50219,-2.13205072 0,0 0,0 -0.83386,0 -0.75047,0 -2.3348,0 -3.16865,0 -0.75048,0 -0.75048,0 -0.75048,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -7.17116,0 -7.25457,0 -21.68031,0 -28.85147,0 -7.25458,0 -7.25458,0 -7.25458,0 M 1541.1538,180.99053 c 9.4226,7.07842 18.9287,13.90097 24.3487,20.97939 5.42,7.16368 6.7543,14.49794 4.1694,20.63825 -2.6685,6.14031 -9.3392,10.9161 -17.8446,15.18019 -8.4221,4.2641 -18.7619,8.01652 -27.1838,11.08666 -8.5053,3.15545 -15.1763,5.71392 -24.5155,9.72218 -9.2557,3.92296 -21.2633,9.38101 -28.4345,7.33423 -7.2545,-1.96149 -9.7561,-11.34249 -9.7561,-20.89408 0,-9.46632 2.5016,-19.18846 -0.5837,-29.42232 -3.0019,-10.23384 -11.6739,-20.97937 -15.4264,-28.3989 -3.7523,-7.41954 -2.585,-11.34252 4.9198,-12.53647 7.5047,-1.10866 21.3467,0.59699 32.7706,-1.53507 11.4238,-2.13205 20.2628,-8.1018 24.7656,-11.08666 4.4194,-2.98488 4.4194,-2.98488 9.1725,0.68225 4.6695,3.75242 14.1754,11.08666 23.598,18.25035 m -525.9972,63.10871 c -7.4214,10.23383 -13.7587,21.83219 -18.26153,33.34526 -4.41944,11.51309 -6.92102,22.94087 -11.92416,31.04267 -5.00315,8.10179 -12.50786,12.87758 -22.68091,15.43605 -10.08969,2.55845 -22.93109,2.89959 -34.85526,1.70564 -11.92416,-1.10868 -23.09784,-3.66713 -35.60571,-4.94636 -12.50786,-1.27924 -26.34991,-1.27924 -37.60697,-1.10866 -11.25708,0.0853 -19.9292,0.42641 -29.10163,1.36451 -9.17243,1.02338 -18.84519,2.72902 -29.43517,4.26409 -10.58999,1.62037 -21.93046,2.98488 -33.52108,6.39616 -11.50723,3.41128 -23.18124,8.86933 -28.6013,17.48282 -5.42008,8.69876 -4.58622,20.63824 0.83385,29.84871 5.42007,9.29573 15.42638,15.77717 24.18188,22.08804 8.75548,6.22558 16.26021,12.19533 24.01509,17.14168 7.83826,5.03165 15.84328,8.95462 24.59879,12.53646 8.75551,3.58185 18.26147,6.652 24.09848,14.24209 5.83701,7.50482 8.00502,19.44432 8.8389,31.12794 0.83386,11.59837 0.33354,23.02616 3.33542,33.51585 3.08527,10.4897 9.75615,20.21184 12.00755,31.12795 2.16803,10.91608 0,23.19669 -5.58685,32.57773 -5.58684,9.38102 -14.42573,15.86246 -20.01259,25.15818 -5.58682,9.21047 -7.75486,21.14994 -12.25769,29.50759 -4.41945,8.44292 -11.09031,13.21872 -17.5944,19.10317 -6.58747,5.79918 -12.92478,12.62175 -20.34612,19.87071 -7.33794,7.24899 -15.67652,14.92436 -24.18187,22.42918 -8.42196,7.5901 -17.09407,14.92436 -26.68344,23.45257 -9.58935,8.52819 -20.09597,18.25034 -21.51352,26.01101 -1.41755,7.84594 6.42071,13.81569 14.0088,19.10318 7.6715,5.2022 15.17621,9.80742 21.26337,6.39615 6.17055,-3.41129 10.84016,-14.83907 17.26085,-23.87898 6.42071,-9.12517 14.42574,-15.94774 22.76432,-24.30538 8.33857,-8.4429 17.01069,-18.33562 26.60004,-25.92573 9.58937,-7.50482 20.09598,-12.62174 30.51919,-18.16507 10.42322,-5.54333 20.76306,-11.51307 30.43579,-18.76205 9.75615,-7.24897 18.92858,-15.77717 25.7662,-21.57635 6.75425,-5.88445 11.25709,-8.9546 19.42889,-12.79231 8.1718,-3.83768 20.17935,-8.44291 31.85335,-11.93948 11.674,-3.58185 23.01448,-6.1403 34.43832,-6.82256 11.42384,-0.76755 22.76432,0.42642 34.35502,0.5117 11.5071,0.17056 23.1812,-0.68226 33.7712,3.75241 10.5066,4.34938 20.0125,14.07152 27.3505,24.39064 7.3379,10.40442 12.6745,21.49107 14.3423,30.87211 1.6677,9.38102 -0.3335,17.0564 -1.2508,26.60798 -1.0006,9.46631 -1.0006,20.89411 -3.5022,33.51585 -2.5015,12.62173 -7.5047,26.60798 -12.0909,38.20635 -4.5862,11.68363 -8.7556,21.06466 -14.8426,28.91061 -6.1706,7.76065 -14.1756,14.07153 -23.0979,22.00277 -8.9224,7.93122 -18.595,17.65336 -26.0164,17.73864 -7.3379,0.17058 -12.34107,-9.21045 -21.26335,-11.76892 -8.8389,-2.55845 -21.6803,1.70564 -31.35303,8.1018 -9.75614,6.39615 -16.427,14.92435 -23.93173,20.63826 -7.50471,5.62862 -15.84328,8.52819 -25.01571,12.19532 -9.17243,3.66713 -19.17873,8.27236 -30.43579,11.51307 -11.25709,3.24072 -23.76495,5.28749 -33.18754,4.86108 -9.50598,-0.42641 -15.84331,-3.326 -25.01573,-5.7139 -9.17242,-2.38789 -21.17998,-4.43466 -30.01886,-8.69877 -8.92228,-4.2641 -14.75928,-10.74553 -21.01321,-8.78404 -6.25394,1.96149 -12.92479,12.53646 -14.17558,20.29712 -1.25078,7.84595 2.9185,12.96288 8.50534,16.11831 5.50347,3.07014 12.50787,4.2641 22.59754,4.2641 10.17307,0 23.51478,-1.19396 35.1888,-0.85282 11.674,0.25585 21.68028,1.96148 33.35429,2.38789 11.67401,0.42641 25.01573,-0.42641 37.27344,-2.72903 12.17432,-2.21732 23.348,-5.96972 34.85522,-8.78405 11.50724,-2.81429 23.5148,-4.86108 34.77188,-5.71388 11.25706,-0.85282 21.76368,-0.5117 32.60382,-0.85282 10.8401,-0.25585 22.0139,-1.10867 32.9374,-3.8377 11.0069,-2.64375 21.8471,-7.24897 32.5205,-11.59836 10.7567,-4.43466 21.2633,-8.69876 32.1034,-13.98625 10.8401,-5.20221 22.0139,-11.51307 32.5205,-16.20359 10.5899,-4.69049 20.5963,-7.76065 31.2695,-10.48969 10.757,-2.72902 22.0974,-4.94635 34.5219,-5.28748 12.3409,-0.25584 25.6828,1.4498 33.8546,0.17056 8.2551,-1.27923 11.2569,-5.54333 11.6739,-12.36589 0.4169,-6.82256 -1.751,-16.20358 -8.3387,-24.98764 -6.5039,-8.86933 -17.3439,-17.05639 -27.7673,-24.47594 -10.4233,-7.41953 -20.4295,-13.90097 -28.1843,-19.87071 -7.8384,-5.96974 -13.3419,-11.42779 -18.6786,-18.67676 -5.2532,-7.24897 -10.2562,-16.28886 -14.8426,-25.41405 -4.5861,-9.12517 -8.7554,-18.16506 -13.7586,-27.46082 -5.0031,-9.21045 -10.8401,-18.59148 -11.4239,-28.3989 -0.5002,-9.80743 4.1694,-20.04128 9.5061,-29.8487 5.2532,-9.80745 11.0903,-19.18846 17.7612,-29.16646 6.6708,-9.8927 14.1755,-20.46769 20.1792,-30.78681 5.9204,-10.40442 10.4233,-20.63825 12.3412,-32.3219 1.9178,-11.59835 1.4175,-24.73178 -2.9185,-32.91886 -4.3362,-8.27236 -12.3412,-11.68363 -21.5137,-14.66851 -9.1723,-2.98487 -19.512,-5.54333 -25.1825,-13.47456 -5.6701,-8.01652 -6.8375,-21.3205 -9.8394,-32.57773 -3.0854,-11.25724 -8.0885,-20.29712 -7.6715,-30.27512 0.417,-9.97799 6.2539,-20.72353 10.8402,-30.10456 4.5862,-9.38102 7.9216,-17.39753 14.8427,-23.87897 7.0044,-6.56671 17.511,-11.68363 21.0132,-17.22696 3.5021,-5.54334 -0.1668,-11.51309 -7.6716,-11.25724 -7.5047,0.34114 -18.8451,6.82257 -26.5166,7.24898 -7.6716,0.4264 -11.5072,-5.2022 -18.7618,-10.48968 -7.2546,-5.28749 -17.7612,-10.06329 -27.1004,-14.66853 -9.3392,-4.51993 -17.3441,-8.78404 -20.5963,-17.90922 -3.1686,-9.03989 -1.5009,-23.02615 -2.7517,-32.06604 -1.2508,-9.12516 -5.4201,-13.38927 -11.674,-11.08666 -6.2539,2.21734 -14.5925,11.08666 -21.9304,21.32051 M -0.64865472,232.92729 c 0,0 0,0 4.16928742,2.13205 4.1692876,2.21733 12.5078633,6.652 12.5078633,10.06328 0,3.41128 -8.3385757,5.96975 -12.5078633,7.24897 -4.16928742,1.19394 -4.16928742,1.19394 -4.16928742,1.19394 0,0 0,0 0,6.73729 0,6.652 0,20.04127 0,26.69326 0,6.7373 0,6.7373 0,6.7373 0,0 0,0 4.75298772,-0.17057 4.6696021,-0.0853 14.175578,-0.34112 23.34801,-0.0853 9.172433,0.34113 18.011322,1.19395 30.269028,1.8762 12.257705,0.76754 27.767455,1.27922 40.859017,-0.4264 13.091562,-1.70564 23.598172,-5.62861 32.270292,-9.89272 8.58872,-4.2641 15.25958,-8.86933 19.42887,-17.90923 4.16928,-9.12518 5.837,-22.77031 5.16992,-34.88034 -0.75048,-12.02477 -3.75236,-22.59976 -11.25707,-28.14309 -7.50473,-5.54331 -19.51227,-6.05499 -31.85335,-5.96973 -12.341105,0.17057 -25.18251,1.02339 -36.106044,0.85282 -11.006918,-0.0853 -20.17935,-1.27923 -30.602569,-3.92297 -10.423219,-2.72902 -22.097223,-6.99312 -30.01887,-8.52821 -7.9216467,-1.53506 -12.0909343,-0.25583 -14.175578,0.34113 -2.08464372,0.59698 -2.08464372,0.59698 -2.08464372,0.59698 0,0 0,0 0,7.5901 0,7.50482 0,22.68502 0,30.27513 0,7.59009 0,7.59009 0,7.59009 M 1997.8576,239.15287 c 2.7518,2.64375 2.7518,2.64375 2.7518,2.64375 0,0 0,0 0,8.01651 0,8.01651 0,24.04953 0,32.06605 0,8.0165 0,8.0165 0,8.0165 0,0 0,0 -2.6684,-1.62036 -2.5849,-1.62035 -7.9217,-4.86108 -14.8426,-7.93123 -6.9211,-2.98487 -15.5931,-5.88445 -22.264,-2.55846 -6.6709,3.24073 -11.3405,12.62175 -14.5926,21.14996 -3.1687,8.52819 -4.8364,16.20358 -7.5881,25.15818 -2.8351,8.95462 -6.6708,19.18846 -12.8414,21.9175 -6.0871,2.64373 -14.4257,-2.13206 -21.2633,-9.80744 -6.7544,-7.67539 -12.0909,-18.25036 -18.7618,-26.77857 -6.6709,-8.52818 -14.6759,-15.00963 -23.3481,-19.61486 -8.5887,-4.51994 -17.7612,-7.07841 -26.0997,-9.80743 -8.3385,-2.64375 -15.8433,-5.54333 -25.1826,-6.82256 -9.2557,-1.27923 -20.4294,-0.9381 -30.6859,-5.62862 -10.2565,-4.69051 -19.7623,-14.41266 -21.8469,-24.90235 -2.0847,-10.48969 3.252,-21.91748 7.6714,-32.57774 4.4193,-10.66024 8.0884,-20.55296 14.5924,-24.98763 6.5042,-4.43466 16.0102,-3.24072 25.5994,-3.15543 9.5895,0.17056 19.2622,-0.68225 28.6014,-2.55846 9.3392,-1.79093 18.1781,-4.69052 25.0157,-5.37276 6.8376,-0.68227 11.5073,0.68224 19.4289,0.17055 7.9217,-0.59697 19.0954,-3.15543 28.2677,-2.55845 9.1726,0.5117 16.3437,4.26409 25.8496,7.07841 9.4226,2.8143 21.0967,4.86107 32.6039,4.94635 11.5906,0.0853 22.931,-1.70564 28.6846,-2.55846 5.6704,-0.85283 5.6704,-0.85283 5.6704,-0.85283 0,0 0,0 0,3.58184 0,3.58186 0,10.74555 0,14.32739 0,3.58184 0,3.58184 0,3.58184 0,0 0,0 0,0 0,0 0,0 0,0.42641 0,0.42642 0,1.27924 0,1.70565 0,0.42641 0,0.42641 0,0.42641 0,0 0,0 0,0 0,0 0,0 0,3.15544 0,3.07014 0,9.38101 0,12.45117 0,3.15543 0,3.15543 0,3.15543 0,0 0,0 -2.5016,0 -2.5016,0 -7.5047,0 -10.2564,0.42642 -2.8353,0.42641 -3.3356,1.27924 -0.834,4.43466 2.5016,3.07015 8.005,8.52819 10.8402,11.25722 M 282.02903,535.84906 c 2.25142,9.55157 8.58874,16.37414 10.67338,26.01102 2.08464,9.72214 -0.0834,22.17332 -7.08778,31.72491 -6.92103,9.55158 -18.59503,16.03302 -25.43266,26.011 -6.75424,9.97801 -8.75551,23.28201 -4.58621,28.31365 4.16928,4.94635 14.50912,1.53507 25.43264,-0.59697 11.00693,-2.13206 22.68093,-2.98488 34.52171,-2.81431 11.75739,0.0853 23.76494,1.27922 34.18816,3.24073 10.42322,1.96147 19.2621,4.86107 23.84832,0.25583 4.58622,-4.51994 4.91977,-16.45943 2.91851,-28.56948 -1.91788,-12.02476 -6.08716,-24.30537 -8.42197,-34.53923 -2.41819,-10.23383 -2.9185,-18.42092 -3.66898,-28.14306 -0.66707,-9.63687 -1.50094,-20.72353 -1.91786,-29.67815 -0.41694,-8.95461 -0.41694,-15.77716 -6.00377,-19.01789 -5.50346,-3.32599 -16.67715,-2.98487 -26.93361,-3.7524 -10.25644,-0.68227 -19.76243,-2.3879 -27.26714,-2.98487 -7.50472,-0.51169 -13.00818,0 -16.76052,6.39614 -3.75237,6.39616 -5.75363,18.67676 -3.50222,28.14308 m 1374.03037,0.17056 c 2.0847,4.86108 -5.0866,13.04815 -13.7585,14.92435 -8.5888,1.8762 -18.5952,-2.72902 -20.6798,-7.50482 -2.0847,-4.86106 3.7524,-9.97799 12.3412,-11.8542 8.672,-1.79092 20.0125,-0.42641 22.0971,4.43467 M 479.90342,898.89464 c 9.17243,6.14032 22.8477,10.91612 28.76808,6.39616 6.00379,-4.51996 4.33606,-18.50621 -1.91787,-25.58462 -6.25393,-7.0784 -17.09408,-7.41953 -25.43265,-6.5667 -8.33857,0.85282 -14.17558,2.89959 -14.75927,7.59009 -0.50031,4.69052 4.16928,12.02476 13.34171,18.16507"),S(K,"style","display:inline;opacity:0.13;fill-rule:evenodd;stroke-width:0.843286;shape-rendering:geometricPrecision"),S(K,"id","path205"),S(K,"fill","#ecf2f9")]),O)])),H(Q,"g",F([S(K,"id","lakes"),S(K,"style","display:inline;shape-rendering:geometricPrecision"),S(K,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),F([H(Q,"path",F([S(K,"d","m 916.8,227.7 c -1.5,1 -4.1,2.6 -6,3.5 -1.8,0.8 -2.8,0.8 -4,0 -1.1,-0.9 -2.5,-2.5 -2.3,-4.7 0.2,-2.2 1.8,-4.8 4.3,-5.7 2.5,-0.8 5.9,0.2 7.7,1.4 1.8,1.1 2.2,2.5 2.2,3.3 0,0.8 -0.4,1.2 -1.9,2.2"),S(K,"id","lake_7"),S(K,"data-f","7"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1311,270.2 c -0.3,2.8 -1.7,4.8 -2.7,5.8 -1,1 -1.6,1 -3.3,0 -1.7,-1 -4.3,-3 -5,-5.8 -0.7,-2.9 0.7,-6.5 1.7,-8.5 1,-2 1.6,-2.4 3,-2.4 1.3,0 3.3,0.4 4.6,2.4 1.4,2 2,5.6 1.7,8.5"),S(K,"id","lake_10"),S(K,"data-f","10"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 332.2,391.5 c 2.1,0.2 4.5,0.8 6.3,2.5 1.8,1.7 3.2,4.3 3.2,7.2 0,2.8 -1.4,5.8 -2,8 -0.7,2.1 -0.7,3.5 -0.2,4.5 0.5,1 1.5,1.6 4,2.3 2.5,0.7 6.5,1.3 8.8,1.8 2.4,0.5 3,0.9 4.4,1 1.3,0.2 3.3,0.2 4.6,0 1.4,-0.1 2,-0.5 3.9,-0.6 1.8,-0.2 4.8,-0.2 6.6,-0.4 1.9,-0.1 2.5,-0.5 4.4,-0.6 1.8,-0.2 4.8,-0.2 6.8,-0.4 2,-0.1 3,-0.5 4.5,-0.5 1.5,0 3.5,0.4 4.9,0.5 1.4,0 2.3,-0.1 3.1,-0.3 0.8,-0.2 1.7,-0.3 3.6,-1.6 1.9,-1.2 4.9,-3.6 6.3,-5.2 1.4,-1.7 1.3,-2.7 1.1,-3.7 -0.2,-1 -0.3,-2 -0.6,-3.8 -0.2,-1.9 -0.6,-4.5 0.2,-6.1 0.7,-1.6 2.6,-2.1 4.4,-2.6 1.8,-0.5 3.7,-1 4.9,-0.6 1.3,0.4 1.9,1.8 2.9,2.8 1,1 2.4,1.6 3.9,1.8 1.5,0.2 3.1,-0.2 5,0.4 1.8,0.6 3.8,2.1 5.8,3.6 2,1.5 4,3 4.5,5.1 0.5,2.1 -0.5,4.7 -0.8,6.6 -0.4,1.8 0,2.8 -0.4,4.6 -0.3,1.9 -1.3,4.5 -1.8,6.2 -0.5,1.7 -0.5,2.3 -0.7,3.7 -0.1,1.3 -0.5,3.3 -1.1,5 -0.7,1.6 -1.7,3 -2.4,3.8 -0.6,0.8 -1,1.2 -1.6,1.8 -0.7,0.7 -1.7,1.7 -3.5,2.5 -1.9,0.9 -4.5,1.5 -6.4,3 -1.8,1.5 -2.8,3.9 -2.6,5.9 0.1,2 1.5,3.6 1.3,5.6 -0.2,2 -1.8,4.4 -3.8,5.2 -2,0.8 -4.4,0.2 -6.2,-1.5 -1.8,-1.7 -3.2,-4.3 -5.2,-5.8 -2,-1.5 -4.6,-1.9 -6.8,-1 -2.2,0.8 -3.8,2.8 -4.7,5 -0.8,2.1 -0.8,4.5 -1.5,6.6 -0.6,2.2 -2,4.2 -3.3,5.4 -1.3,1.1 -2.7,1.5 -4.8,3 -2.2,1.5 -5.2,4.1 -6.9,6 -1.6,1.8 -2,2.8 -4.3,4.1 -2.3,1.4 -6.7,3 -9.2,3.9 -2.5,0.8 -3.1,0.8 -5,1.1 -1.8,0.4 -4.8,1 -7,1.4 -2.1,0.3 -3.5,0.3 -5.1,0.6 -1.7,0.4 -3.7,1 -5.9,1.2 -2.1,0.2 -4.5,-0.2 -6.5,0.2 -2,0.3 -3.6,1.3 -6,1.6 -2.3,0.4 -5.3,0 -7.1,-1.5 -1.9,-1.5 -2.5,-4.1 -2.4,-6.5 0.2,-2.3 1.2,-4.3 1.3,-6.2 0.1,-1.9 -0.8,-3.8 -1.6,-5.6 -0.8,-1.8 -1.7,-3.7 -2.2,-4.6 -0.6,-0.9 -1,-0.9 -2.8,-0.1 -1.8,0.9 -5.2,2.5 -7,3.5 -1.8,1 -2.2,1.4 -3.5,1.9 -1.3,0.5 -3.7,1.1 -5.8,2.6 -2.2,1.5 -4.2,3.9 -5.5,5 -1.4,1.2 -2,1.2 -3,1.9 -1,0.6 -2.4,2 -4.9,2.1 -2.5,0.2 -6.1,-0.8 -8.1,-1.6 -2,-0.9 -2.4,-1.5 -2.7,-2.4 -0.3,-0.8 -0.7,-1.8 -1.7,-3 -1,-1.1 -2.6,-2.5 -3.5,-3.8 -0.8,-1.3 -0.8,-2.7 -1.5,-3.8 -0.6,-1.2 -2,-2.2 -4.3,-2.5 -2.3,-0.4 -5.7,0 -7.5,0.3 -1.8,0.3 -2.2,0.7 -3.3,0.8 -1.2,0.2 -3.2,0.2 -4.9,0.5 -1.6,0.4 -3,1 -4.6,0.9 -1.7,-0.2 -3.7,-1.2 -5.7,-1.4 -2,-0.1 -4,0.5 -6.3,0 -2.4,-0.5 -5,-2.1 -5.9,-4 -0.8,-1.8 0.2,-3.8 0.2,-6 0,-2.1 -1,-4.5 -1.2,-6.3 -0.1,-1.8 0.5,-3.2 0.2,-4.8 -0.3,-1.7 -1.7,-3.7 -1.7,-5.7 0,-2 1.4,-4 3,-4.8 1.7,-0.9 3.7,-0.5 5.7,-1.2 2,-0.7 4,-2.3 5.7,-2.8 1.6,-0.5 3,0.1 5,0 2,-0.2 4.6,-1.2 6.5,-2.4 1.8,-1.1 2.8,-2.5 4.1,-3.3 1.4,-0.8 3,-1.2 4.7,-2.2 1.7,-1 3.3,-2.6 4.3,-3.8 1,-1.2 1.4,-1.8 3,-3.8 1.7,-2 4.7,-5.4 6.2,-7.7 1.5,-2.3 1.5,-3.7 1.7,-4.8 0.1,-1.2 0.5,-2.2 1.8,-3.4 1.3,-1.1 3.7,-2.5 6,-3 2.3,-0.5 4.7,-0.1 6.5,0.5 1.8,0.7 3.2,1.7 4.8,2.2 1.7,0.5 3.7,0.5 5.5,1 1.9,0.5 3.5,1.5 5,1.8 1.5,0.4 2.9,0 4.7,-1.3 1.8,-1.3 4.2,-3.7 5.3,-5.3 1.2,-1.7 1.2,-2.7 2.1,-3.8 0.9,-1.1 2.8,-2.2 4.6,-3.4 1.8,-1.2 3.7,-2.3 5.6,-2.1 1.9,0.3 3.9,1.9 5.9,2.6 2,0.7 4,0.3 6.2,0.5"),S(K,"id","lake_16"),S(K,"data-f","16"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 2273.5,455 c 0.5,0.3 1,0.7 1.8,2.7 0.7,2 1.7,5.6 1.2,8.5 -0.5,2.8 -2.5,4.8 -4.7,5.8 -2.1,1 -4.5,1 -6,-1.3 -1.5,-2.4 -2.1,-7 -1,-10.2 1.2,-3.2 4.2,-4.8 6,-5.5 1.7,-0.7 2.2,-0.3 2.7,0"),S(K,"id","lake_18"),S(K,"data-f","18"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 823.5,524.8 c -0.2,2.5 -1.8,4.9 -4,5.7 -2.2,0.8 -4.8,0.2 -6.3,-0.7 -1.5,-0.8 -1.9,-1.8 -0.9,-3.8 1,-2 3.4,-5 4.9,-6.7 1.5,-1.6 2.1,-2 2.6,-2.1 0.5,-0.2 0.9,-0.2 1.7,1.1 0.8,1.4 2.2,4 2,6.5"),S(K,"id","lake_22"),S(K,"data-f","22"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 651.8,555.5 c -2.1,0.8 -4.5,-0.8 -5.8,-3 -1.3,-2.2 -1.7,-4.8 -0.8,-6.8 0.8,-2 2.8,-3.4 4.3,-3.9 1.5,-0.5 2.5,-0.1 3.8,1 1.4,1.2 3,3.2 2.9,5.9 -0.2,2.6 -2.2,6 -4.4,6.8"),S(K,"id","lake_24"),S(K,"data-f","24"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1950,586.8 c 3,0.5 5,1.9 6.9,2.5 1.9,0.7 3.8,0.7 5.6,0.7 1.8,0 3.7,0 5.3,0.5 1.5,0.5 2.9,1.5 4.9,1.7 2,0.1 4.6,-0.5 6.6,-1.2 2,-0.7 3.4,-1.3 5,-1.3 1.7,0 3.7,0.6 5.2,0.8 1.5,0.2 2.5,-0.2 4.7,-0.3 2.1,-0.2 5.5,-0.2 8.3,0.8 2.8,1 5.2,3 6.8,4.2 1.7,1.1 2.7,1.5 4.2,2.1 1.5,0.7 3.5,1.7 5.3,2 1.9,0.2 3.5,-0.3 5.2,-0.8 1.7,-0.5 3.3,-1 5.2,-3.1 1.8,-2.1 3.8,-5.7 6.3,-6.6 2.5,-0.8 5.5,1.2 7.2,3 1.6,1.9 2,3.5 2.3,5.2 0.3,1.7 0.7,3.3 1,5 0.3,1.7 0.7,3.3 0.9,4.8 0.3,1.4 0.4,2.5 0.6,3.7 0.2,1.2 0.3,2.3 1.8,3.6 1.4,1.2 4,2.6 5.7,4.1 1.7,1.5 2.3,3.1 3.3,4.3 1,1.2 2.4,1.8 4,3.3 1.7,1.5 3.7,3.9 5.2,5 1.5,1.2 2.5,1.2 4.3,2.2 1.9,1 4.5,3 5.4,4.9 0.8,1.9 -0.2,3.8 -1.2,5.6 -1,1.8 -2,3.7 -3.7,4.8 -1.6,1 -4,1.4 -6,2.5 -2,1.2 -3.6,3.2 -5,4.2 -1.3,1 -2.3,1 -3.3,0.8 -1,-0.1 -2,-0.5 -4.5,-0.3 -2.5,0.2 -6.5,0.8 -9,0.3 -2.5,-0.5 -3.5,-2.1 -6.2,-2.5 -2.6,-0.3 -7,0.7 -9.5,1 -2.5,0.4 -3.1,0 -4.1,0 -1,0 -2.4,0.4 -4.2,2.2 -1.8,1.8 -4.2,5.2 -5.3,7.3 -1.2,2.2 -1.2,3.2 -2.9,4.9 -1.6,1.6 -5,4 -7.1,5 -2.2,1 -3.2,0.6 -4.9,-0.2 -1.6,-0.8 -4,-2.2 -5.5,-2.7 -1.5,-0.5 -2.1,-0.1 -4.1,0 -2,0.2 -5.4,0.2 -7.5,1.4 -2.2,1.1 -3.2,3.5 -4.7,5 -1.5,1.5 -3.5,2.1 -5,3.3 -1.5,1.2 -2.5,2.8 -4,4 -1.5,1.2 -3.5,1.8 -4.8,2.8 -1.4,1 -2,2.4 -2.2,4 -0.2,1.7 0.2,3.7 1,5.2 0.8,1.5 2.2,2.5 4.5,3 2.3,0.5 5.7,0.5 7.7,0.3 2,-0.1 2.6,-0.5 4.6,0.5 2,1 5.4,3.4 6.7,5.7 1.3,2.3 0.7,4.7 0.5,6.8 -0.2,2.2 0.2,4.2 0,5.4 -0.2,1.1 -0.8,1.5 -1.3,2.8 -0.5,1.3 -0.9,3.7 -2.7,6.3 -1.8,2.7 -5.2,5.7 -7.5,6.8 -2.3,1.1 -3.7,0.2 -5,-0.6 -1.3,-0.8 -2.7,-1.7 -3.7,-2.7 -1,-1.1 -1.6,-2.5 -2.6,-3.8 -1,-1.3 -2.4,-2.7 -4.9,-3 -2.5,-0.3 -6.1,0.3 -8.5,1.8 -2.3,1.5 -3.3,3.9 -3.6,6 -0.4,2.2 0,4.2 -0.2,5.7 -0.2,1.5 -0.8,2.5 -1,3.5 -0.2,1 0.2,2 0.7,2.8 0.5,0.9 1.1,1.5 1.8,3.5 0.7,2 1.3,5.4 2.8,7.4 1.5,2 3.9,2.6 5.2,4.6 1.3,2 1.7,5.4 1.2,7.5 -0.5,2.2 -1.9,3.2 -4.2,3.7 -2.3,0.5 -5.7,0.5 -7.8,-0.3 -2.2,-0.9 -3.2,-2.5 -3.7,-3.9 -0.5,-1.3 -0.5,-2.3 -1.5,-3.8 -1,-1.5 -3,-3.5 -4,-5.3 -1,-1.9 -1,-3.5 -2.2,-5.5 -1.1,-2 -3.5,-4.4 -4.3,-6.7 -0.8,-2.3 -0.2,-4.7 0,-6.2 0.2,-1.5 -0.2,-2.1 -1.7,-3 -1.5,-0.8 -4.1,-1.8 -6.5,-1.8 -2.3,0 -4.3,1 -5.8,3 -1.5,2 -2.5,5 -3.7,7 -1.1,2 -2.5,3 -3.1,4 -0.7,1 -0.7,2 -0.5,3.5 0.1,1.5 0.5,3.5 0.3,5 -0.2,1.5 -0.8,2.5 -1.2,3.5 -0.3,1 -0.3,2 -1.5,4 -1.1,2 -3.5,5 -5.5,6.3 -2,1.4 -3.6,1 -4.1,-0.6 -0.5,-1.7 0.1,-4.7 -0.7,-7.2 -0.8,-2.5 -3.2,-4.5 -4.5,-5.8 -1.3,-1.4 -1.7,-2 -2.2,-2.9 -0.5,-0.8 -1.1,-1.8 -1.5,-2.8 -0.3,-1 -0.3,-2 -0.1,-3 0.1,-1 0.5,-2 0.1,-4.7 -0.3,-2.6 -1.3,-7 -2.5,-9.6 -1.1,-2.7 -2.5,-3.7 -3.1,-4.5 -0.7,-0.9 -0.7,-1.5 -0.5,-2.4 0.1,-0.8 0.5,-1.8 0.5,-4 0,-2.1 -0.4,-5.5 -0.8,-8.3 -0.4,-2.8 -0.9,-5.2 -1.4,-7.5 -0.5,-2.3 -1,-4.7 -1.4,-6.1 -0.4,-1.4 -0.8,-1.9 -1.1,-2.4 -0.3,-0.5 -0.7,-1 -1.3,-2.6 -0.7,-1.6 -1.7,-4.2 -2,-6.7 -0.4,-2.5 0,-4.9 0.1,-6.4 0.2,-1.5 0.2,-2.1 -0.1,-2.6 -0.4,-0.5 -1,-0.9 -2.4,-2.7 -1.3,-1.8 -3.3,-5.2 -4,-7.8 -0.6,-2.7 0,-4.7 -1.6,-6.5 -1.7,-1.9 -5.7,-3.5 -6.4,-5.5 -0.6,-2 2,-4.4 4.5,-4.2 2.5,0.2 4.9,2.8 7.7,2.8 2.8,0 6.2,-2.6 8.2,-4 2,-1.3 2.6,-1.3 3,-3.3 0.3,-2 0.3,-6 1.1,-8.8 0.9,-2.9 2.5,-4.5 5.4,-5.4 2.8,-0.8 6.8,-0.8 9.7,-1.2 2.9,-0.4 4.8,-1.3 6.6,-2.1 1.8,-0.8 3.7,-1.7 3.9,-4.4 0.3,-2.8 -1.1,-7.4 -2.2,-9.9 -1.2,-2.5 -2.2,-2.9 -2.9,-3.4 -0.6,-0.5 -1,-1.1 -0.8,-3 0.2,-1.8 0.8,-4.8 3.2,-5.8 2.3,-1 6.3,0 8.5,0.2 2.1,0.1 2.5,-0.5 4,-1.4 1.5,-0.8 4.1,-1.8 6.3,-2.1 2.2,-0.4 3.8,0 5.5,-0.4 1.7,-0.3 3.3,-1.3 4.2,-3.5 0.8,-2.1 0.8,-5.5 1.1,-7.5 0.4,-2 1,-2.6 3.4,-3.1 2.3,-0.5 6.3,-0.9 9.3,-0.4"),S(K,"id","lake_27"),S(K,"data-f","27"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 2221,1040.3 c 1.7,0 4.3,-0.6 6,-0.8 1.7,-0.2 2.3,0.2 3.8,0.2 1.5,0 3.9,-0.4 5.9,-0.2 2,0.2 3.6,0.8 5.5,0.8 1.8,0 3.8,-0.6 6,-0.3 2.1,0.3 4.5,1.7 7.3,2 2.8,0.3 6.2,-0.3 8.3,-1 2.2,-0.7 3.2,-1.3 4.7,-1.7 1.5,-0.3 3.5,-0.3 4.7,-0.5 1.1,-0.1 1.5,-0.5 2.6,-0.5 1.2,0 3.2,0.4 4.5,1 1.4,0.7 2,1.7 2.7,4.2 0.7,2.5 1.3,6.5 0.8,9.7 -0.5,3.1 -2.1,5.5 -2.6,7.3 -0.5,1.8 0.1,3.2 0.3,4.2 0.2,1 -0.2,1.6 -1.7,3.1 -1.5,1.5 -4.1,3.9 -6.6,5 -2.5,1.2 -4.9,1.2 -6.5,1.5 -1.7,0.4 -2.7,1 -4,0.9 -1.4,-0.2 -3,-1.2 -4.7,-1.9 -1.7,-0.6 -3.3,-1 -5.2,-2 -1.8,-1 -3.8,-2.6 -5,-4 -1.1,-1.3 -1.5,-2.3 -3.6,-4 -2.2,-1.6 -6.2,-4 -8.7,-5 -2.5,-1 -3.5,-0.6 -4.5,0 -1,0.7 -2,1.7 -3.5,2.5 -1.5,0.9 -3.5,1.5 -6.2,1.5 -2.6,0 -6,-0.6 -8.5,-1.8 -2.5,-1.2 -4.1,-2.8 -5,-4.6 -1,-1.7 -1.1,-3.6 -1.3,-5.4 -0.2,-1.8 -0.3,-3.7 1.6,-5.6 1.9,-1.9 5.9,-3.9 8.2,-4.6 2.4,-0.6 3,0 4.7,0"),S(K,"id","lake_36"),S(K,"data-f","36"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1537.5,1094.3 c 1.8,1.4 2.2,3 1.6,4.5 -0.6,1.5 -2.1,2.9 -3.6,4.2 -1.5,1.3 -3,2.7 -4.9,2.7 -1.9,0 -4.3,-1.4 -5.6,-3 -1.3,-1.7 -1.7,-3.7 -1.7,-5.2 0,-1.5 0.4,-2.5 1.4,-3.5 1,-1 2.6,-2 5.1,-2 2.5,0 5.9,1 7.7,2.3"),S(K,"id","lake_37"),S(K,"data-f","37"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1603.5,1093.5 c 1.5,-0.2 2.5,-0.8 4.8,-1 2.4,-0.2 6,0.2 9,0.2 3,0 5.4,-0.4 7.7,-0.7 2.3,-0.3 4.7,-0.7 6.3,0.3 1.7,1 2.7,3.4 2.7,5.5 0,2.2 -1,4.2 0.2,6.5 1.1,2.4 4.5,5 5.6,8.2 1.2,3.2 0.2,6.8 -0.3,9 -0.5,2.2 -0.5,2.8 -1.8,4.2 -1.4,1.3 -4,3.3 -6.3,4.7 -2.2,1.4 -4.1,2.3 -5.9,3.1 -1.8,0.8 -3.7,1.7 -5.9,1.3 -2.3,-0.5 -4.9,-2.1 -6.3,-3.6 -1.3,-1.5 -1.3,-2.9 -3,-4.5 -1.6,-1.7 -5,-3.7 -7.1,-5.4 -2.2,-1.6 -3.2,-3 -4.2,-4.3 -1,-1.3 -2,-2.7 -2.8,-3.5 -0.9,-0.8 -1.5,-1.2 -2,-1.5 -0.5,-0.3 -0.9,-0.7 -1,-3 -0.2,-2.3 -0.2,-6.7 0,-9.3 0.1,-2.7 0.5,-3.7 1.3,-4.5 0.8,-0.9 2.2,-1.5 3.8,-1.7 1.7,-0.2 3.7,0.2 5.2,0"),S(K,"id","lake_38"),S(K,"data-f","38"),S(K,"style","fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1417.7,1123.6 c 2,-0.1 2.6,0.4 3.3,0.9 0.7,0.5 1.3,1 1.3,3.3 0,2.2 -0.6,6.2 -2.6,8.5 -2,2.4 -5.4,3 -7.7,3 -2.3,0 -3.7,-0.6 -4.5,-2.8 -0.8,-2.2 -1.2,-5.8 -1.3,-7.7 -0.2,-1.8 -0.2,-1.8 0.3,-2.1 0.5,-0.4 1.5,-1 3.7,-1.7 2.1,-0.7 5.5,-1.3 7.5,-1.4"),S(K,"id","lake_39"),S(K,"data-f","39"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1695.2,1135.2 c 0.5,2.5 0.1,6.1 -0.5,8.3 -0.7,2.2 -1.7,2.8 -1.7,4.5 0,1.7 1,4.3 -0.2,6.8 -1.1,2.5 -4.5,4.9 -7.3,4.9 -2.8,0 -5.2,-2.4 -7.7,-3.5 -2.5,-1.2 -5.1,-1.2 -7.1,-2.4 -2,-1.1 -3.4,-3.5 -3.4,-5.7 0,-2.3 1.4,-4.4 2.7,-6.6 1.3,-2.2 2.7,-4.3 4.5,-5.4 1.8,-1.1 4.2,-1.1 6,-1.9 1.8,-0.9 3.2,-2.5 4.3,-3.5 1.2,-1 2.2,-1.4 3.4,-1.4 1.1,0 2.5,0.4 3.8,1.2 1.3,0.8 2.7,2.2 3.2,4.7"),S(K,"id","lake_40"),S(K,"data-f","40"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1914,1126 c 0.7,1.3 1.3,3.7 0.8,6.2 -0.5,2.5 -2.1,5.1 -3,6.8 -0.8,1.7 -0.8,2.3 -0.8,3.2 0,0.8 0,1.8 -1,3.1 -1,1.4 -3,3 -4.2,5.2 -1.1,2.2 -1.5,4.8 -3.3,6.5 -1.8,1.7 -5.2,2.3 -7.5,3 -2.3,0.7 -3.7,1.3 -5.7,0.8 -2,-0.5 -4.6,-2.1 -4.8,-5 -0.2,-2.8 2.2,-6.8 4.3,-9 2.2,-2.1 4.2,-2.5 6,-4.1 1.9,-1.7 3.5,-4.7 4.2,-6.4 0.7,-1.6 0.3,-2 1.7,-3.8 1.3,-1.8 4.3,-5.2 6.5,-6.8 2.1,-1.7 3.5,-1.7 4.5,-1.5 1,0.1 1.6,0.5 2.3,1.8"),S(K,"id","lake_41"),S(K,"data-f","41"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 486,1160 c -0.7,-2 -0.3,-5 1.3,-7 1.7,-2 4.7,-3 5.4,-1 0.6,2 -1,7 -2.7,9 -1.7,2 -3.3,1 -4,-1"),S(K,"id","lake_42"),S(K,"data-f","42"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 2216.8,1162 c -1.6,2.7 -5.4,7.3 -7.3,9.7 -1.9,2.3 -1.9,2.3 -1.9,2.3 0,0 0,0 -0.4,0 -0.4,0 -1.3,0 -1.8,0 -0.4,0 -0.4,0 -0.4,0 0,0 0,0 0,0 0,0 0,0 -0.2,-1.8 -0.1,-1.9 -0.5,-5.5 -0.1,-8.2 0.3,-2.7 1.3,-4.3 3.5,-5.2 2.1,-0.8 5.5,-0.8 7.5,-0.5 2,0.4 2.6,1 1.1,3.7"),S(K,"id","lake_43"),S(K,"data-f","43"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 2050.8,740.3 c 2.2,0.4 4.2,2 5.4,3.7 1.1,1.7 1.5,3.3 1,5 -0.5,1.7 -1.9,3.3 -3.4,3.8 -1.5,0.5 -3.1,-0.1 -5,-1.5 -1.8,-1.3 -3.8,-3.3 -4.6,-5 -0.9,-1.6 -0.5,-3 0.8,-4.1 1.3,-1.2 3.7,-2.2 5.8,-1.9"),S(K,"id","lake_30"),S(K,"data-f","30"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 760.2,538.3 c -1.5,0.7 -2.9,0.7 -4.4,-0.1 -1.5,-0.9 -3.1,-2.5 -3.6,-4.4 -0.5,-1.8 0.1,-3.8 2.1,-5 2,-1.1 5.4,-1.5 7.4,-0.3 2,1.2 2.6,3.8 2.1,5.8 -0.5,2 -2.1,3.4 -3.6,4"),S(K,"id","lake_21"),S(K,"data-f","21"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 801.2,544 c 0.1,2.3 -0.5,4.7 -1.5,6.2 -1,1.5 -2.4,2.1 -4.4,2.1 -2,0 -4.6,-0.6 -6.5,-1.8 -1.8,-1.2 -2.8,-2.8 -3.1,-4.8 -0.4,-2 0,-4.4 0.8,-5.9 0.8,-1.5 2.2,-2.1 4.3,-2.5 2.2,-0.3 5.2,-0.3 7.2,0.9 2,1.1 3,3.5 3.2,5.8"),S(K,"id","lake_25"),S(K,"data-f","25"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 669.3,294.4 c -0.5,1.8 -1.6,2.9 -2.8,4.1 -1.2,1.2 -2.3,2.3 -3.9,1.4 -1.6,-0.9 -3.6,-3.9 -4.1,-6.6 -0.5,-2.6 0.5,-5 2.5,-5.8 2,-0.8 5,-0.2 6.7,1.3 1.6,1.5 2,3.9 1.6,5.6"),S(K,"id","lake_11"),S(K,"data-f","11"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision;-webkit-filter:url(#paper)")]),O),H(Q,"path",F([S(K,"d","m 897.3,300.8 c 1,1.2 1.4,3.2 0.5,4.9 -0.8,1.6 -2.8,3 -4.6,3 -1.9,0 -3.5,-1.4 -4.4,-2.5 -0.8,-1.2 -0.8,-2.2 0,-3.4 0.9,-1.1 2.5,-2.5 4.2,-3 1.7,-0.5 3.3,-0.1 4.3,1"),S(K,"id","lake_12"),S(K,"data-f","12"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision;-webkit-filter:url(#paper)")]),O),H(Q,"path",F([S(K,"d","m 905,166.3 c -1.3,0.7 -2.7,0.7 -3.7,0.4 -1,-0.4 -1.6,-1 -1.6,-3 0,-2 0.6,-5.4 1.8,-7.4 1.2,-2 2.8,-2.6 4.2,-1.3 1.3,1.3 2.3,4.7 2.1,7 -0.1,2.3 -1.5,3.7 -2.8,4.3"),S(K,"id","lake_5"),S(K,"data-f","5"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 741.2,343.5 c 0.5,1.5 0.1,2.5 -1.7,3.7 -1.8,1.1 -5.2,2.5 -7.3,2.8 -2.2,0.3 -3.2,-0.3 -3.7,-1.2 -0.5,-0.8 -0.5,-1.8 0.8,-3.8 1.4,-2 4,-5 5.7,-6.3 1.7,-1.4 2.3,-1 3.3,0.1 1,1.2 2.4,3.2 2.9,4.7"),S(K,"id","lake_13"),S(K,"data-f","13"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 697.2,382.3 c -2.2,1.7 -5.2,1.7 -7,0.5 -1.9,-1.1 -2.5,-3.5 -2.4,-5.8 0.2,-2.3 1.2,-4.7 2.9,-6 1.6,-1.3 4,-1.7 6,-1 2,0.7 3.6,2.3 3.8,4.8 0.2,2.5 -1.2,5.9 -3.3,7.5"),S(K,"id","lake_14"),S(K,"data-f","14"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 634,385.2 c 3,0.5 4,1.1 4.5,1.8 0.5,0.7 0.5,1.3 0,2.3 -0.5,1 -1.5,2.4 -3.8,4 -2.4,1.7 -6,3.7 -7.9,6 -1.8,2.4 -1.8,5 -3,7 -1.1,2 -3.5,3.4 -4.6,5.2 -1.2,1.8 -1.2,4.2 -2.5,6.3 -1.4,2.2 -4,4.2 -7,4.4 -3,0.1 -6.4,-1.5 -8.2,-3.5 -1.8,-2 -2.2,-4.4 -1.7,-6.5 0.5,-2.2 1.9,-4.2 2.9,-5.5 1,-1.4 1.6,-2 2.1,-3.2 0.5,-1.2 0.9,-2.8 3,-4.5 2.2,-1.7 6.2,-3.3 8.4,-5.5 2.1,-2.2 2.5,-4.8 3,-6.5 0.5,-1.7 1.1,-2.3 4,-2.5 2.8,-0.2 7.8,0.2 10.8,0.7"),S(K,"id","lake_17"),S(K,"data-f","17"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 114.2,538.7 c -0.5,1.6 -1.9,4 -3.4,5.5 -1.5,1.5 -3.1,2.1 -5,2 -1.8,-0.2 -3.8,-1.2 -4.8,-2.9 -1,-1.6 -1,-4 0.7,-6.1 1.6,-2.2 5,-4.2 7.3,-4.5 2.3,-0.4 3.7,1 4.5,2.1 0.8,1.2 1.2,2.2 0.7,3.9"),S(K,"id","lake_23"),S(K,"data-f","23"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 759.7,572.8 c 2,0.2 4.6,-2.8 6.6,-3.6 2,-0.9 3.4,0.5 4.2,1.5 0.8,1 1.2,1.6 0.5,2.8 -0.7,1.2 -2.3,2.8 -4.5,3.8 -2.2,1 -4.8,1.4 -6.7,2 -1.8,0.7 -2.8,1.7 -4.6,2.9 -1.9,1.1 -4.5,2.5 -7.2,2.3 -2.7,-0.2 -5.3,-1.8 -6.8,-3.5 -1.5,-1.7 -1.9,-3.3 -0.9,-5.7 1,-2.3 3.4,-5.3 6,-7 2.7,-1.6 5.7,-2 7.9,-0.5 2.1,1.5 3.5,4.9 5.5,5"),S(K,"id","lake_26"),S(K,"data-f","26"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 1589.8,717 c -0.1,0.3 -0.5,0.7 -1.1,1 -0.7,0.3 -1.7,0.7 -3.9,0.3 -2.1,-0.3 -5.5,-1.3 -7,-3.1 -1.5,-1.9 -1.1,-4.5 0,-5.9 1.2,-1.3 3.2,-1.3 5.4,0 2.1,1.4 4.5,4 5.6,5.5 1.2,1.5 1.2,1.9 1,2.2"),S(K,"id","lake_28"),S(K,"data-f","28"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O),H(Q,"path",F([S(K,"d","m 89.7,1041.7 c -1.7,1 -4.7,2.6 -6.4,3.3 -1.6,0.7 -2,0.3 -2.6,-1.5 -0.7,-1.8 -1.7,-5.2 -1.4,-7 0.4,-1.8 2,-2.2 3.7,-2.5 1.7,-0.3 3.3,-0.7 4.8,0.3 1.5,1 2.9,3.4 3.4,4.7 0.5,1.3 0.1,1.7 -1.5,2.7"),S(K,"id","lake_35"),S(K,"data-f","35"),S(K,"style","display:inline;fill:#aaccff;shape-rendering:geometricPrecision")]),O)])),H(Q,"g",F([S(K,"id","landmass"),S(K,"style","display:inline;opacity:1;fill:#e3dfce;fill-rule:evenodd;shape-rendering:geometricPrecision"),S(K,"mask","url(#land)"),S(K,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),F([H(Q,"rect",F([S(K,"x","0"),S(K,"y","0"),S(K,"width","2400"),S(K,"height","1174"),S(K,"id","rect247"),S(K,"inkscape:label","rect247"),S(K,"style","display:inline")]),O)])),H(Q,"g",F([S(K,"id","rivers"),S(K,"fill","#a69b7d"),S(K,"filter",""),S(K,"style","display:inline;shape-rendering:geometricPrecision;-webkit-mask:url(#land);-webkit-mask-image:url(#land)"),S(K,"mask","url(#land)"),S(K,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),F([H(Q,"path",F([S(K,"id","river1"),S(K,"d","m 2202.5,669.3 c 0,0 1.9,3 2.3,4.7 0.4,1.7 1.3,3.4 0.4,5.3 -1,2 -4.1,4.5 -6.4,6.4 -2.4,1.8 -7.6,4.8 -7.6,4.8 -0.1,-0.2 5.1,-3.1 7.4,-5 2.3,-1.8 5.4,-4.4 6.3,-6.3 0.9,-1.9 0.1,-3.5 -0.4,-5.1 -0.4,-1.6 -2.3,-4.7 -2.3,-4.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river2"),S(K,"d","m 2204.3,751.2 c 0,0 -1.7,-4.1 -2,-6.2 -0.4,-2.2 1,-4.4 -0.1,-6.5 -1.1,-2.2 -4.8,-4.1 -6.8,-6.5 -2,-2.4 -2.7,-7.1 -5.2,-7.8 -2.7,-0.7 -6.9,2.9 -10.4,3.8 -3.6,1 -11,1.9 -11,1.9 0,-0.1 7.3,-1.1 10.9,-2 3.6,-1 7.8,-4.6 10.5,-3.9 2.6,0.7 3.4,5.4 5.5,7.8 2,2.4 5.7,4.3 6.9,6.5 1.1,2.1 -0.2,4.4 0.2,6.6 0.4,2.1 2,6.1 2,6.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river3"),S(K,"d","m 2171,618.6 c 0,0 -5.2,0.8 -7.8,0.7 -2.5,-0.1 -6.1,-2.1 -7.4,-1.2 -1.4,0.8 -0.2,4.2 -0.8,6.2 -0.6,2.1 -2.9,6 -2.9,6 -0.3,-0.2 1.8,-4 2.4,-6.1 0.6,-2.1 -0.5,-5.7 0.9,-6.7 1.5,-0.9 5.3,1.1 7.8,1.2 2.6,0 7.7,-0.8 7.7,-0.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river5"),S(K,"d","m 2219.1,710.2 c 0,0 -1,1.7 -1.7,2.1 -0.8,0.3 -0.5,0.2 -2.7,0.2 -2.6,0 -8.8,0 -13.1,-0.5 -4.4,-0.5 -12.9,-2.5 -12.9,-2.5 0,-0.1 8.6,1.8 12.9,2.2 4.3,0.5 10.6,0.4 13.1,0.4 2.1,0 1.8,0.2 2.5,-0.2 0.6,-0.4 1.6,-1.9 1.6,-1.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river6"),S(K,"d","m 2159.1,593.3 c 0,0 1.1,4 1.2,6 0,2 0.4,3.9 -0.9,6.1 -1.3,2.3 -4.6,5.3 -7.2,7.5 -2.6,2.3 -8.5,6 -8.5,6 -0.1,-0.1 5.7,-3.9 8.3,-6.2 2.6,-2.2 5.8,-5.2 7.1,-7.5 1.2,-2.1 0.8,-3.9 0.7,-5.9 0,-2 -1.2,-5.9 -1.2,-5.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river9"),S(K,"d","m 0,980.1 c 0,0 10,1.5 14.4,0 4.3,-1.4 7.5,-6.1 11.6,-8.7 4,-2.7 12.7,-7.1 12.7,-7.1 0,0.1 -8.6,4.6 -12.7,7.2 -4,2.7 -7.2,7.4 -11.6,8.9 -4.3,1.4 -14.4,0 -14.4,0"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river15"),S(K,"d","m 1474.8,185.8 c 0,0 6,3.9 8.7,6.2 2.8,2.3 4.5,6.2 7.5,7.6 3.1,1.5 7.4,0.4 10.9,1.1 3.6,0.7 10.5,3.1 10.5,3.1 0,0.1 -6.9,-2.3 -10.5,-2.9 -3.6,-0.7 -7.9,0.3 -10.9,-1.1 -3.1,-1.5 -4.9,-5.4 -7.6,-7.7 -2.7,-2.3 -8.8,-6.1 -8.8,-6.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river16"),S(K,"d","m 154.9,305 c 0,0 4.2,-1.9 6.4,-2.3 2.2,-0.5 5.2,-1.5 6.9,-0.4 1.7,1.1 2.6,4.6 3.4,7 0.8,2.5 1.5,7.7 1.5,7.7 -0.1,0 -0.8,-5.2 -1.7,-7.6 -0.8,-2.4 -1.7,-5.8 -3.4,-6.9 -1.6,-1 -4.5,0 -6.6,0.5 -2.2,0.4 -6.3,2.3 -6.3,2.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river18"),S(K,"d","m 379.7,241.9 c 0,0 5.5,-3.1 8.4,-4.2 2.8,-1.2 5.9,-2.3 9,-2.5 3.1,-0.2 6.5,0.5 9.6,1.3 3.1,0.8 6.2,1.7 9.1,3.3 2.9,1.6 5.7,4.2 8.2,6.6 2.5,2.4 6.9,8 6.9,8 -0.2,0.1 -4.5,-5.5 -7,-7.9 -2.5,-2.4 -5.3,-4.9 -8.2,-6.5 -2.9,-1.7 -6,-2.5 -9.1,-3.3 -3.1,-0.7 -6.4,-1.5 -9.5,-1.3 -3.1,0.2 -6.1,1.4 -8.9,2.6 -2.9,1.1 -8.3,4.3 -8.3,4.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river24"),S(K,"d","m 292.8,827.6 c 0,0 4.7,-0.9 7,-0.8 2.4,0 4.3,0.5 7,1.1 2.9,0.5 6.6,1.2 9.8,2.3 3.1,1 9.1,4.1 9.1,4.1 -0.1,0.1 -6,-2.9 -9.2,-4 -3.1,-1 -6.9,-1.6 -9.7,-2.2 -2.7,-0.5 -4.7,-1 -7,-1 -2.3,-0.1 -7,0.9 -7,0.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river25"),S(K,"d","m 1083.1,191.5 c 0,0 -4.3,4.3 -6.8,6 -2.5,1.7 -5.1,4.6 -8,4.4 -3,-0.2 -6.7,-3.7 -9.8,-5.9 -3.1,-2.3 -8.6,-7.6 -8.6,-7.6 0.1,0 5.6,5.2 8.7,7.4 3,2.3 6.7,5.7 9.7,5.9 2.9,0.2 5.4,-2.7 7.9,-4.4 2.4,-1.7 6.8,-6 6.8,-6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river26"),S(K,"d","m 338.7,797 c 0,0 0.8,6.6 0.7,9.9 -0.1,3.3 -1.8,7.4 -1.2,9.8 0.4,2.2 2.9,2.6 3.9,4.2 1,1.6 2.3,5.3 2.3,5.3 -0.2,0.1 -1.4,-3.6 -2.5,-5.2 -1.1,-1.6 -3.6,-2 -4.1,-4.3 -0.5,-2.3 1.2,-6.5 1.3,-9.8 0.1,-3.3 -0.7,-9.9 -0.7,-9.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river27"),S(K,"d","m 290.7,836.8 c 0,0 5.2,-1.2 7.9,-1.2 2.6,-0.1 5.6,0.2 7.8,0.8 2.2,0.5 3.9,1.2 5.5,2.3 1.6,1 4.3,4 4.3,4 -0.1,0.1 -2.8,-2.8 -4.5,-3.8 -1.6,-1 -3.2,-1.7 -5.3,-2.2 -2.2,-0.5 -5.2,-0.8 -7.8,-0.7 -2.6,0 -7.8,1.2 -7.8,1.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river28"),S(K,"d","m 309.8,898.2 c 0,0 -0.8,-5.1 -0.6,-7.6 0.1,-2.5 0.8,-5 1.2,-7.4 0.4,-2.4 0.4,-4.8 1.1,-7 0.7,-2.2 3,-6.4 3,-6.4 0.1,0.1 -2.2,4.2 -2.8,6.5 -0.6,2.2 -0.6,4.5 -1,6.9 -0.3,2.4 -1.1,5 -1.2,7.4 -0.1,2.5 0.7,7.6 0.7,7.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river30"),S(K,"d","m 154,282.6 c 0,0 3.5,0.8 5.1,1.6 1.5,0.9 1.9,2.5 4.2,3.3 2.4,1 7.1,1.1 10.5,2.1 3.4,1 7.2,1.5 10,4 3,2.6 5.2,7.4 7.4,11.4 2.2,4 5.6,12.4 5.6,12.4 -0.1,0 -3.6,-8.4 -5.8,-12.3 -2.1,-3.9 -4.4,-8.8 -7.3,-11.3 -2.9,-2.5 -6.6,-2.9 -10,-3.9 -3.4,-1 -8.1,-1 -10.6,-2 -2.3,-0.8 -2.7,-2.4 -4.2,-3.2 -1.6,-0.8 -5.1,-1.6 -5.1,-1.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river32"),S(K,"d","m 0,1006 c 0,0 5,1.4 7,0 2.1,-1.4 3.4,-6.1 5.5,-8.9 2.1,-2.8 7.1,-7.7 7.1,-7.7 0.1,0.1 -4.9,5 -7,7.8 -2.1,2.8 -3.3,7.5 -5.5,9 -2,1.4 -7.1,0 -7.1,0"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river35"),S(K,"d","m 2400,995.8 c 0,0 -11.1,-1.7 -12.8,-0.1 -1.6,1.6 1.9,6.3 2.4,9.6 0.5,3.3 0.4,10 0.4,10 -0.2,0 -0.2,-6.6 -0.7,-10 -0.4,-3.3 -4.1,-8.2 -2.4,-9.8 1.8,-1.8 13.1,-0.1 13.1,-0.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river36"),S(K,"d","m 389.1,937.2 c 0,0 4.9,-2 7.5,-2.5 2.6,-0.5 6,-1.4 7.9,-0.6 1.9,0.8 2.7,3.4 3.6,5.3 0.9,1.9 1.6,6.1 1.6,6.1 -0.1,0 -1,-4.1 -1.8,-6 -0.9,-1.8 -1.7,-4.3 -3.5,-5.1 -1.9,-0.7 -5.2,0.1 -7.8,0.7 -2.5,0.5 -7.4,2.5 -7.4,2.5"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river37"),S(K,"d","m 2400,226 c 0,0 -8.4,1.6 -9.7,-0.1 -1.4,-1.7 0.8,-7 1.6,-10.4 0.9,-3.3 3.7,-9.7 3.7,-9.7 0.3,0.1 -2.4,6.5 -3.3,9.8 -0.9,3.3 -3.1,8.4 -1.8,10.1 1.3,1.6 9.5,-0.1 9.5,-0.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river40"),S(K,"d","m 0,950.4 c 0,0 12,-1.3 14.7,0 2.5,1.2 1.5,4.5 1.7,6.8 0.2,2.3 -0.4,6.9 -0.4,6.9 -0.2,0 0.4,-4.6 0.2,-6.9 C 16,955 17,951.8 14.6,950.7 12,949.5 0,950.7 0,950.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river41"),S(K,"d","m 12.3,324.7 c 0,0 5,2 7.3,3.4 2.3,1.4 5,2.3 6.4,5 1.5,2.9 1.7,8.1 2.1,12.1 0.3,4.1 -0.2,8.1 0,12.2 0.3,4.1 1.4,8.2 1.5,12.3 0.2,4.2 -0.5,12.5 -0.5,12.5 -0.1,0 0.5,-8.3 0.3,-12.4 -0.2,-4.2 -1.3,-8.3 -1.5,-12.4 -0.3,-4 0.2,-8.1 -0.2,-12.2 -0.4,-4 -0.6,-9.1 -2.1,-11.9 -1.4,-2.7 -4,-3.5 -6.2,-4.8 -2.3,-1.4 -7.3,-3.2 -7.3,-3.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river42"),S(K,"d","m 2400,143.6 c 0,0 -1.2,-1.4 -1.5,-0.2 -0.4,1.5 0.1,6.7 -0.3,10 -0.4,3.3 -2.3,9.7 -2.3,9.7 -0.1,0 1.7,-6.4 2.1,-9.7 0.4,-3.3 -0.2,-8.5 0.2,-10 0.4,-1.3 1.8,-0.1 1.8,-0.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river43"),S(K,"d","m 98.7,264.2 c 0,0 0.3,-5.3 1,-7.8 0.6,-2.5 2.3,-4.7 2.9,-7.3 0.6,-2.6 0.1,-5.6 0.7,-8.3 0.6,-2.6 4.5,-6.9 2.7,-7.7 -1.9,-0.9 -9.9,2.6 -14.9,3.4 -5,0.8 -15.3,1.4 -15.3,1.4 0,-0.1 10.2,-0.8 15.3,-1.6 5,-0.8 13,-4.4 15,-3.5 1.8,0.9 -2,5.4 -2.5,8.1 -0.5,2.7 -0.1,5.7 -0.7,8.3 -0.6,2.6 -2.2,4.8 -2.8,7.3 -0.6,2.5 -1,7.7 -1,7.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river53"),S(K,"d","m 2373.1,630 c 0,0 1.8,-6.9 3.2,-10.1 1.3,-3.3 4.4,-6.3 4.9,-9.4 0.6,-3.2 -1.3,-6.3 -1.5,-9.5 -0.2,-3.2 -0.6,-6.5 0.4,-9.8 1.1,-3.3 3.9,-6.9 6.3,-10.1 2.3,-3.1 7.8,-8.8 7.8,-8.8 0.1,0.1 -5.4,5.8 -7.7,9 -2.3,3.1 -5,6.7 -6.1,10 -1.1,3.3 -0.6,6.4 -0.4,9.6 0.2,3.2 2.2,6.5 1.6,9.6 -0.5,3.2 -3.5,6.3 -4.9,9.5 -1.3,3.3 -3.1,10.2 -3.1,10.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river54"),S(K,"d","m 985,584.8 c 0,0 -7.6,0.2 -11.4,-0.2 -3.7,-0.4 -8.5,-2.2 -11.1,-2.1 -2.3,0 -2.7,1.7 -4.1,2 -1.5,0.4 -4.7,0.2 -4.7,0.2 0,-0.2 3.2,0 4.6,-0.4 1.5,-0.4 1.8,-2.1 4.2,-2.2 2.6,0 7.4,1.8 11.2,2.1 3.7,0.4 11.3,0.2 11.3,0.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river63"),S(K,"d","m 1203.9,734.4 c 0,0 3.7,3.7 5.2,5.8 1.5,2.1 2,3.9 3.6,6.8 1.7,3 4.7,7.2 6.5,11 1.9,3.7 2.7,8.8 4.8,11.7 2,2.9 5.3,3.7 7.6,5.9 2.3,2.3 6.2,7.4 6.2,7.4 -0.1,0.1 -4.1,-5 -6.4,-7.2 -2.3,-2.2 -5.5,-3 -7.6,-5.9 -2.1,-3 -2.9,-8 -4.8,-11.8 -1.9,-3.8 -4.9,-7.9 -6.6,-10.9 -1.6,-2.9 -2.2,-4.7 -3.6,-6.8 -1.5,-2.1 -5.2,-5.6 -5.2,-5.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river64"),S(K,"d","m 45.9,914.5 c 0,0 -5.9,3.2 -8.9,4.3 -3.1,1.1 -7.6,0.6 -9.6,2.4 -1.9,1.9 -1,5.8 -2,8.6 -1,2.7 -3.9,8 -3.9,8 -0.1,-0.1 2.8,-5.3 3.7,-8.1 1,-2.7 0.2,-6.8 2.1,-8.7 1.9,-1.8 6.5,-1.3 9.6,-2.5 3,-1.1 8.8,-4.3 8.8,-4.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river68"),S(K,"d","m 969.9,706.7 c 0,0 -8.3,-0.1 -12.4,-0.6 -4.2,-0.5 -10,-0.7 -12.4,-2.3 -2.3,-1.5 -1.8,-4.6 -2.3,-6.8 -0.4,-2.3 0.4,-4.7 -0.2,-6.7 -0.7,-2 -2.8,-3.5 -3.8,-5.4 -1,-2 -1.3,-3.8 -2.3,-6.3 -1,-2.8 -3,-6.5 -4,-9.8 -1,-3.2 -0.5,-8.6 -2.1,-9.9 -1.7,-1.4 -5,1.3 -7.6,1.5 -2.7,0.2 -5.6,0.2 -8.3,-0.3 -2.6,-0.6 -5.3,-1.7 -7.8,-2.9 -2.5,-1.3 -5.3,-2 -7.2,-4.7 -1.9,-2.7 -3,-7.9 -4.1,-12 -1,-4.2 -3.6,-10.4 -2.2,-12.8 1.3,-2.3 6.7,-1.6 9.9,-1.8 3.2,-0.3 8.6,2.2 9.4,0.4 0.7,-1.8 -3.9,-7.6 -5.4,-11.6 -1.5,-4.1 -1.4,-10.2 -3.6,-12.6 -2.1,-2.2 -6.2,-0.6 -9.2,-1.4 -3,-0.8 -5.4,-2.9 -8.8,-3.4 -3.4,-0.5 -7.6,0.5 -11.4,0.3 -3.8,-0.2 -7.6,0 -11.4,-1.7 -3.8,-1.7 -7.9,-5.4 -11.5,-8.5 -3.6,-3.1 -10.1,-10 -10.1,-10 0.1,-0.1 6.7,6.8 10.3,9.9 3.6,3.1 7.6,6.8 11.4,8.4 3.7,1.6 7.5,1.4 11.3,1.6 3.8,0.2 8.1,-0.8 11.5,-0.3 3.3,0.5 5.8,2.5 8.8,3.3 3,0.8 7.2,-0.7 9.4,1.5 2.3,2.4 2.3,8.5 3.8,12.7 1.6,4.1 6.4,10.1 5.6,12.1 -0.8,2 -6.8,-0.2 -10,0.1 -3.2,0.2 -8.1,-0.8 -9.3,1.4 -1.2,2.3 1.3,8.1 2.4,12.1 1,4 2.1,9.1 4,11.8 1.8,2.6 4.4,3.1 6.8,4.3 2.4,1.2 5,2.3 7.6,2.8 2.6,0.5 5.3,0.5 8,0.3 2.7,-0.1 6.5,-2.8 8.3,-1.3 1.9,1.5 1.4,7.1 2.5,10.4 1.1,3.4 2.9,7 4,9.7 1,2.5 1.3,4.2 2.3,6.2 1,1.9 3.1,3.5 3.8,5.5 0.8,2.1 0.1,4.7 0.4,6.8 0.3,2.2 -0.4,4.7 1.7,6.1 2.3,1.4 7.9,1.6 11.9,2.1 4.1,0.4 12.3,0.5 12.3,0.5"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river69"),S(K,"d","m 148.6,128.8 c 0,0 0.8,4.2 0.7,6.4 -0.1,2.1 -0.1,4.2 -1.2,6.3 -1.2,2.2 -3.6,4.6 -5.7,6.6 -2.2,1.9 -5.9,3.7 -7,5 -1.1,1.3 0.2,2.1 -0.2,3 -0.4,0.9 -2,2.3 -2,2.3 -0.1,-0.1 1.5,-1.5 1.8,-2.4 0.4,-0.8 -0.8,-1.7 0.2,-3 1.1,-1.4 4.9,-3.2 7,-5.1 2.1,-2 4.5,-4.4 5.6,-6.5 1.1,-2.1 1.1,-4.2 1.2,-6.3 0,-2 -0.8,-6.3 -0.8,-6.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river70"),S(K,"d","m 159.1,264.7 c 0,0 5.4,-0.7 8.1,-0.5 2.6,0.2 6.2,0.5 7.9,1.5 1.6,0.9 1.9,2.5 2.4,3.9 0.5,1.4 0.4,4.5 0.4,4.5 -0.1,0 -0.1,-3.1 -0.6,-4.4 -0.5,-1.4 -0.7,-2.9 -2.3,-3.7 -1.7,-0.9 -5.2,-1.3 -7.9,-1.5 -2.6,-0.1 -7.9,0.6 -7.9,0.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river77"),S(K,"d","m 2220.5,1054.1 c 0,0 -3.8,6 -6,8.7 -2.3,2.7 -5.4,6.4 -7.6,7.4 -2,1 -3.4,-0.3 -5,-0.9 -1.5,-0.7 -4.1,-2.9 -4.1,-2.9 0,0 2.7,2.1 4.2,2.7 1.5,0.7 2.9,1.9 4.8,1 2.1,-1 5.3,-4.7 7.5,-7.4 2.3,-2.7 6,-8.7 6,-8.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river83"),S(K,"d","m 404.6,905.5 c 0,0 5.6,3.9 8.1,6.3 2.4,2.3 4.9,6.8 6.7,7.6 1.6,0.7 2.3,-1.8 3.7,-2.2 1.4,-0.4 2.6,-0.7 4.5,-0.3 2,0.4 5,1.7 7.3,3 2.2,1.2 6.2,4.7 6.2,4.7 -0.1,0.1 -4.1,-3.3 -6.3,-4.6 -2.3,-1.2 -5.3,-2.5 -7.2,-2.9 -1.9,-0.3 -3,0 -4.4,0.4 -1.4,0.5 -2.3,3 -4,2.3 -1.8,-0.8 -4.4,-5.4 -6.9,-7.7 -2.5,-2.3 -8.1,-6.2 -8.1,-6.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river84"),S(K,"d","m 827.5,455.6 c 0,0 0,6.7 -0.5,10 -0.4,3.3 -0.6,7.9 -2.4,9.7 -1.8,1.9 -5.6,1.3 -8.4,1.4 -2.9,0.2 -8.5,-0.5 -8.5,-0.5 0.1,-0.2 5.7,0.5 8.4,0.3 2.8,-0.1 6.4,0.4 8.2,-1.4 1.8,-1.9 1.9,-6.3 2.3,-9.6 0.5,-3.2 0.5,-9.9 0.5,-9.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river85"),S(K,"d","m 2127.5,552.8 c 0,0 -3.7,2.2 -5.7,2.7 -2,0.6 -3.8,-0.8 -6.1,0.9 -2.6,1.7 -5.6,6.9 -8.7,10 -3.2,3.1 -10.1,8.6 -10.1,8.6 -0.1,-0.1 6.8,-5.6 10,-8.7 3.1,-3.1 6.1,-8.3 8.6,-10.1 2.4,-1.6 4.3,-0.3 6.3,-0.9 1.9,-0.6 5.5,-2.7 5.5,-2.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river86"),S(K,"d","m 389.6,273.6 c 0,0 3.2,-1.7 4.9,-2.1 1.6,-0.3 3.7,-0.9 5.3,-0.1 1.5,0.8 2.9,3.4 4,5.3 1,1.9 2.2,6.3 2.2,6.3 -0.2,0 -1.4,-4.3 -2.4,-6.2 -1,-1.9 -2.4,-4.4 -4,-5.2 -1.5,-0.8 -3.4,-0.2 -5.1,0.2 -1.6,0.4 -4.7,2.1 -4.7,2.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river90"),S(K,"d","m 2400,960.8 c 0,0 -8.8,0.6 -12.3,-0.1 -3.5,-0.6 -6,-2.3 -8.6,-3.9 -2.7,-1.5 -5,-4.7 -7.6,-5.4 -2.5,-0.7 -5,1.1 -7.6,1.1 -2.5,0.1 -5.6,-1.1 -7.6,-0.8 -1.9,0.3 -2.7,2.1 -4.3,2.6 -1.6,0.6 -5,0.8 -5,0.8 0,-0.2 3.4,-0.4 4.9,-0.9 1.6,-0.6 2.4,-2.4 4.4,-2.7 2,-0.4 5.1,0.8 7.6,0.7 2.6,0 5.2,-1.8 7.7,-1.2 2.6,0.7 5,4 7.6,5.5 2.7,1.5 5.1,3.1 8.5,3.7 3.5,0.7 12.3,0 12.3,0"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river91"),S(K,"d","m 2323.4,597.5 c 0,0 3.7,-4.8 5.9,-6.8 2.2,-2.1 5.1,-3 7.2,-5.5 2.2,-2.4 3.6,-6.4 5.7,-9.4 2.2,-3 5.1,-6.9 7.4,-8.3 2.1,-1.4 4,-0.8 5.9,-0.7 1.9,0.2 5.6,1.4 5.6,1.4 0,0.3 -3.8,-1 -5.6,-1.1 -1.9,-0.1 -3.6,-0.7 -5.7,0.7 -2.2,1.4 -5.1,5.3 -7.2,8.3 -2.2,2.9 -3.5,6.9 -5.7,9.5 -2.1,2.4 -5,3.4 -7.2,5.4 -2.2,2.1 -5.8,6.9 -5.8,6.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river92"),S(K,"d","m 496.9,869.4 c 0,0 -1.7,5.2 -3,7.6 -1.3,2.3 -3.6,4.2 -4.6,6.6 -1,2.4 -0.6,5.3 -1.4,7.9 -0.7,2.5 -0.9,6.3 -3.3,7.4 -2.5,1.3 -7.8,0 -11.7,-0.5 -3.8,-0.5 -11.3,-2.5 -11.3,-2.5 0,-0.2 7.5,1.8 11.4,2.3 3.8,0.5 9.1,1.7 11.5,0.5 2.4,-1.2 2.4,-4.8 3.1,-7.3 0.8,-2.6 0.3,-5.5 1.3,-8 1,-2.4 3.4,-4.3 4.6,-6.6 1.3,-2.4 2.9,-7.6 2.9,-7.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river93"),S(K,"d","m 423.2,793.4 c 0,0 3.9,7 5.4,10.7 1.5,3.7 2.8,8.4 3.6,11.4 0.7,2.9 1,4.3 1.1,6.5 0,2.2 -0.9,6.5 -0.9,6.5 -0.1,0 0.8,-4.3 0.7,-6.5 0,-2.1 -0.4,-3.6 -1.2,-6.4 -0.7,-3 -2,-7.7 -3.5,-11.4 -1.5,-3.7 -5.5,-10.6 -5.5,-10.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river97"),S(K,"d","m 1280.9,270.7 c 0,0 3.2,-0.3 4.5,-1.1 1.4,-0.8 2.1,-3.1 3.5,-3.8 1.3,-0.7 3.5,-0.7 4.9,-0.4 1.4,0.4 2.1,2.3 3.5,2.5 1.4,0.2 3.6,-1.6 5,-1.2 1.4,0.4 3.2,3.5 3.2,3.5 -0.2,0.1 -1.9,-2.9 -3.3,-3.3 -1.3,-0.3 -3.5,1.5 -4.9,1.3 -1.4,-0.3 -2.2,-2.2 -3.6,-2.5 -1.4,-0.4 -3.3,-0.3 -4.7,0.4 -1.3,0.7 -2,3 -3.4,3.9 -1.3,0.8 -4.5,1.1 -4.5,1.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river98"),S(K,"d","m 893,758 c 0,0 -1.7,2 -2.7,2.6 -1.1,0.6 -1.8,0.4 -3.7,1 -2,0.7 -5.5,2.3 -8.3,3 -2.9,0.7 -5.7,2.5 -8.9,1.2 -3.3,-1.4 -7.3,-6.3 -10.6,-9.8 -3.3,-3.5 -9.2,-11.1 -9.2,-11.1 0.1,-0.1 6,7.5 9.3,11 3.3,3.4 7.3,8.3 10.6,9.7 3.1,1.3 5.9,-0.5 8.7,-1.2 2.9,-0.7 6.3,-2.4 8.3,-3.1 1.9,-0.6 2.6,-0.4 3.6,-1 1,-0.6 2.6,-2.6 2.6,-2.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river99"),S(K,"d","m 1744.1,46.9 c 0,0 1.2,3.8 1.3,5.8 0.1,1.9 -1.2,3.7 -0.7,5.9 0.5,2.2 2.9,4.8 3.8,7.4 1,2.6 1,5.4 2,8.2 1,2.8 3,5.5 4,8.4 1.1,3 2.2,9.2 2.2,9.2 -0.1,0 -1.3,-6.2 -2.3,-9.1 -1,-2.9 -3.1,-5.7 -4.1,-8.5 -1,-2.7 -1,-5.5 -2,-8.1 -1,-2.6 -3.3,-5.2 -3.8,-7.5 -0.5,-2.2 0.7,-3.9 0.5,-5.9 -0.1,-1.9 -1.3,-5.8 -1.3,-5.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river100"),S(K,"d","m 2180.1,937.2 c 0,0 0.4,3.2 0.1,4.6 -0.3,1.5 -1.8,2.2 -1.8,4.2 -0.1,2.1 1.4,5.5 1.6,8.3 0.2,2.8 -0.4,8.5 -0.4,8.5 -0.1,0 0.4,-5.7 0.2,-8.5 -0.2,-2.8 -1.7,-6.2 -1.7,-8.3 0.1,-2 1.5,-2.8 1.8,-4.2 0.3,-1.5 -0.1,-4.6 -0.1,-4.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river101"),S(K,"d","m 1313.5,220.5 c 0,0 1.5,4.3 1.9,6.5 0.3,2.2 -0.9,5.2 -0.1,6.6 0.8,1.5 3.4,1.3 4.8,2.4 1.4,1 3.7,3.9 3.7,3.9 -0.1,0.1 -2.4,-2.8 -3.8,-3.8 -1.4,-1.1 -4.1,-0.9 -4.9,-2.3 -0.8,-1.6 0.3,-4.6 0,-6.8 -0.3,-2.2 -1.9,-6.4 -1.9,-6.4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river102"),S(K,"d","m 1565.8,87.4 c 0,0 4.3,1.9 6.2,3.2 1.9,1.3 3.8,3.1 5.1,4.7 1.3,1.7 2.1,3.3 2.7,5.1 0.6,1.8 0.9,5.7 0.9,5.7 -0.2,0.1 -0.4,-3.8 -1,-5.6 -0.6,-1.8 -1.5,-3.4 -2.8,-5 -1.3,-1.7 -3.2,-3.4 -5,-4.7 -1.9,-1.3 -6.2,-3.1 -6.2,-3.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river103"),S(K,"d","m 46.9,327.6 c 0,0 -1.2,2.3 -2.1,3 -0.9,0.8 -3.2,-0.2 -3.3,1.4 -0.1,1.8 2.7,6.3 3.6,9.6 0.9,3.3 1.6,10.1 1.6,10.1 -0.1,0 -0.9,-6.8 -1.8,-10.1 -0.9,-3.3 -3.7,-7.8 -3.6,-9.6 0,-1.6 2.4,-0.8 3.3,-1.6 0.9,-0.7 2.1,-2.9 2.1,-2.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river114"),S(K,"d","m 651.2,552.1 c 0,0 3.3,-4.6 5.2,-6.5 1.9,-1.8 5.7,-2.6 6.3,-4.9 0.7,-2.3 -1.8,-5.8 -2.3,-8.9 -0.4,-3 -2,-7.7 -0.4,-9.5 1.6,-1.9 6.9,-1.4 10.3,-1.6 3.4,-0.2 8.6,0.9 10,0.4 1.3,-0.5 -0.9,-1.9 -0.8,-2.8 0.1,-1 -0.3,-2 1.5,-3.1 1.9,-1.2 7.1,-2.9 10.8,-3.9 3.7,-1 9,-0.3 11.3,-2 2.2,-1.7 1.5,-5.6 2.7,-8.2 1.2,-2.6 1.7,-5.6 4.5,-7.4 3,-1.9 8.9,-2.6 13.4,-3.4 4.5,-0.9 13.7,-1.5 13.7,-1.5 0,0.1 -9.2,0.8 -13.7,1.6 -4.5,0.9 -10.3,1.6 -13.3,3.5 -2.8,1.8 -3.2,4.7 -4.4,7.3 -1.2,2.6 -0.5,6.5 -2.7,8.3 -2.4,1.8 -7.7,1.1 -11.4,2.1 -3.7,1 -8.8,2.8 -10.7,3.9 -1.7,1.1 -1,1.8 -1.1,2.8 -0.2,1.1 1.8,2.9 0.4,3.4 -1.5,0.7 -6.9,-0.5 -10.2,-0.3 -3.3,0.1 -8.3,-0.4 -9.8,1.3 -1.5,1.8 0.1,6 0.6,9 0.5,3.1 3.1,6.8 2.3,9.2 -0.7,2.4 -4.5,3.3 -6.5,5.3 -1.9,1.9 -5.1,6.3 -5.1,6.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river116"),S(K,"d","m 2288.6,937.2 c 0,0 -2.7,2.4 -4.3,3.1 -1.6,0.7 -4.3,-0.5 -5.1,1.2 -0.9,1.9 0.6,6.7 0.3,10 -0.2,3.3 -1.6,9.9 -1.6,9.9 -0.1,0 1.3,-6.6 1.5,-9.9 0.2,-3.3 -1.3,-8.2 -0.4,-10 0.8,-1.8 3.6,-0.7 5.2,-1.4 1.6,-0.8 4.3,-3.1 4.3,-3.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river117"),S(K,"d","m 494.1,855.7 c 0,0 -6.3,1.8 -9.5,2.3 -3.2,0.4 -7.5,-0.2 -9.7,0.3 -2,0.4 -2.1,1.9 -3.4,2.4 -1.2,0.5 -4.1,0.5 -4.1,0.5 0,-0.1 2.8,-0.2 4.1,-0.7 1.2,-0.5 1.4,-1.9 3.4,-2.4 2.2,-0.5 6.5,0.1 9.7,-0.3 3.2,-0.5 9.5,-2.3 9.5,-2.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river118"),S(K,"d","m 2328.6,135.1 c 0,0 6.4,-1.4 9.7,-1.6 3.2,-0.2 7.1,-0.8 9.8,0.4 2.8,1.2 4.7,4.3 6.6,6.7 1.9,2.4 5,7.9 5,7.9 -0.2,0.1 -3.2,-5.4 -5.1,-7.8 -2,-2.4 -3.8,-5.4 -6.5,-6.6 -2.8,-1.2 -6.6,-0.6 -9.8,-0.3 -3.2,0.2 -9.7,1.5 -9.7,1.5"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river119"),S(K,"d","m 301.6,701.1 c 0,0 -4.6,-3.1 -6.5,-5 -2,-1.9 -4.2,-3.9 -5.2,-6.3 -1,-2.4 -0.7,-5.4 -0.6,-8.1 0.1,-2.6 2.2,-5.3 1.4,-7.8 -0.8,-2.5 -4.6,-4.4 -6.5,-6.9 -1.9,-2.6 -4.9,-8.2 -4.9,-8.2 0.1,-0.1 3.1,5.5 5,8.1 1.9,2.5 5.7,4.5 6.6,7 0.8,2.4 -1.2,5.2 -1.4,7.9 -0.1,2.6 -0.3,5.5 0.6,7.9 1,2.3 3.3,4.3 5.2,6.2 2,1.8 6.5,4.8 6.5,4.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river120"),S(K,"d","m 2149.8,930.3 c 0,0 1.4,5.7 1.6,8.6 0.3,2.9 -1.2,5.6 -0.2,8.8 0.9,3.3 4.3,7.1 6.1,10.8 1.7,3.7 4.3,11.7 4.3,11.7 -0.1,0 -2.7,-7.9 -4.5,-11.6 -1.8,-3.8 -5.2,-7.5 -6.2,-10.8 -0.9,-3.2 0.5,-5.9 0.3,-8.8 -0.3,-3 -1.8,-8.7 -1.8,-8.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river136"),S(K,"d","m 981.5,631.1 c 0,0 -3.1,2.5 -4.9,3.4 -1.8,0.9 -3.9,1.7 -5.8,1.7 -1.9,0 -4,-0.9 -5.8,-1.8 -1.8,-0.9 -4.8,-3.6 -4.8,-3.6 0.1,-0.2 3.2,2.5 4.9,3.3 1.8,0.9 3.8,1.7 5.7,1.7 1.9,0 3.9,-0.8 5.6,-1.7 1.8,-0.8 4.8,-3.4 4.8,-3.4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river137"),S(K,"d","m 824.6,475.2 c 0,0 -0.9,7.5 -0.6,11.2 0.3,3.8 2.2,7.5 2.3,11.2 0.2,3.8 -0.5,8.4 -1.3,11.3 -0.8,2.8 -2.7,3.7 -3.1,5.9 -0.4,2.2 1.2,5.1 0.7,7.2 -0.6,2.1 -4,5.6 -4,5.6 -0.1,-0.1 3.3,-3.5 3.9,-5.6 0.5,-2.2 -1.1,-5 -0.7,-7.2 0.4,-2.2 2.3,-3.2 3,-5.9 0.8,-2.9 1.5,-7.5 1.3,-11.2 -0.1,-3.8 -2.1,-7.5 -2.4,-11.2 -0.3,-3.8 0.6,-11.3 0.6,-11.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river144"),S(K,"d","m 1949.3,975.9 c 0,0 -2.4,3.2 -3.8,4.4 -1.5,1.3 -3.5,1.3 -5.1,2.9 -1.6,1.7 -2.9,5.1 -4.7,7.3 -1.9,2.3 -4,3.5 -6.3,6.1 -2.4,2.7 -4.9,6.8 -7.7,9.8 -2.8,3.1 -9.2,8.5 -9.2,8.5 0,-0.1 6.3,-5.5 9.1,-8.6 2.8,-3 5.3,-7.1 7.7,-9.8 2.2,-2.6 4.4,-3.9 6.2,-6.1 1.8,-2.3 3.1,-5.6 4.7,-7.4 1.6,-1.6 3.6,-1.7 5,-2.9 1.5,-1.3 3.7,-4.4 3.7,-4.4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river145"),S(K,"d","m 1150.6,736.7 c 0,0 1,4.8 1,7.2 0,2.3 -0.9,5.1 -0.9,7.1 0,1.9 1,3 1,4.6 0,1.5 -1,2.3 -1,4.5 0.1,2.5 1.3,6.7 1.4,10 0.1,3.3 -0.7,10.1 -0.7,10.1 -0.1,0 0.7,-6.8 0.5,-10.1 -0.1,-3.3 -1.3,-7.5 -1.4,-10 0,-2.2 1,-3 1,-4.5 0,-1.6 -1,-2.7 -1.1,-4.6 0,-2 0.9,-4.8 0.9,-7.1 0,-2.4 -1.1,-7.1 -1.1,-7.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river146"),S(K,"d","m 977.8,842.2 c 0,0 5.5,7.4 7.8,11.3 2.4,4 4.3,8.5 6.2,12.4 1.9,3.8 3.7,7 5,10.7 1.4,3.7 3.2,11.4 3.2,11.4 -0.1,0 -2,-7.7 -3.3,-11.4 -1.4,-3.6 -3.3,-6.8 -5.1,-10.6 -1.9,-3.9 -3.9,-8.4 -6.2,-12.3 -2.4,-4 -7.9,-11.3 -7.9,-11.3"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river148"),S(K,"d","m 2104.8,941.1 c 0,0 2.2,5.8 2.8,8.8 0.6,3 0.4,5.8 0.8,9.2 0.4,3.5 1.2,7.6 1.4,11.5 0.1,3.8 -0.6,11.5 -0.6,11.5 -0.2,0 0.5,-7.7 0.4,-11.5 -0.2,-3.9 -1.1,-8 -1.5,-11.5 -0.4,-3.4 -0.2,-6.2 -0.8,-9.1 -0.6,-3 -2.8,-8.8 -2.8,-8.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river149"),S(K,"d","m 1420.7,56.2 c 0,0 1.6,4.8 1.9,7.3 0.3,2.5 0.4,5.4 0,7.5 -0.4,2 -1.2,3.5 -2.3,4.9 -1,1.4 -3.9,3.7 -3.9,3.7 -0.1,-0.1 2.8,-2.4 3.8,-3.8 1,-1.4 1.8,-2.8 2.2,-4.8 0.4,-2.1 0.3,-5 0,-7.5 -0.4,-2.4 -2,-7.2 -2,-7.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river150"),S(K,"d","m 125.1,266.5 c 0,0 0.1,-4.5 0.7,-6.6 0.5,-2.1 2.2,-4.2 2.5,-6.1 0.3,-1.9 -0.9,-3.4 -0.8,-5.1 0.1,-1.7 1.2,-5.1 1.2,-5.1 0.2,0 -1,3.4 -1,5.1 -0.1,1.7 1.1,3.3 0.8,5.1 -0.3,1.9 -2,4 -2.5,6.2 -0.5,2.1 -0.6,6.6 -0.6,6.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river151"),S(K,"d","m 855.1,1034.6 c 0,0 -5.5,-1.2 -8.1,-2.3 -2.6,-1 -5.3,-2.4 -7.5,-4 -2.1,-1.7 -3.8,-3.7 -5.3,-5.9 -1.5,-2.1 -3.8,-6.9 -3.8,-6.9 0.2,-0.1 2.4,4.7 3.9,6.9 1.5,2.1 3.2,4.1 5.4,5.7 2.1,1.7 4.8,3 7.4,4 2.6,1.1 8.1,2.2 8.1,2.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river152"),S(K,"d","m 1074.7,774.7 c 0,0 5.1,1.6 7.4,2.9 2.4,1.3 4.7,3.9 6.5,4.6 1.7,0.7 2.7,-0.4 4,-0.1 1.3,0.3 3.6,1.8 3.6,1.8 -0.1,0.1 -2.4,-1.4 -3.6,-1.7 -1.3,-0.2 -2.4,0.8 -4.1,0.2 -1.8,-0.7 -4.1,-3.4 -6.4,-4.6 -2.4,-1.3 -7.4,-2.9 -7.4,-2.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river153"),S(K,"d","m 767,836.6 c 0,0 -4.9,0.2 -7.3,-0.3 -2.3,-0.4 -5.4,-0.5 -6.9,-2.2 -1.6,-1.8 -1.9,-5.6 -2.3,-8.4 -0.4,-2.8 -0.3,-8.7 -0.3,-8.7 0.1,0 0,5.8 0.4,8.7 0.5,2.8 0.8,6.5 2.3,8.3 1.6,1.7 4.5,1.8 6.9,2.2 2.3,0.4 7.2,0.2 7.2,0.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river154"),S(K,"d","m 970.5,1080.9 c 0,0 -4.7,2.8 -7.2,3.8 -2.6,1 -6.7,0.4 -7.9,1.9 -1.3,1.5 0.5,4.7 0.2,7 -0.2,2.3 -1.7,6.8 -1.7,6.8 -0.1,0 1.4,-4.5 1.6,-6.8 0.2,-2.3 -1.5,-5.6 -0.3,-7.1 1.3,-1.5 5.5,-1 8,-2 2.5,-1 7.2,-3.8 7.2,-3.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river155"),S(K,"d","m 2343.6,622.5 c 0,0 4.9,-4.8 7.6,-6.7 2.7,-2 7.3,-3 8.6,-5.1 1.3,-2 -0.7,-4.8 -0.5,-7.2 0.1,-2.4 1.4,-7.1 1.4,-7.1 0.2,0 -1.1,4.7 -1.2,7.1 -0.1,2.4 1.9,5.3 0.6,7.3 -1.3,2.2 -6,3.2 -8.8,5.2 -2.7,2 -7.5,6.7 -7.5,6.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river156"),S(K,"d","m 827.2,455.8 c 0,0 -5,-0.9 -7.4,-1.8 -2.4,-0.9 -5.1,-2.2 -6.8,-3.7 -1.7,-1.5 -2.5,-3.4 -3.2,-5.3 -0.8,-1.9 -1.4,-6 -1.4,-6 0.2,-0.1 0.9,4.1 1.6,5.9 0.8,1.9 1.6,3.7 3.2,5.2 1.7,1.5 4.4,2.7 6.7,3.6 2.4,0.8 7.4,1.7 7.4,1.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river157"),S(K,"d","m 390.7,1010.7 c 0,0 2.3,-4.7 3.9,-6.7 1.5,-2.1 4.5,-2.6 5.4,-5.6 1,-3.2 -0.4,-8.9 -0.2,-13.3 0.3,-4.4 1.8,-13.2 1.8,-13.2 0.2,0.1 -1.4,8.8 -1.6,13.2 -0.3,4.4 1.1,10.1 0.2,13.3 -0.9,3 -3.9,3.6 -5.5,5.7 -1.5,2 -3.8,6.8 -3.8,6.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river182"),S(K,"d","m 910.1,524.1 c 0,0 1.5,7.7 1.8,11.6 0.3,3.9 -1.1,8.9 -0.2,11.8 0.9,2.7 3.8,3.2 5.3,5.2 1.5,1.9 3.7,6.5 3.7,6.5 -0.2,0.1 -2.4,-4.4 -3.9,-6.3 -1.5,-2 -4.5,-2.6 -5.4,-5.3 -0.9,-2.9 0.4,-7.9 0.2,-11.8 -0.3,-3.9 -1.9,-11.7 -1.9,-11.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river197"),S(K,"d","m 617.2,37.4 c 0,0 2,4.7 2.5,7.2 0.5,2.5 -0.4,5.5 0.5,7.6 0.9,2 3.6,2.9 5,4.7 1.4,1.8 3.4,6 3.4,6 -0.1,0.1 -2.1,-4.1 -3.5,-5.9 -1.5,-1.8 -4.1,-2.7 -5.1,-4.7 -0.9,-2.1 0,-5.2 -0.5,-7.7 -0.6,-2.4 -2.5,-7.2 -2.5,-7.2"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river198"),S(K,"d","m 1029.9,814.1 c 0,0 3.3,4.8 4.5,7.4 1.2,2.6 1.3,7 2.6,8.2 1.2,1.1 3.2,-1 4.9,-1 1.6,0.1 4.9,1.1 4.9,1.1 0,0.2 -3.3,-0.8 -4.9,-0.8 -1.7,0 -3.8,2 -5.1,0.9 -1.4,-1.2 -1.5,-5.6 -2.7,-8.2 -1.2,-2.6 -4.5,-7.4 -4.5,-7.4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river201"),S(K,"d","m 0,916 c 0,0 8.8,-1.7 9.9,0.1 1.2,1.7 -1.7,7.1 -3,10.4 -1.3,3.4 -4.9,9.7 -4.9,9.7 -0.1,-0.1 3.4,-6.4 4.7,-9.7 1.3,-3.3 4.2,-8.6 3,-10.3 -1.1,-1.7 -9.7,0.1 -9.7,0.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river215"),S(K,"d","m 959.1,102.5 c 0,0 5.8,4.1 8.3,6.4 2.6,2.4 6.4,5.8 7.1,8 0.6,2 -1.5,3.6 -2.6,5 -1.1,1.5 -4.2,3.8 -4.2,3.8 -0.1,-0.1 3,-2.4 4.1,-3.9 1.1,-1.4 3.1,-2.8 2.5,-4.9 -0.7,-2.1 -4.5,-5.4 -7,-7.8 -2.6,-2.3 -8.4,-6.4 -8.4,-6.4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river216"),S(K,"d","m 929.4,923.6 c 0,0 6.6,-1.5 10,-1.7 3.3,-0.3 7,1.2 10.1,0.2 3.1,-1 5.5,-4.6 8.5,-6.4 3,-1.9 9.6,-4.8 9.6,-4.8 0,0.2 -6.5,3 -9.5,4.9 -3,1.9 -5.4,5.4 -8.6,6.5 -3.1,1 -6.8,-0.5 -10.1,-0.2 -3.4,0.2 -10,1.7 -10,1.7"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river217"),S(K,"d","m 855.6,54.2 c 0,0 3.2,3.8 4.4,5.9 1.2,2.1 2,4.9 2.7,6.9 0.7,1.9 1.4,3.3 1.6,5 0.3,1.7 -0.3,5.2 -0.3,5.2 -0.1,0 0.4,-3.5 0.2,-5.2 -0.3,-1.7 -1,-3 -1.7,-5 -0.7,-1.9 -1.5,-4.7 -2.7,-6.8 -1.2,-2.1 -4.4,-5.8 -4.4,-5.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river227"),S(K,"d","m 855,1034.5 c 0,0 -2.3,-5.5 -3,-8.4 -0.7,-2.9 0,-7.3 -1.2,-8.8 -1.1,-1.5 -3.7,-0.2 -5.4,-0.7 -1.7,-0.6 -4.8,-2.7 -4.8,-2.7 0.1,-0.1 3.2,2 4.9,2.5 1.7,0.6 4.4,-0.8 5.5,0.7 1.2,1.6 0.5,6.1 1.2,8.9 0.7,2.9 3.1,8.4 3.1,8.4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river228"),S(K,"d","m 1823.8,109.4 c 0,0 -4.1,2.4 -6.3,3.1 -2.1,0.7 -4.9,1.3 -6.8,1.2 -1.9,-0.1 -3.3,-0.9 -4.6,-1.8 -1.4,-0.9 -3.5,-3.5 -3.5,-3.5 0.1,-0.1 2.2,2.5 3.6,3.3 1.3,0.9 2.7,1.7 4.5,1.8 1.9,0.1 4.6,-0.5 6.8,-1.2 2.1,-0.7 6.1,-3.1 6.1,-3.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river229"),S(K,"d","m 362,288.4 c 0,0 -2.1,5.8 -3.5,8.5 -1.5,2.7 -4.2,5.6 -5.3,7.6 -0.9,1.7 -0.4,2.7 -1.1,3.8 -0.7,1.1 -2.9,2.8 -2.9,2.8 0,0 2.1,-1.8 2.7,-2.9 0.7,-1.1 0.1,-2.1 1.1,-3.9 1,-1.9 3.7,-4.9 5.2,-7.5 1.4,-2.7 3.5,-8.6 3.5,-8.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river264"),S(K,"d","m 1911,812.1 c 0,0 0.8,-2.3 0.6,-3.5 -0.2,-1.2 -1.7,-2.5 -1.8,-3.7 -0.1,-1.3 0.9,-2.5 1.3,-3.8 0.3,-1.3 0.8,-2.7 0.6,-4.1 -0.2,-1.4 -1.8,-2.7 -2,-4.2 -0.1,-1.4 1.2,-2.6 1.3,-4.2 0.2,-1.7 0.2,-4 -0.5,-5.8 -0.6,-1.9 -2.8,-3.4 -3.3,-5.3 -0.6,-1.9 0.9,-4.9 0.2,-6 -0.6,-1.1 -3.1,0 -4,-0.7 -1,-0.8 -1.6,-3.9 -1.6,-3.9 0.1,0 0.8,3 1.7,3.7 0.9,0.8 3.4,-0.3 4.1,0.7 0.7,1.2 -0.7,4.2 -0.2,6.1 0.6,1.9 2.8,3.4 3.4,5.3 0.7,1.8 0.7,4.2 0.6,5.9 -0.1,1.7 -1.4,2.8 -1.2,4.2 0.1,1.4 1.8,2.7 2.1,4.1 0.2,1.5 -0.3,3.1 -0.6,4.4 -0.2,1.3 -1.3,2.3 -1.2,3.5 0.1,1.2 1.6,2.4 1.8,3.7 0.2,1.2 -0.6,3.8 -0.6,3.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river265"),S(K,"d","m 236.8,287.1 c 0,0 -7.2,1.5 -10.8,1.7 -3.7,0.3 -8.4,0.6 -11,-0.2 -2.5,-0.7 -3.4,-2.3 -4.8,-3.8 -1.3,-1.4 -3.1,-5 -3.1,-5 0.1,-0.1 2,3.5 3.3,4.9 1.3,1.5 2.2,3 4.6,3.7 2.6,0.7 7.3,0.4 11,0.1 3.6,-0.2 10.8,-1.8 10.8,-1.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river290"),S(K,"d","m 2219.7,912.4 c 0,0 -0.9,5.5 -1.7,8.1 -0.9,2.6 -3.7,5.1 -3.5,7.5 0.2,2.4 3.4,4.6 4.6,7.1 1.3,2.6 0.5,5.7 2.9,8.1 2.4,2.5 8.1,4.1 11.9,6.6 3.8,2.5 10.9,8.3 10.9,8.3 -0.1,0.1 -7.2,-5.7 -11,-8.1 -3.8,-2.5 -9.5,-4.1 -12,-6.6 -2.4,-2.4 -1.7,-5.5 -3,-8.1 -1.3,-2.6 -4.5,-4.8 -4.7,-7.3 -0.2,-2.5 2.6,-5 3.4,-7.6 0.9,-2.6 1.6,-8.1 1.6,-8.1"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river291"),S(K,"d","m 1644.6,980.4 c 0,0 -0.3,6.7 -0.9,9.9 -0.6,3.2 -2.1,6.9 -2.7,9.5 -0.5,2.5 -0.1,4.1 -0.6,6.1 -0.5,1.9 -1.1,3.4 -2.5,5.6 -1.5,2.2 -4.1,5.4 -6.5,7.7 -2.4,2.4 -7.9,6.4 -7.9,6.4 -0.1,-0.1 5.4,-4.1 7.8,-6.5 2.4,-2.3 5,-5.5 6.5,-7.7 1.4,-2.2 1.9,-3.6 2.4,-5.6 0.5,-1.9 0.1,-3.5 0.6,-6 0.5,-2.7 2.1,-6.3 2.7,-9.6 0.5,-3.2 0.7,-9.8 0.7,-9.8"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river292"),S(K,"d","m 1984.9,986.2 c 0,0 -1.1,2.8 -2.1,4 -0.9,1.1 -2.7,0.6 -3.6,2.6 -1,2.2 -1,7.2 -1.9,10.7 -1,3.5 -3.9,10.1 -3.9,10.1 -0.2,0 2.7,-6.7 3.7,-10.2 0.9,-3.4 0.9,-8.4 1.9,-10.7 0.9,-2 2.7,-1.6 3.6,-2.7 1,-1.1 2.1,-4 2.1,-4"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river293"),S(K,"d","m 2026.1,987 c 0,0 4.4,4.4 6.2,6.9 1.8,2.5 3.3,5.8 4.6,8 1.2,2.2 2.3,3.3 3,5.1 0.6,1.9 1,5.9 1,5.9 -0.1,0 -0.5,-4 -1.2,-5.8 -0.7,-1.8 -1.7,-3 -3,-5.1 -1.2,-2.2 -2.8,-5.5 -4.6,-8 -1.8,-2.5 -6.2,-6.9 -6.2,-6.9"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river294"),S(K,"d","m 1339.5,1013 c 0,0 3.7,5 5.1,7.7 1.4,2.7 2.1,6.4 3.4,8.6 1.2,2 3.1,2.6 4.3,4.3 1.2,1.6 2.8,5.5 2.8,5.5 -0.1,0 -1.7,-3.8 -2.9,-5.4 -1.2,-1.7 -3.1,-2.3 -4.4,-4.4 -1.3,-2.1 -1.9,-5.8 -3.4,-8.5 -1.4,-2.7 -5.1,-7.6 -5.1,-7.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O),H(Q,"path",F([S(K,"id","river309"),S(K,"d","m 1677.2,1174 c 0,0 -0.1,-5.2 0,-7.6 0.2,-2.5 1.3,-4.8 1,-7.2 -0.3,-2.4 -2.9,-4.8 -3,-7.2 -0.2,-2.4 1.9,-7.2 1.9,-7.2 0,0 -2.1,4.8 -1.9,7.2 0.2,2.4 2.7,4.8 3.1,7.2 0.3,2.4 -0.8,4.7 -1,7.2 -0.1,2.5 0.1,7.6 0.1,7.6"),S(K,"style","fill:#aaccff;fill-opacity:1;stroke:#aaccff;stroke-opacity:1")]),O)])),H(Q,"g",F([S(K,"id","coastline"),S(K,"style","display:inline;fill:none;stroke-linejoin:round;shape-rendering:geometricPrecision"),S(K,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)")]),F([H(Q,"g",F([S(K,"id","sea_island"),S(K,"auto-filter","1"),S(K,"style","display:inline;opacity:0.5;fill:none;stroke:#1f3846;stroke-width:0.69999999;stroke-linejoin:round;filter:url(#dropShadow)")]),F([H(Q,"path",F([S(K,"d","m 451.2,35.5 c -0.5,2.2 0.1,3.8 -1,5.7 -1.2,1.8 -4.2,3.8 -6,5.8 -1.9,2 -2.5,4 -3.7,5.3 -1.2,1.4 -2.8,2 -5.2,1.9 -2.3,-0.2 -5.3,-1.2 -7,-1.9 -1.6,-0.6 -2,-1 -3.5,-1.3 -1.5,-0.3 -4.1,-0.7 -5.5,-0.8 -1.3,-0.2 -1.3,-0.2 -3.1,0.3 -1.9,0.5 -5.5,1.5 -7.9,3.5 -2.3,2 -3.3,5 -4.8,6.5 -1.5,1.5 -3.5,1.5 -5,3.3 -1.5,1.9 -2.5,5.5 -4.3,7.4 -1.9,1.8 -4.5,1.8 -6,3.8 -1.5,2 -1.9,6 -2.2,8.2 -0.3,2.1 -0.7,2.5 -1.5,4.3 -0.8,1.8 -2.2,5.2 -2.8,7.2 -0.7,2 -0.7,2.6 -1,4 -0.4,1.3 -1,3.3 -1.2,5.5 -0.2,2.1 0.2,4.5 0.8,6 0.7,1.5 1.7,2.1 2,3.6 0.4,1.5 0,3.9 0.7,6 0.7,2.2 2.3,4.2 3,5.5 0.7,1.4 0.3,2 0.7,3.9 0.3,1.8 1.3,4.8 2.6,6.5 1.4,1.6 3,2 5.2,1.8 2.2,-0.2 4.8,-0.8 6.5,-1 1.7,-0.2 2.3,0.2 3.5,0.2 1.2,0 2.8,-0.4 4.8,0.6 2,1 4.4,3.4 5.5,5.2 1.2,1.8 1.2,3.2 0.9,4.7 -0.4,1.5 -1,3.1 -1.2,5.5 -0.2,2.3 0.2,5.3 0.7,7 0.5,1.6 1.1,2 1.1,4.1 0,2.2 -0.6,6.2 -0.1,9 0.5,2.9 2.1,4.5 4.5,5.2 2.3,0.7 5.3,0.3 7.1,0.5 1.9,0.2 2.5,0.8 4.7,1 2.2,0.2 5.8,-0.2 8.5,1.2 2.7,1.3 4.3,4.3 5,7 0.7,2.6 0.3,5 0,6.3 -0.3,1.3 -0.7,1.7 -1.3,3.5 -0.7,1.8 -1.7,5.2 -2.2,7.2 -0.5,2 -0.5,2.6 -0.7,3.3 -0.1,0.7 -0.5,1.3 -2.1,2.5 -1.7,1.2 -4.7,2.8 -7.2,3.2 C 430,214 428,213 426,213 c -2,0 -4,1 -5.8,1 -1.9,0 -3.5,-1 -5.7,-1.3 -2.2,-0.4 -4.8,0 -6.3,0.3 -1.5,0.3 -1.9,0.7 -3.5,0.8 -1.7,0.2 -4.7,0.2 -7,0.7 -2.4,0.5 -4,1.5 -5.4,3.5 -1.3,2 -2.3,5 -3.3,7 -1,2 -2,3 -2.7,3.8 -0.6,0.9 -1,1.5 -0.6,3.2 0.3,1.7 1.3,4.3 1.5,6.7 0.1,2.3 -0.5,4.3 -0.4,6.6 0.2,2.4 1.2,5 1.4,6.7 0.1,1.7 -0.5,2.3 -0.5,4.5 0,2.2 0.6,5.8 1.6,7.8 1,2 2.4,2.4 3.4,4.2 1,1.8 1.6,5.2 0.8,7.3 -0.8,2.2 -3.2,3.2 -4.3,4 -1.2,0.9 -1.2,1.5 -3,2 -1.9,0.5 -5.5,0.9 -7.5,2 -2,1.2 -2.4,3.2 -3.5,5 -1.2,1.9 -3.2,3.5 -4.2,4.7 -1,1.2 -1,1.8 -2.3,2.7 -1.4,0.8 -4,1.8 -6.2,1.8 -2.2,0 -3.8,-1 -5.2,-2.5 -1.3,-1.5 -2.3,-3.5 -4.8,-4.7 -2.5,-1.1 -6.5,-1.5 -9.3,-0.5 -2.9,1 -4.5,3.4 -5.4,5 -0.8,1.7 -0.8,2.7 -1.6,4 -0.9,1.4 -2.5,3 -4.2,4 -1.7,1 -3.3,1.4 -5.8,0 -2.5,-1.3 -5.9,-4.3 -8.9,-5.5 -3,-1.1 -5.6,-0.5 -7.1,-0.5 -1.5,0 -1.9,-0.6 -3.5,-1.3 -1.7,-0.7 -4.7,-1.3 -7.4,-1.3 -2.6,0 -5,0.6 -7.1,0.1 -2.2,-0.5 -4.2,-2.1 -6.9,-2 -2.6,0.2 -6,2.2 -7,4.5 -1,2.4 0.4,5 0.4,8 0,3 -1.4,6.4 -2,8.2 -0.7,1.8 -0.7,2.2 -1,3 -0.4,0.8 -1,2.2 -2.7,3.2 -1.7,1 -4.3,1.6 -5.8,2.1 -1.5,0.5 -1.9,0.9 -3,1.4 -1.2,0.5 -3.2,1.1 -5.7,0.8 -2.5,-0.3 -5.5,-1.7 -7.3,-2.8 -1.9,-1.2 -2.5,-2.2 -3.9,-3.2 -1.3,-1 -3.3,-2 -4.6,-3 -1.4,-1 -2,-2 -3.5,-3.3 -1.5,-1.4 -3.9,-3 -5.4,-4.5 -1.5,-1.5 -2.1,-2.9 -2.3,-3.7 -0.2,-0.8 0.2,-1.2 0.2,-2.8 0,-1.7 -0.4,-4.7 -1.5,-7.4 -1.2,-2.6 -3.2,-5 -4.2,-6.5 -1,-1.5 -1,-2.1 -0.3,-3.3 0.6,-1.2 2,-2.8 3,-3.7 1,-0.8 1.6,-0.8 3.3,-2.6 1.7,-1.9 4.3,-5.5 5.2,-8.4 0.8,-2.8 -0.2,-4.8 -0.7,-6.6 -0.5,-1.9 -0.5,-3.5 -1.2,-4.9 -0.6,-1.3 -2,-2.3 -3,-3.5 -1,-1.1 -1.6,-2.5 -2.6,-3.5 -1,-1 -2.4,-1.6 -3.7,-3.5 -1.3,-1.8 -2.7,-4.8 -3.3,-7.3 -0.7,-2.5 -0.7,-4.5 -1,-6.3 -0.4,-1.9 -1,-3.5 -1.5,-5.2 -0.5,-1.7 -0.9,-3.3 -1.7,-4.3 -0.8,-1 -2.2,-1.4 -3.7,-2.7 -1.5,-1.3 -3.1,-3.7 -5.3,-5.2 -2.2,-1.5 -4.8,-2.1 -6.3,-4.3 -1.5,-2.2 -1.9,-5.8 -1.5,-8.2 0.3,-2.3 1.3,-3.3 0.8,-4.8 -0.5,-1.5 -2.5,-3.5 -2.8,-5.7 -0.4,-2.1 1,-4.5 1.5,-5.8 0.5,-1.3 0.1,-1.7 0.3,-3.5 0.2,-1.8 0.8,-5.2 2,-6.8 1.2,-1.7 2.8,-1.7 3.8,-3.4 1,-1.6 1.4,-5 2.5,-7.1 1.2,-2.2 3.2,-3.2 4.4,-4.7 1.1,-1.5 1.5,-3.5 0.5,-5.7 -1,-2.1 -3.4,-4.5 -4.5,-6 -1.2,-1.5 -1.2,-2.1 -1.7,-3 -0.5,-0.8 -1.5,-1.8 -3.2,-2.5 -1.6,-0.6 -4,-1 -5.6,-1.8 -1.7,-0.8 -2.7,-2.2 -4.7,-3 -2,-0.8 -5,-1.2 -6.5,-1.3 -1.5,-0.2 -1.5,-0.2 -3,-0.4 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -4.7,-0.7 -2.2,0 -5.8,0.4 -7.7,0.5 -1.8,0.2 -1.8,0.2 -3.6,-0.3 -1.9,-0.5 -5.5,-1.5 -7.5,-1.8 -2,-0.4 -2.4,0 -4.5,0 -2.2,0 -6.2,-0.4 -8.5,-0.2 -2.4,0.2 -3,0.8 -5.4,1 -2.3,0.2 -6.3,-0.2 -9.1,-1.2 -2.9,-1 -4.5,-2.6 -5.4,-3.8 -0.8,-1.2 -0.8,-1.8 -1,-2.5 -0.1,-0.7 -0.5,-1.3 -0.6,-2.3 -0.2,-1 -0.2,-2.4 -0.7,-4.4 -0.5,-2 -1.5,-4.6 -3.3,-6.1 -1.9,-1.5 -4.5,-1.9 -7.4,-1.5 -2.8,0.3 -5.8,1.3 -7.3,1.8 -1.5,0.5 -1.5,0.5 -3.3,1 -1.9,0.5 -5.5,1.5 -7.4,2 -1.8,0.5 -1.8,0.5 -3,0.8 -1.1,0.4 -3.5,1 -5.3,1 -1.8,0 -3.2,-0.6 -3.8,-1.1 -0.7,-0.5 -0.7,-0.9 -2.4,-1.4 -1.6,-0.5 -5,-1.1 -7,-3.1 -2,-2 -2.6,-5.4 -3.6,-7 -1,-1.7 -2.4,-1.7 -4.4,-3.4 -2,-1.6 -4.6,-5 -6,-7.1 C 55,95 55,94 54.5,92.7 54,91.3 53,89.7 51.2,88.5 49.3,87.3 46.7,86.7 45.3,86.3 44,86 44,86 42.5,86.2 41,86.3 38,86.7 35.7,86.5 33.3,86.3 31.7,85.7 28.8,86.3 26,87 22,89 18.7,88 15.3,87 12.7,83 9.7,81.4 6.7,79.7 3.3,80.5 1.7,80.9 0,81.2 0,81.2 0,81.2 c 0,0 0,0 0,26.5 0,26.4 0,79.3 0,105.8 0,26.4 0,26.4 0,26.4 0,0 0,0 2,-0.1 2,-0.2 6,-0.5 9.5,-1.6 3.5,-1.2 6.5,-3.2 9.3,-3.9 2.9,-0.6 5.5,0 7.2,0.7 1.7,0.7 2.3,1.3 4,1.7 1.7,0.3 4.3,0.3 6.7,0.8 2.3,0.5 4.3,1.5 5.8,2.8 1.5,1.4 2.5,3 3.5,4.2 1,1.2 2,1.8 2.7,2.3 0.6,0.5 1,0.9 1.3,2 0.3,1.2 0.7,3.2 1.3,4.9 0.7,1.6 1.7,3 2.4,4.8 0.6,1.8 1,4.2 1.6,5.8 0.7,1.7 1.7,2.7 4,3 2.4,0.4 6,0 8.4,0.4 2.3,0.3 3.3,1.3 5.5,1.3 2.1,0 5.5,-1 6.8,-3.3 1.3,-2.4 0.7,-6 2.5,-8 1.8,-2 6.2,-2.4 8.3,-2.5 2.2,-0.2 2.2,-0.2 4,0.3 1.9,0.5 5.5,1.5 7.9,1.8 2.3,0.4 3.3,0 5,-0.1 1.6,-0.2 4,-0.2 5.3,-0.2 1.3,0 1.7,0 3.8,0.5 2.2,0.5 6.2,1.5 8.5,3 2.4,1.5 3,3.5 5.2,4.8 2.2,1.4 5.8,2 8.7,1 2.8,-1 4.8,-3.6 5.8,-5.5 1,-1.8 1,-2.8 1.3,-4 0.4,-1.1 1,-2.5 2.5,-3.5 1.5,-1 3.9,-1.6 5.7,-2 1.8,-0.3 3.2,-0.3 4.8,1.4 1.7,1.6 3.7,5 4.5,8.3 0.9,3.3 0.5,6.7 0.4,8.3 -0.2,1.7 -0.2,1.7 -0.9,3 -0.6,1.4 -2,4 -2.8,5.5 -0.8,1.5 -1.2,1.9 -2.2,3.4 -1,1.5 -2.6,4.1 -2.5,6.8 0.2,2.7 2.2,5.3 2.9,7.2 0.6,1.8 0,2.8 0.1,5.1 0.2,2.4 1.2,6 0.4,8.5 -0.9,2.5 -3.5,3.9 -5,4.7 -1.5,0.8 -1.9,1.2 -3.2,2.3 -1.3,1.2 -3.7,3.2 -5,4.2 -1.3,1 -1.7,1 -3.3,2.2 -1.7,1.1 -4.7,3.5 -6.9,4.6 -2.1,1.2 -3.5,1.2 -4.8,1.9 -1.3,0.6 -2.7,2 -4.3,2.6 -1.7,0.7 -3.7,0.7 -5.2,1 -1.5,0.4 -2.5,1 -4.7,1.7 -2.1,0.7 -5.5,1.3 -8.1,0.7 -2.7,-0.7 -4.7,-2.7 -6,-3.7 -1.4,-1 -2,-1 -3.9,-2 -1.8,-1 -4.8,-3 -6.3,-4 -1.5,-1 -1.5,-1 -2.5,0 -1,1 -3,3 -5,3.8 -2,0.9 -4,0.5 -6.2,1.5 -2.1,1 -4.5,3.4 -6.8,3.7 -2.3,0.3 -4.7,-1.3 -7.2,-2.2 -2.5,-0.8 -5.1,-0.8 -6.8,-1.1 -1.7,-0.4 -2.3,-1 -3,-1.4 -0.7,-0.3 -1.3,-0.3 -3,0.4 -1.7,0.6 -4.3,2 -7,1.1 C 44.3,330 41.7,327 40.2,325.5 38.7,324 38.3,324 37.7,323.5 37,323 36,322 33.5,321.7 c -2.5,-0.4 -6.5,0 -8.7,0.6 -2.1,0.7 -2.5,1.7 -2.8,2.2 -0.3,0.5 -0.7,0.5 -1.5,1.7 -0.8,1.1 -2.2,3.5 -3.2,4.8 -1,1.3 -1.6,1.7 -2.3,2.2 -0.7,0.5 -1.3,1.1 -3.8,1.7 -2.5,0.6 -6.9,1 -9,1.2 -2.2,0.3 -2.2,0.3 -2.2,0.3 0,0 0,0 0,45.7 0,45.7 0,137.1 0,182.8 0,45.7 0,45.7 0,45.7 0,0 0,0 2.2,1.6 2.1,1.5 6.5,4.7 8.8,6.6 2.3,1.9 2.7,2.5 4.8,2.7 2.2,0.2 6.2,-0.2 9.2,1.2 3,1.3 5,4.3 7.5,6 2.5,1.6 5.5,2 7.5,3.1 2,1.2 3,3.2 3.8,4.4 0.9,1.1 1.5,1.5 3,2.6 1.5,1.2 3.9,3.2 5,4.5 1.2,1.4 1.2,2 2.5,3.4 1.4,1.3 4,3.3 6,4.3 2,1 3.4,1 4.5,2.5 1.2,1.5 2.2,4.5 1.5,7.2 -0.6,2.6 -3,5 -4,6.5 -1,1.5 -0.6,2.1 0.9,3.3 1.5,1.2 4.1,2.8 6.1,3.5 2,0.7 3.4,0.3 5.2,1.5 1.8,1.2 4.2,3.8 6.2,5.2 2,1.3 3.6,1.3 4.6,1.5 1,0.1 1.4,0.5 1.4,3.3 0,2.8 -0.4,8.2 -1.4,11.2 -1,3 -2.6,3.6 -3.6,6.1 -1,2.5 -1.4,6.9 -1,9.9 0.3,3 1.3,4.6 3,5.6 1.6,1 4,1.4 5.5,1.4 1.5,0 2.1,-0.4 4,-0.7 1.8,-0.3 4.8,-0.7 7,-0.7 2.1,0 3.5,0.4 4.8,0.5 1.3,0.2 2.7,0.2 3.7,0.5 1,0.4 1.6,1 4,1.4 2.3,0.3 6.3,0.3 8.5,0.6 2.1,0.4 2.5,1 4.1,1.4 1.7,0.3 4.7,0.3 6.7,-0.4 2,-0.6 3,-2 3.5,-2.8 0.5,-0.8 0.5,-1.2 1.8,-2.2 1.4,-1 4,-2.6 5.4,-4.1 1.3,-1.5 1.3,-2.9 2.3,-3.9 1,-1 3,-1.6 5.2,-0.6 2.1,1 4.5,3.6 5.8,5.1 1.3,1.5 1.7,1.9 2.3,2.9 0.7,1 1.7,2.6 2.2,4 0.5,1.3 0.5,2.3 1.2,4.1 0.6,1.9 2,4.5 2.5,6.2 0.5,1.7 0.1,2.3 0.3,3.5 0.2,1.2 0.8,2.8 2.3,4.2 1.5,1.3 3.9,2.3 6.4,2.1 2.5,-0.1 5.1,-1.5 7.5,-1.6 2.3,-0.2 4.3,0.8 5.3,3.1 1,2.4 1,6 0.5,8.4 -0.5,2.3 -1.5,3.3 -2,5.1 -0.5,1.9 -0.5,4.5 -0.3,6 0.1,1.5 0.5,1.9 0.6,2.4 0.2,0.5 0.2,1.1 1.5,3 1.4,1.8 4,4.8 6.5,5.5 2.5,0.6 4.9,-1 6.7,-1.5 1.8,-0.5 3.2,0.1 5,0 1.8,-0.2 4.2,-1.2 6.3,-1.4 2.2,-0.1 4.2,0.5 5.4,0.9 1.1,0.3 1.5,0.3 2.8,0.3 1.3,0 3.7,0 5.8,-1.5 2.2,-1.5 4.2,-4.5 5.7,-6.3 1.5,-1.9 2.5,-2.5 3.3,-3.4 0.9,-0.8 1.5,-1.8 4.2,-3.1 2.7,-1.4 7.3,-3 9.7,-3.9 2.3,-0.8 2.3,-0.8 4.3,-0.3 2,0.5 6,1.5 8.8,1.3 2.9,-0.1 4.5,-1.5 5.5,-2.8 1,-1.3 1.4,-2.7 1.5,-3.5 0.2,-0.8 0.2,-1.2 -1.1,-2 -1.4,-0.8 -4,-2.2 -5.7,-5 -1.7,-2.8 -2.3,-7.2 -2.7,-9.3 -0.3,-2.2 -0.3,-2.2 -0.3,-2.5 0,-0.4 0,-1 0.8,-2.4 0.9,-1.3 2.5,-3.3 3.4,-5.3 0.8,-2 0.8,-4 2.8,-6 2,-2 6,-4 8,-5 2,-1 2,-1 3.3,-2.2 1.4,-1.1 4,-3.5 5.7,-4.8 1.7,-1.3 2.3,-1.7 3,-1.7 0.7,0 1.3,0.4 2,0.4 0.7,0 1.3,-0.4 3.2,-2 1.8,-1.7 4.8,-4.7 6.3,-7.7 1.5,-3 1.5,-6 2.5,-7.8 1,-1.9 3,-2.5 4.2,-2.9 1.1,-0.3 1.5,-0.3 3.1,-1.1 1.7,-0.9 4.7,-2.5 6.5,-4.4 1.9,-1.8 2.5,-3.8 2.5,-5.5 0,-1.6 -0.6,-3 -2,-4.1 -1.3,-1.2 -3.3,-2.2 -4.3,-2.9 -1,-0.6 -1,-1 -1.2,-1.6 -0.1,-0.7 -0.5,-1.7 -2,-3 -1.5,-1.4 -4.1,-3 -5,-5.5 -0.8,-2.5 0.2,-5.9 0.5,-7.7 0.4,-1.8 0,-2.2 0.2,-4.3 0.2,-2.2 0.8,-6.2 1,-8.2 0.2,-2 -0.2,-2 -0.2,-3.2 0,-1.1 0.4,-3.5 0.2,-5.3 -0.2,-1.8 -0.8,-3.2 -1.3,-5.3 -0.5,-2.2 -0.9,-5.2 -1,-6.9 -0.2,-1.6 -0.2,-2 -0.2,-2.6 0,-0.7 0,-1.7 0.3,-3 0.4,-1.4 1,-3 1.4,-4.5 0.3,-1.5 0.3,-2.9 0.8,-4.7 0.5,-1.8 1.5,-4.2 1.7,-6.3 0.1,-2.2 -0.5,-4.2 -0.2,-6.2 0.3,-2 1.7,-4 2.2,-5.3 0.5,-1.4 0.1,-2 1,-3.9 0.8,-1.8 2.8,-4.8 5,-6.3 2.1,-1.5 4.5,-1.5 6.1,-1.8 1.7,-0.4 2.7,-1 3.4,-2.2 0.6,-1.2 1,-2.8 1.1,-4 0.2,-1.2 0.2,-1.8 -0.6,-3 -0.9,-1.2 -2.5,-2.8 -3.4,-4.2 -0.8,-1.3 -0.8,-2.3 -1.1,-3.5 -0.4,-1.1 -1,-2.5 -0.9,-4.8 0.2,-2.3 1.2,-5.7 2.9,-7.3 1.6,-1.7 4,-1.7 5.5,-0.7 1.5,1 2.1,3 3.8,4.8 1.7,1.9 4.3,3.5 5.7,4.4 1.3,0.8 1.3,0.8 2.1,1.6 0.9,0.9 2.5,2.5 4.4,3.5 1.8,1 3.8,1.4 6,0.5 2.1,-0.8 4.5,-2.8 6.1,-3.8 1.7,-1 2.7,-1 3.7,-2.7 1,-1.6 2,-5 3.7,-6.8 1.6,-1.8 4,-2.2 5.6,-1 1.7,1.2 2.7,3.8 4,5.5 1.4,1.7 3,2.3 4.2,3.7 1.2,1.3 1.8,3.3 3,4.8 1.2,1.5 2.8,2.5 4.5,2.5 1.7,0 3.3,-1 5.7,-0.7 2.3,0.4 5.3,2 7.8,2.4 2.5,0.3 4.5,-0.7 6.3,-0.5 1.9,0.1 3.5,1.5 5,2 1.5,0.5 2.9,0.1 4.5,-1 1.7,-1.2 3.7,-3.2 4.7,-4.2 1,-1 1,-1 1.8,-1.7 0.9,-0.6 2.5,-2 3.9,-3.3 1.3,-1.3 2.3,-2.7 3.6,-3.7 1.4,-1 3,-1.6 4.2,-2.3 1.2,-0.7 1.8,-1.3 3.8,-1.7 2,-0.3 5.4,-0.3 7.4,-1.6 2,-1.4 2.6,-4 4.5,-4 1.8,0 4.8,2.6 6.5,3.5 1.6,0.8 2,-0.2 1.8,-2.4 -0.2,-2.1 -0.8,-5.5 0.2,-8.1 1,-2.7 3.6,-4.7 5,-5.7 1.3,-1 1.3,-1 1.8,-1.2 0.5,-0.1 1.5,-0.5 2.8,-1.3 1.4,-0.8 3,-2.2 4,-3.7 1,-1.5 1.4,-3.1 2.9,-4.8 1.5,-1.7 4.1,-3.3 6,-4.2 1.8,-0.8 2.8,-0.8 3.8,-1.1 1,-0.4 2,-1 3.5,-1 1.5,0 3.5,0.6 5.3,0 1.9,-0.7 3.5,-2.7 5.7,-3.4 2.2,-0.6 4.8,0 6.8,-0.5 2,-0.5 3.4,-2.1 4.2,-3 0.8,-0.8 1.2,-0.8 3,0 1.8,0.9 5.2,2.5 7,3.4 1.8,0.8 2.2,0.8 4.2,1.6 2,0.9 5.6,2.5 8.3,2.5 2.7,0 4.3,-1.6 5.7,-2.3 1.3,-0.7 2.3,-0.3 2.6,2.5 0.4,2.8 0,8.2 -0.1,10.8 -0.2,2.7 -0.2,2.7 0.3,4.9 0.5,2.1 1.5,6.5 1.8,9.3 0.4,2.8 0,4.2 -0.3,4.8 -0.3,0.7 -0.7,0.7 -2.5,0.9 -1.8,0.1 -5.2,0.5 -7,0.5 -1.8,0 -2.2,-0.4 -4.2,0 -2,0.3 -5.6,1.3 -7.6,3 -2,1.6 -2.4,4 -3.9,6.1 -1.5,2.2 -4.1,4.2 -6.3,5 -2.2,0.9 -3.8,0.5 -5.3,1.2 -1.5,0.7 -2.9,2.3 -4.9,3.2 -2,0.8 -4.6,0.8 -6.3,1.6 -1.7,0.9 -2.3,2.5 -2.3,4.2 0,1.7 0.6,3.3 0.8,4.8 0.2,1.5 -0.2,2.9 0,4.4 0.2,1.5 0.8,3.1 0.8,5.1 0,2 -0.6,4.4 -2,5.9 -1.3,1.5 -3.3,2.1 -5.1,3.5 -1.9,1.3 -3.5,3.3 -4.4,4.3 -0.8,1 -0.8,1 -1.3,2 -0.5,1 -1.5,3 -2,4.8 -0.5,1.9 -0.5,3.5 0.5,5.7 1,2.2 3,4.8 4.5,6.5 1.5,1.7 2.5,2.3 3.5,3.2 1,0.8 2,1.8 2.5,3 0.5,1.1 0.5,2.5 -0.5,4.5 -1,2 -3,4.6 -4.2,6.5 -1.1,1.8 -1.5,2.8 -3,3.6 -1.5,0.9 -4.1,1.5 -5.6,3 -1.5,1.5 -1.9,3.9 -1.2,5.5 0.7,1.7 2.3,2.7 3.2,3.9 0.8,1.1 0.8,2.5 2.6,3.6 1.9,1.2 5.5,2.2 7.2,3.4 1.7,1.1 1.3,2.5 -0.2,3.6 -1.5,1.2 -4.1,2.2 -5.5,3.5 -1.3,1.4 -1.3,3 -2.3,4.7 -1,1.7 -3,3.3 -4,4.7 -1,1.3 -1,2.3 -1,3 0,0.6 0,1 -0.2,2.3 -0.1,1.3 -0.5,3.7 0.7,6 1.2,2.3 3.8,4.7 5.8,5.8 2,1.2 3.4,1.2 5.5,2.2 2.2,1 5.2,3 6.4,6.2 1.1,3.1 0.5,7.5 0.5,10 0,2.5 0.6,3.1 1,3.5 0.3,0.3 0.3,0.3 1.6,1.6 1.4,1.4 4,4 5.5,6 1.5,2 1.9,3.4 1.9,4.4 0,1 -0.4,1.6 -0.2,3.6 0.2,2 0.8,5.4 0.2,8.5 -0.7,3.2 -2.7,6.2 -3.7,8 -1,1.9 -1,2.5 -1.8,4.7 -0.9,2.2 -2.5,5.8 -4,7.8 -1.5,2 -2.9,2.4 -4.2,3.7 -1.3,1.3 -2.7,3.7 -2.3,6.3 0.3,2.7 2.3,5.7 4.6,7.5 2.4,1.9 5,2.5 6.7,3.4 1.7,0.8 2.3,1.8 3.2,2.6 0.8,0.9 1.8,1.5 2.5,3.4 0.6,1.8 1,4.8 2.3,7 1.3,2.1 3.7,3.5 5.7,3.8 2,0.3 3.6,-0.3 5.3,-2 1.7,-1.7 3.3,-4.3 4.2,-5.7 0.8,-1.3 0.8,-1.3 0.1,-2.5 -0.6,-1.1 -2,-3.5 -2.5,-5.1 -0.5,-1.7 -0.1,-2.7 -0.3,-4.4 -0.2,-1.6 -0.8,-4 -1.7,-6 -0.8,-2 -1.8,-3.6 -2.3,-5 -0.5,-1.3 -0.5,-2.3 -0.8,-4 -0.4,-1.6 -1,-4 -0.5,-6.1 0.5,-2.2 2.1,-4.2 3.8,-5.4 1.7,-1.1 3.3,-1.5 5,-1 1.7,0.5 3.3,1.9 4,3.5 0.7,1.7 0.3,3.7 1.3,5.9 1,2.1 3.4,4.5 5.2,5.8 1.8,1.3 3.2,1.7 4.2,3.2 1,1.5 1.6,4.1 2,5.5 0.3,1.3 0.3,1.3 0.6,2.1 0.4,0.9 1,2.5 0.9,4.2 -0.2,1.7 -1.2,3.3 -1.7,6 -0.5,2.7 -0.5,6.3 -0.2,8.5 0.4,2.2 1,2.8 1,4.5 0,1.7 -0.6,4.3 0.2,7.5 0.8,3.2 3.2,6.8 5.2,8.5 2,1.7 3.6,1.3 5.6,1.5 2,0.2 4.4,0.8 6,1 1.7,0.2 2.7,-0.2 4.7,-0.2 2,0 5,0.4 6.8,0.4 1.9,0 2.5,-0.4 4.2,-0.4 1.7,0 4.3,0.4 6,0.2 1.7,-0.2 2.3,-0.8 4.2,-1 1.8,-0.2 4.8,0.2 7.5,-0.2 2.6,-0.3 5,-1.3 7.1,-1.3 2.2,0 4.2,1 5.7,2.3 1.5,1.4 2.5,3 3.3,3.9 0.9,0.8 1.5,0.8 3,2.3 1.5,1.5 3.9,4.5 5.2,6.3 1.3,1.9 1.7,2.5 2.7,3.5 1,1 2.6,2.4 4.1,4.5 1.5,2.2 2.9,5.2 3.4,7.2 0.5,2 0.1,3 -0.5,4.3 -0.7,1.4 -1.7,3 -2.2,3.9 -0.5,0.8 -0.5,0.8 0.7,3.1 1.1,2.4 3.5,7 4.8,9.4 1.3,2.3 1.7,2.3 3.5,1.8 1.8,-0.5 5.2,-1.5 8,-1.7 2.8,-0.1 5.2,0.5 6.8,0.7 1.7,0.2 2.7,-0.2 4.5,0.5 1.9,0.7 4.5,2.3 7.7,3.2 3.2,0.8 6.8,0.8 8.7,0.8 1.8,0 1.8,0 3.8,0 2,0 6,0 8.3,-0.2 2.4,-0.1 3,-0.5 4.4,-0.6 1.3,-0.2 3.3,-0.2 5.5,-0.5 2.1,-0.4 4.5,-1 5.6,-1.5 1.2,-0.5 1.2,-0.9 2.5,-2.4 1.4,-1.5 4,-4.1 5.4,-5.8 1.3,-1.7 1.3,-2.3 3,-3.7 1.6,-1.3 5,-3.3 7.1,-5 2.2,-1.6 3.2,-3 4.5,-3.8 1.4,-0.8 3,-1.2 4,-1.3 1,-0.2 1.4,-0.2 2.9,-0.5 1.5,-0.4 4.1,-1 6.6,-1.2 2.5,-0.2 4.9,0.2 6.2,0.7 1.3,0.5 1.7,1.1 3.3,2 1.7,0.8 4.7,1.8 6.4,2.5 1.6,0.6 2,1 3.6,1.5 1.7,0.5 4.7,1.1 7,1 2.4,-0.2 4,-1.2 5,-2.7 1,-1.5 1.4,-3.5 3,-5.3 1.7,-1.9 4.7,-3.5 6.4,-4.5 1.6,-1 2,-1.4 3.6,-2 1.7,-0.7 4.7,-1.7 6.5,-2.7 1.9,-1 2.5,-2 3,-2.7 0.5,-0.6 0.9,-1 1.4,-1.8 0.5,-0.8 1.1,-2.2 2.3,-3.7 1.2,-1.5 2.8,-3.1 3.8,-4.5 1,-1.3 1.4,-2.3 1.7,-3 0.3,-0.6 0.7,-1 2.5,-1.5 1.8,-0.5 5.2,-1.1 7.8,-0.8 2.7,0.3 4.7,1.7 6.2,2.3 1.5,0.7 2.5,0.7 4.5,2 2,1.4 5,4 6.7,5.5 1.6,1.5 2,1.9 3.3,3.2 1.3,1.3 3.7,3.7 5.8,4.7 2.2,1 4.2,0.6 5.7,0.6 1.5,0 2.5,0.4 5,0.4 2.5,0 6.5,-0.4 8.8,-1.7 2.4,-1.3 3,-3.7 4.7,-5.2 1.7,-1.5 4.3,-2.1 6.2,-3.3 1.8,-1.2 2.8,-2.8 4,-3.8 1.1,-1 2.5,-1.4 4,-2.5 1.5,-1.2 3.1,-3.2 3.8,-5 0.7,-1.9 0.3,-3.5 0.8,-5.9 0.5,-2.3 1.9,-5.3 3.2,-7 1.3,-1.6 2.7,-2 3.8,-2.6 1.2,-0.7 2.2,-1.7 4.2,-2.2 2,-0.5 5,-0.5 6.5,-2 1.5,-1.5 1.5,-4.5 1.8,-6.2 0.4,-1.6 1,-2 0.9,-3.6 -0.2,-1.7 -1.2,-4.7 -1,-6.7 0.1,-2 1.5,-3 1,-5.3 -0.5,-2.4 -2.9,-6 -3.5,-8.5 -0.7,-2.5 0.3,-3.9 2.3,-4.5 2,-0.7 5,-0.7 6.8,-0.9 1.9,-0.1 2.5,-0.5 4.7,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 4.1,-0.9 2.4,-0.6 7,-2 9.5,-3.1 2.5,-1.2 2.9,-2.2 4.7,-3.9 1.8,-1.6 5.2,-4 6.8,-5.1 1.7,-1.2 1.7,-1.2 3.2,-2.5 1.5,-1.4 4.5,-4 7.2,-5.2 2.6,-1.2 5,-0.8 7.5,-1.7 2.5,-0.8 5.1,-2.8 6.5,-5 1.3,-2.1 1.3,-4.5 1,-6.3 -0.4,-1.8 -1,-3.2 -1.2,-5.3 -0.2,-2.2 0.2,-5.2 0.3,-6.7 0.2,-1.5 0.2,-1.5 0.7,-3 0.5,-1.5 1.5,-4.5 3.5,-6.7 2,-2.1 5,-3.5 6.8,-5.3 1.9,-1.8 2.5,-4.2 4,-5.8 1.5,-1.7 3.9,-2.7 5.5,-4.4 1.7,-1.6 2.7,-4 4,-5.8 1.4,-1.8 3,-3.2 4.4,-4.5 1.3,-1.3 2.3,-2.7 2.8,-3.7 0.5,-1 0.5,-1.6 0.8,-3 0.4,-1.3 1,-3.3 1.4,-4.5 0.3,-1.1 0.3,-1.5 0,-2.1 -0.4,-0.7 -1,-1.7 -1.4,-3.9 -0.3,-2.1 -0.3,-5.5 -1,-7.6 -0.6,-2.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,-0.5 -7.4,-1.8 -2.1,-1.4 -3.5,-4 -4,-5.7 -0.5,-1.7 -0.1,-2.3 0.9,-3.2 1,-0.8 2.6,-1.8 3.6,-2.6 1,-0.9 1.4,-1.5 0.7,-3.9 -0.7,-2.3 -2.3,-6.3 -3,-8.5 -0.7,-2.1 -0.3,-2.5 -0.3,-4.3 0,-1.8 -0.4,-5.2 -0.9,-7.3 -0.5,-2.2 -1.1,-3.2 -1.3,-4.5 -0.2,-1.4 0.2,-3 0.2,-4.4 0,-1.3 -0.4,-2.3 -0.4,-4 0,-1.6 0.4,-4 0.4,-5.6 0,-1.7 -0.4,-2.7 -0.4,-4.4 0,-1.6 0.4,-4 0.7,-5.5 0.3,-1.5 0.7,-2.1 0.5,-3.6 -0.2,-1.5 -0.8,-3.9 -0.8,-6.4 0,-2.5 0.6,-5.1 0.8,-7.1 0.2,-2 -0.2,-3.4 -1.3,-4.5 -1.2,-1.2 -3.2,-2.2 -5.7,-2.4 -2.5,-0.1 -5.5,0.5 -7.2,1.2 -1.6,0.7 -2,1.3 -2.1,2.8 -0.2,1.5 -0.2,3.9 -0.4,5.4 -0.1,1.5 -0.5,2.1 -0.5,3.6 0,1.5 0.4,3.9 0.4,5.4 0,1.5 -0.4,2.1 -2,2.8 -1.7,0.7 -4.7,1.3 -7.2,1.2 -2.5,-0.2 -4.5,-1.2 -5.5,-2.9 -1,-1.6 -1,-4 -1.3,-5.6 -0.4,-1.7 -1,-2.7 -1.4,-4 -0.3,-1.4 -0.3,-3 -0.6,-4.4 -0.4,-1.3 -1,-2.3 -1.4,-3.5 -0.3,-1.1 -0.3,-2.5 -1.3,-4.6 -1,-2.2 -3,-5.2 -6,-6.5 -3,-1.4 -7,-1 -9.5,-1.2 -2.5,-0.2 -3.5,-0.8 -4.8,-1.2 -1.4,-0.3 -3,-0.3 -4.5,-0.6 -1.5,-0.4 -2.9,-1 -4.4,-2.7 -1.5,-1.7 -3.1,-4.3 -3.6,-7.5 -0.5,-3.2 0.1,-6.8 0.5,-8.7 0.3,-1.8 0.3,-1.8 -0.4,-2.3 -0.6,-0.5 -2,-1.5 -3.3,-2.7 -1.3,-1.1 -2.7,-2.5 -4,-3.1 -1.3,-0.7 -2.7,-0.7 -4,-0.5 -1.3,0.1 -2.7,0.5 -5,0 -2.3,-0.5 -5.7,-1.9 -7.7,-3 -2,-1.2 -2.6,-2.2 -4.8,-3 -2.2,-0.9 -5.8,-1.5 -8.7,-3.4 -2.8,-1.8 -4.8,-4.8 -5.8,-6.3 -1,-1.5 -1,-1.5 -1,-1.7 0,-0.1 0,-0.5 -0.7,-2.1 -0.6,-1.7 -2,-4.7 -3,-6.4 -1,-1.6 -1.6,-2 -2.6,-4 -1,-2 -2.4,-5.6 -4.5,-7.6 -2.2,-2 -5.2,-2.4 -6.9,-2.5 -1.6,-0.2 -2,-0.2 -4,-0.4 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -2.3,-0.8 -0.5,-0.2 -1.5,-0.2 -3.2,-2 -1.6,-1.9 -4,-5.5 -4.5,-9.2 -0.5,-3.7 0.9,-7.3 1.5,-9.3 0.7,-2 0.7,-2.4 1,-3.7 0.4,-1.3 1,-3.7 1.7,-5.3 0.7,-1.7 1.3,-2.7 1.5,-5 0.2,-2.4 -0.2,-6 1,-9.2 1.2,-3.2 3.8,-5.8 5.7,-7.3 1.8,-1.5 2.8,-1.9 3.6,-2 0.9,-0.2 1.5,-0.2 2.2,-0.4 0.7,-0.1 1.3,-0.5 2.5,-1.8 1.2,-1.3 2.8,-3.7 4.2,-5.2 1.3,-1.5 2.3,-2.1 3.5,-3.6 1.1,-1.5 2.5,-3.9 3.8,-5.4 1.3,-1.5 2.7,-2.1 4.2,-3.6 1.5,-1.5 3.1,-3.9 5,-5.4 1.8,-1.5 3.8,-2.1 5.1,-3.1 1.4,-1 2,-2.4 3.7,-3.7 1.7,-1.3 4.3,-2.7 6,-4 1.7,-1.3 2.3,-2.7 3.3,-3.7 1,-1 2.4,-1.6 3.2,-3.1 0.8,-1.5 1.2,-3.9 2.5,-6 1.3,-2.2 3.7,-4.2 5.7,-5 2,-0.9 3.6,-0.5 5.5,-0.9 1.8,-0.3 3.8,-1.3 5.5,-1.5 1.6,-0.1 3,0.5 5.3,0.9 2.3,0.3 5.7,0.3 8,-0.2 2.3,-0.5 3.7,-1.5 5.5,-2.2 1.8,-0.6 4.2,-1 6.2,-1.6 2,-0.7 3.6,-1.7 5.3,-2.2 1.7,-0.5 3.3,-0.5 4.2,-0.5 0.8,0 0.8,0 2.5,0.3 1.6,0.4 5,1 8.1,0.4 3.2,-0.7 6.2,-2.7 7.7,-4 1.5,-1.4 1.5,-2 2.7,-3.5 1.1,-1.5 3.5,-3.9 5.3,-5.2 1.8,-1.3 3.2,-1.7 3.8,-1.8 0.7,-0.2 0.7,-0.2 2.2,0.1 1.5,0.4 4.5,1 6.8,1 2.4,0 4,-0.6 6,-0.6 2,0 4.4,0.6 5.9,0.8 1.5,0.2 2.1,-0.2 4,-0.2 1.8,0 4.8,0.4 7,0.2 2.1,-0.2 3.5,-0.8 5,-1.2 1.5,-0.3 3.1,-0.3 5.1,-0.8 2,-0.5 4.4,-1.5 6.4,-1.8 2,-0.4 3.6,0 5,0 1.3,0 2.3,-0.4 3.3,-1.5 1,-1.2 2,-3.2 2.5,-4.9 0.5,-1.6 0.5,-3 1.8,-5.1 1.4,-2.2 4,-5.2 5.9,-6.7 1.8,-1.5 2.8,-1.5 4,-0.7 1.1,0.9 2.5,2.5 4.6,2.5 2.2,0 5.2,-1.6 7.4,-1.5 2.1,0.2 3.5,2.2 5.1,3.2 1.7,1 3.7,1 5.4,1.7 1.6,0.6 3,2 3.8,2.6 0.8,0.7 1.2,0.7 2.5,1.7 1.3,1 3.7,3 5,4.8 1.3,1.9 1.7,3.5 2.7,5.2 1,1.7 2.6,3.3 3.5,4.2 0.8,0.8 0.8,0.8 2,2.1 1.1,1.4 3.5,4 5,5.5 1.5,1.5 2.1,1.9 3.1,2.9 1,1 2.4,2.6 3.5,3.6 1.2,1 2.2,1.4 4,1 1.9,-0.3 4.5,-1.3 6.4,-1.5 1.8,-0.1 2.8,0.5 4.6,0.2 1.9,-0.3 4.5,-1.7 6.5,-1.5 2,0.2 3.4,1.8 5.4,2.3 2,0.5 4.6,-0.1 5.8,-2 1.2,-1.8 0.8,-4.8 2.3,-7.3 1.5,-2.5 4.9,-4.5 6.7,-5.8 1.8,-1.4 2.2,-2 3.5,-2.2 1.3,-0.2 3.7,0.2 5.2,0.2 1.5,0 2.1,-0.4 2.6,-0.5 0.5,-0.2 0.9,-0.2 2.7,-0.4 1.8,-0.1 5.2,-0.5 7.8,-1.8 2.7,-1.3 4.7,-3.7 5,-6.2 0.4,-2.5 -1,-5.1 -1.8,-6.5 -0.8,-1.3 -1.2,-1.3 -2.2,-2.8 -1,-1.5 -2.6,-4.5 -3.5,-6.5 -0.8,-2 -0.8,-3 0.5,-4.8 1.4,-1.9 4,-4.5 5.4,-6 1.3,-1.5 1.3,-1.9 3,-2.4 1.6,-0.5 5,-1.1 7.5,-2.3 2.5,-1.2 4.1,-2.8 4.5,-5 0.3,-2.2 -0.7,-4.8 -1.4,-6.2 -0.6,-1.3 -1,-1.3 -2.8,-0.8 -1.8,0.5 -5.2,1.5 -7.5,0.8 -2.3,-0.6 -3.7,-3 -4.2,-5.1 -0.5,-2.2 -0.1,-4.2 -0.3,-5.9 -0.2,-1.6 -0.8,-3 -1.3,-4.5 -0.5,-1.5 -0.9,-3.1 -2.2,-4.6 -1.3,-1.5 -3.7,-2.9 -5.3,-3.5 -1.7,-0.7 -2.7,-0.7 -4.9,-1.5 -2.1,-0.9 -5.5,-2.5 -6,-4.7 -0.5,-2.2 1.9,-4.8 4.2,-5.8 2.3,-1 4.7,-0.4 6,-0.2 1.3,0.2 1.7,-0.2 3.5,-0.5 1.8,-0.3 5.2,-0.7 7.2,-0.5 2,0.2 2.6,0.8 4.1,0.8 1.5,0 3.9,-0.6 6.2,-0.1 2.3,0.5 4.7,2.1 5.8,3.3 1.2,1.2 1.2,1.8 2.4,3.5 1.1,1.7 3.5,4.3 5.5,5.7 2,1.3 3.6,1.3 5.3,0.6 1.7,-0.6 3.3,-2 5.7,-2.3 2.3,-0.3 5.3,0.3 7.3,0.2 2,-0.2 3,-1.2 3.7,-3.7 0.6,-2.5 1,-6.5 1,-8.7 0,-2.1 -0.4,-2.5 -0.7,-4.1 -0.3,-1.7 -0.7,-4.7 -1,-6.2 -0.3,-1.5 -0.7,-1.5 -1.3,-4 -0.7,-2.5 -1.7,-7.5 -1.7,-10.5 0,-3 1,-4 1.7,-5.2 0.6,-1.1 1,-2.5 0.6,-4.5 -0.3,-2 -1.3,-4.6 -3.8,-5.6 -2.5,-1 -6.5,-0.4 -8.8,1.1 -2.4,1.5 -3,3.9 -4.9,5.4 -1.8,1.5 -4.8,2.1 -6.6,3 -1.9,0.8 -2.5,1.8 -3.5,2.5 -1,0.6 -2.4,1 -3.4,2.1 -1,1.2 -1.6,3.2 -1.8,4.7 -0.2,1.5 0.2,2.5 -0.5,4.2 -0.7,1.6 -2.3,4 -4.3,5 -2,1 -4.4,0.6 -6,0 -1.7,-0.7 -2.7,-1.7 -3,-2.5 -0.4,-0.9 0,-1.5 -0.2,-2.5 -0.2,-1 -0.8,-2.4 -0.8,-4 0,-1.7 0.6,-3.7 0.5,-5.9 -0.2,-2.1 -1.2,-4.5 -2.7,-5.8 -1.5,-1.3 -3.5,-1.7 -5.3,-1 -1.9,0.7 -3.5,2.3 -5.5,2.8 -2,0.5 -4.4,-0.1 -6,0.4 -1.7,0.5 -2.7,2.1 -5,2.6 -2.4,0.5 -6,-0.1 -7.9,-0.5 -1.8,-0.3 -1.8,-0.3 -3.3,-1.1 -1.5,-0.9 -4.5,-2.5 -6.7,-3.2 -2.1,-0.7 -3.5,-0.3 -4.8,0.2 -1.3,0.5 -2.7,1.1 -4.2,1.6 -1.5,0.5 -3.1,0.9 -4,1 -0.8,0.2 -0.8,0.2 -2.3,-0.5 -1.5,-0.6 -4.5,-2 -6.3,-4.1 -1.9,-2.2 -2.5,-5.2 -4.7,-7.4 -2.2,-2.1 -5.8,-3.5 -7.7,-4.3 -1.8,-0.8 -1.8,-1.2 -2.5,-2.3 -0.6,-1.2 -2,-3.2 -2.5,-5.7 -0.5,-2.5 -0.1,-5.5 0.5,-7.8 0.7,-2.4 1.7,-4 2.4,-5.5 0.6,-1.5 1,-2.9 1.1,-3.9 0.2,-1 0.2,-1.6 1.4,-3 1.1,-1.3 3.5,-3.3 4.6,-4.3 1.2,-1 1.2,-1 2.4,-2 1.1,-1 3.5,-3 5,-4.2 1.5,-1.1 2.1,-1.5 3.3,-2.6 1.2,-1.2 2.8,-3.2 4.3,-4.5 1.5,-1.4 2.9,-2 4.5,-2.2 1.7,-0.2 3.7,0.2 4.7,0.3 1,0.2 1,0.2 1.7,-0.3 0.6,-0.5 2,-1.5 3.6,-2.2 1.7,-0.6 3.7,-1 5.2,-1.5 1.5,-0.5 2.5,-1.1 4.7,-1.8 2.1,-0.7 5.5,-1.3 7.8,-1.2 2.3,0.2 3.7,1.2 5.8,1.4 2.2,0.1 5.2,-0.5 7.5,-0.4 2.4,0.2 4,1.2 5.4,1.7 1.3,0.5 2.3,0.5 4,-0.7 1.6,-1.1 4,-3.5 5.3,-5.5 1.3,-2 1.7,-3.6 2.8,-5.1 1.2,-1.5 3.2,-2.9 4.5,-4.7 1.4,-1.8 2,-4.2 3,-5.5 1,-1.3 2.4,-1.7 3.4,-2.5 1,-0.8 1.6,-2.2 2,-3 0.3,-0.8 0.3,-1.2 -0.4,-2.3 -0.6,-1.2 -2,-3.2 -4.1,-3.7 -2.2,-0.5 -5.2,0.5 -6.4,-1 -1.1,-1.5 -0.5,-5.5 0.5,-7.5 1,-2 2.4,-2 4,-2.8 1.7,-0.9 3.7,-2.5 4.7,-4.7 1,-2.2 1,-4.8 0.2,-7.2 -0.9,-2.3 -2.5,-4.3 -3.9,-5.5 -1.3,-1.1 -2.3,-1.5 -3.5,-1.5 -1.1,0 -2.5,0.4 -4.5,0 -2,-0.3 -4.6,-1.3 -7.3,-1.3 -2.7,0 -5.3,1 -7.5,1 -2.2,0 -3.8,-1 -6.2,-1.2 -2.3,-0.1 -5.3,0.5 -7.3,0.5 -2,0 -3,-0.6 -5.3,-0.8 -2.4,-0.2 -6,0.2 -8.4,0 -2.3,-0.2 -3.3,-0.8 -5,-1.2 -1.6,-0.3 -4,-0.3 -6.6,-1.5 -2.7,-1.1 -5.7,-3.5 -7.2,-4.8 -1.5,-1.3 -1.5,-1.7 -2.5,-2.8 -1,-1.2 -3,-3.2 -4,-4.2 -1,-1 -1,-1 -2,-0.3 -1,0.6 -3,2 -4.3,4.5 -1.4,2.5 -2,6.1 -4.4,8.3 -2.3,2.2 -6.3,2.8 -8.8,2.3 -2.5,-0.5 -3.5,-2.1 -5.2,-3.1 -1.6,-1 -4,-1.4 -6.3,-1 -2.3,0.3 -4.7,1.3 -6.8,1.8 -2.2,0.5 -4.2,0.5 -5.5,0.8 -1.4,0.4 -2,1 -3.5,1.7 -1.5,0.7 -3.9,1.3 -5.5,2.8 -1.7,1.5 -2.7,3.9 -4.4,5.2 -1.6,1.3 -4,1.7 -5.5,3.2 -1.5,1.5 -2.1,4.1 -3.5,5.5 -1.3,1.3 -3.3,1.3 -5.1,2.8 -1.9,1.5 -3.5,4.5 -4.4,6 -0.8,1.5 -0.8,1.5 -1.8,2.7 -1,1.1 -3,3.5 -4.8,4.5 -1.9,1 -3.5,0.6 -5,-0.2 -1.5,-0.8 -2.9,-2.2 -4.4,-3 -1.5,-0.8 -3.1,-1.2 -5.1,-2.8 -2,-1.7 -4.4,-4.7 -5.7,-6.4 -1.3,-1.6 -1.7,-2 -2.2,-2.5 -0.5,-0.5 -1.1,-1.1 -2.6,-2 -1.5,-0.8 -3.9,-1.8 -7,-1.6 -3.2,0.1 -7.2,1.5 -9.4,2.8 -2.1,1.3 -2.5,2.7 -3.3,4 -0.8,1.3 -2.2,2.7 -4.2,3.3 -2,0.7 -4.6,0.7 -6.6,0 -2,-0.6 -3.4,-2 -5.2,-3 -1.8,-1 -4.2,-1.6 -6,-3.3 -1.8,-1.7 -3.2,-4.3 -4.5,-6.2 -1.3,-1.8 -2.7,-2.8 -3.5,-3.6 -0.8,-0.9 -1.2,-1.5 -2.8,-2.2 -1.7,-0.7 -4.7,-1.3 -6.7,-2.5 -2,-1.2 -3,-2.8 -3.2,-5.2 -0.1,-2.3 0.5,-5.3 1.4,-7.3 0.8,-2 1.8,-3 2.5,-4 0.6,-1 1,-2 0.8,-3.2 -0.2,-1.1 -0.8,-2.5 -2.7,-3.6 C 926,64 923,63 921,61.8 c -2,-1.1 -3,-2.5 -4.7,-2.6 -1.6,-0.2 -4,0.8 -6.5,0.1 -2.5,-0.6 -5.1,-3 -6.8,-4.1 -1.7,-1.2 -2.3,-1.2 -3.8,-2.4 -1.5,-1.1 -3.9,-3.5 -5,-4.6 -1.2,-1.2 -1.2,-1.2 -1.9,-1 -0.6,0.1 -2,0.5 -4.1,0.5 -2.2,0 -5.2,-0.4 -8,0.1 -2.9,0.5 -5.5,1.9 -7.2,2.5 -1.7,0.7 -2.3,0.7 -3.5,1 -1.2,0.4 -2.8,1 -4,2 -1.2,1 -1.8,2.4 -3.7,4 -1.8,1.7 -4.8,3.7 -6.3,4.7 -1.5,1 -1.5,1 -2.3,2 -0.9,1 -2.5,3 -4.9,3.3 -2.3,0.4 -5.3,-1 -6.8,-1.6 C 840,65 840,65 838.7,64.2 c -1.4,-0.9 -4,-2.5 -6,-3.2 -2,-0.7 -3.4,-0.3 -4.7,0 -1.3,0.3 -2.7,0.7 -3.7,1.5 -1,0.8 -1.6,2.2 -2.3,3 -0.7,0.8 -1.3,1.2 -2.2,2 -0.8,0.8 -1.8,2.2 -2.6,4.2 -0.9,2 -1.5,4.6 -2.9,6.5 -1.3,1.8 -3.3,2.8 -5.6,2.6 -2.4,-0.1 -5,-1.5 -6.9,-2.1 -1.8,-0.7 -2.8,-0.7 -4.5,1.5 -1.6,2.1 -4,6.5 -5,9 -1,2.5 -0.6,3.1 -1.1,4.6 -0.5,1.5 -1.9,3.9 -3,5.2 -1.2,1.3 -2.2,1.7 -4.2,1.3 -2,-0.3 -5,-1.3 -7.2,-1.1 -2.1,0.1 -3.5,1.5 -5.8,2.5 -2.3,1 -5.7,1.6 -8,1.5 -2.3,-0.2 -3.7,-1.2 -6.2,-1.7 -2.5,-0.5 -6.1,-0.5 -8.6,-0.8 -2.5,-0.4 -3.9,-1 -4.7,-1.4 -0.8,-0.3 -1.2,-0.3 -1.5,-0.1 -0.3,0.1 -0.7,0.5 -2.2,1 -1.5,0.5 -4.1,1.1 -7.1,0.6 -3,-0.5 -6.4,-2.1 -8.2,-4.8 -1.8,-2.7 -2.2,-6.3 -2.8,-8.2 C 721,86 720,86 718.3,85 c -1.6,-1 -4,-3 -5.6,-4.2 -1.7,-1.1 -2.7,-1.5 -4.4,-2.6 -1.6,-1.2 -4,-3.2 -5.5,-4.2 -1.5,-1 -2.1,-1 -3.6,-1.8 -1.5,-0.9 -3.9,-2.5 -5.2,-4.2 -1.3,-1.7 -1.7,-3.3 -3.2,-4.7 -1.5,-1.3 -4.1,-2.3 -5.8,-2.6 -1.7,-0.4 -2.3,0 -3.3,1.1 -1,1.2 -2.4,3.2 -4.4,4.4 -2,1.1 -4.6,1.5 -6.6,0.8 -2,-0.7 -3.4,-2.3 -3.7,-4.5 -0.3,-2.2 0.3,-4.8 -0.3,-7.2 C 666,53 664,51 662.5,50 661,49 660,49 659,48.7 c -1,-0.4 -2,-1 -4.7,-1 -2.6,0 -7,0.6 -9.5,0.8 -2.5,0.2 -3.1,-0.2 -5.1,-0.2 -2,0 -5.4,0.4 -7.5,-0.1 -2.2,-0.5 -3.2,-1.9 -4.5,-2.9 -1.4,-1 -3,-1.6 -5.4,-1.6 -2.3,0 -5.3,0.6 -7.3,1.5 -2,0.8 -3,1.8 -3.7,3.6 -0.6,1.9 -1,4.5 -2,6.5 -1,2 -2.6,3.4 -3.6,5.2 -1,1.8 -1.4,4.2 -2.4,5.7 -1,1.5 -2.6,2.1 -5.1,1.8 -2.5,-0.3 -5.9,-1.7 -7.5,-3.5 C 589,62.7 589,60.3 587.5,58.8 586,57.3 583,56.7 580.8,54.8 578.7,53 577.3,50 576.2,48.5 575,47 574,47 572.3,48.2 c -1.6,1.1 -4,3.5 -5.1,5.6 -1.2,2.2 -1.2,4.2 -2.5,6.4 -1.4,2.1 -4,4.5 -5.5,5.5 -1.5,1 -1.9,0.6 -3.5,0.8 -1.7,0.2 -4.7,0.8 -6.5,1 -1.9,0.2 -2.5,-0.2 -4.2,-0.2 -1.7,0 -4.3,0.4 -6.8,-0.3 -2.5,-0.7 -4.9,-2.3 -6,-3.5 -1.2,-1.2 -1.2,-1.8 -2,-3.7 -0.9,-1.8 -2.5,-4.8 -3.7,-6.5 -1.2,-1.6 -1.8,-2 -3.3,-1.8 -1.5,0.2 -3.9,0.8 -5.7,0.8 -1.8,0 -3.2,-0.6 -4.3,-0.8 -1.2,-0.2 -2.2,0.2 -4,-0.2 -1.9,-0.3 -4.5,-1.3 -6.4,-1.3 -1.8,0 -2.8,1 -4.8,1.2 -2,0.1 -5,-0.5 -7.2,-2.4 -2.1,-1.8 -3.5,-4.8 -4.5,-6.5 -1,-1.6 -1.6,-2 -2.3,-2.5 -0.7,-0.5 -1.3,-1.1 -2.5,-1.5 -1.2,-0.3 -2.8,-0.3 -5,-1.1 -2.2,-0.9 -4.8,-2.5 -6.5,-3.4 -1.7,-0.8 -2.3,-0.8 -3.8,-1.6 -1.5,-0.9 -3.9,-2.5 -5.9,-3.4 -2,-0.8 -3.6,-0.8 -5.3,0.5 -1.7,1.4 -3.3,4 -3.8,6.2"),S(K,"id","island_2"),S(K,"data-f","2"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 1315,58.7 c -1.3,1 -1.7,1.6 -3.3,3 -1.7,1.3 -4.7,3.3 -6.4,5.3 -1.6,2 -2,4 -3.6,5.2 -1.7,1.1 -4.7,1.5 -6.4,0 -1.6,-1.5 -2,-4.9 -2.8,-6.9 -0.8,-2 -2.2,-2.6 -3,-3 -0.8,-0.3 -1.2,-0.3 -2.2,0.4 -1,0.6 -2.6,2 -3.6,4.1 -1,2.2 -1.4,5.2 -1.7,6.9 -0.3,1.6 -0.7,2 -1.3,3.1 -0.7,1.2 -1.7,3.2 -1.9,5.4 -0.1,2.1 0.5,4.5 0.5,6.3 0,1.8 -0.6,3.2 -1,4 -0.3,0.8 -0.3,1.2 0.5,2.8 0.9,1.7 2.5,4.7 1.9,7.7 -0.7,3 -3.7,6 -5.4,7.5 -1.6,1.5 -2,1.5 -3.5,1.7 -1.5,0.1 -4.1,0.5 -5.5,0.6 -1.3,0.2 -1.3,0.2 -1.5,0.2 -0.1,0 -0.5,0 -2.1,1 -1.7,1 -4.7,3 -7.2,4.2 -2.5,1.1 -4.5,1.5 -6.3,2.8 -1.9,1.3 -3.5,3.7 -3.2,6.2 0.3,2.5 2.7,5.1 5.3,6.5 2.7,1.3 5.7,1.3 7.5,1 1.9,-0.4 2.5,-1 3.7,-2 1.2,-1 2.8,-2.4 5,-2.7 2.2,-0.3 4.8,0.3 6.8,0.3 2,0 3.4,-0.6 5.4,-0.8 2,-0.2 4.6,0.2 6.3,0.7 1.7,0.5 2.3,1.1 3.2,3.3 0.8,2.2 1.8,5.8 2.1,8.2 0.4,2.3 0,3.3 -0.3,3.8 -0.3,0.5 -0.7,0.5 -0.7,2 0,1.5 0.4,4.5 0.5,6 0.2,1.5 0.2,1.5 0.5,3.5 0.4,2 1,6 2.4,8.7 1.3,2.6 3.3,4 5.5,4.3 2.1,0.3 4.5,-0.3 6.1,-0.3 1.7,0 2.7,0.6 5,0.8 2.4,0.2 6,-0.2 8,-0.2 2,0 2.4,0.4 2.5,0.5 0.2,0.2 0.2,0.2 1.9,1 1.6,0.9 5,2.5 7,3.9 2,1.3 2.6,2.3 3.8,3.3 1.2,1 2.8,2 4.7,2.2 1.8,0.1 3.8,-0.5 5.6,-2.2 1.9,-1.7 3.5,-4.3 5.2,-6.2 1.7,-1.8 3.3,-2.8 5.3,-2.1 2,0.6 4.4,3 5.5,5 1.2,2 1.2,3.6 1.9,5.1 0.6,1.5 2,2.9 3.5,3.9 1.5,1 3.1,1.6 5.3,0.8 2.2,-0.8 4.8,-3.2 6.3,-5.3 1.5,-2.2 1.9,-4.2 2.5,-5.5 0.7,-1.4 1.7,-2 3,-3.7 1.4,-1.7 3,-4.3 4.5,-5.3 1.5,-1 2.9,-0.4 5.5,0.1 2.7,0.5 6.7,0.9 8.9,0.9 2.1,0 2.5,-0.4 5,-0.4 2.5,0 7.1,0.4 9.6,0.2 2.5,-0.2 2.9,-0.8 4.5,-1.5 1.7,-0.7 4.7,-1.3 6.9,-3.2 2.1,-1.8 3.5,-4.8 3.6,-7.5 0.2,-2.6 -0.8,-5 -1,-6.8 -0.1,-1.8 0.5,-3.2 1,-3.8 0.5,-0.7 0.9,-0.7 1.7,-2 0.8,-1.4 2.2,-4 3.3,-5.9 1.2,-1.8 2.2,-2.8 4.4,-3.5 2.1,-0.6 5.5,-1 7.1,-1.1 1.7,-0.2 1.7,-0.2 2,0.1 0.4,0.4 1,1 2.4,1.5 1.3,0.5 3.3,0.9 5,2 1.6,1.2 3,3.2 3.3,5.9 0.3,2.6 -0.3,6 1,7.6 1.3,1.7 4.7,1.7 6.8,2.4 2.2,0.6 3.2,2 4.5,2.8 1.4,0.8 3,1.2 4.2,2.2 1.2,1 1.8,2.6 3,4.1 1.2,1.5 2.8,2.9 3.8,4.2 1,1.3 1.4,2.7 2.5,3.8 1.2,1.2 3.2,2.2 4.5,4 1.4,1.9 2,4.5 0.9,6.9 -1.2,2.3 -4.2,4.3 -5.9,6.3 -1.6,2 -2,4 -2.8,6 -0.8,2 -2.2,4 -2.5,6.2 -0.3,2.1 0.3,4.5 -0.2,7.6 -0.5,3.2 -2.1,7.2 -3.5,9.5 -1.3,2.4 -2.3,3 -4,3.2 -1.6,0.2 -4,-0.2 -5.6,-0.7 -1.7,-0.5 -2.7,-1.1 -4.4,-1.6 -1.6,-0.5 -4,-0.9 -6,-0.5 -2,0.3 -3.6,1.3 -5.3,1.5 -1.7,0.1 -3.3,-0.5 -5.7,-0.4 -2.3,0.2 -5.3,1.2 -7.6,1.2 -2.4,0 -4,-1 -5.4,-1.5 -1.3,-0.5 -2.3,-0.5 -3.5,0.2 -1.1,0.6 -2.5,2 -2.6,4.3 -0.2,2.3 0.8,5.7 -0.2,8 -1,2.3 -4,3.7 -6.5,3.7 -2.5,0 -4.5,-1.4 -5.7,-2.7 -1.1,-1.3 -1.5,-2.7 -3.3,-4.3 -1.8,-1.7 -5.2,-3.7 -7,-5.2 -1.8,-1.5 -2.2,-2.5 -2.5,-3 -0.3,-0.5 -0.7,-0.5 -2.7,-0.7 -2,-0.1 -5.6,-0.5 -7.5,-0.8 -1.8,-0.3 -1.8,-0.7 -3.3,-1.2 -1.5,-0.5 -4.5,-1.1 -6.7,-2.5 -2.1,-1.3 -3.5,-3.3 -6,-4.5 -2.5,-1.1 -6.1,-1.5 -8.3,-0.6 -2.2,0.8 -2.8,2.8 -3.8,4.3 -1,1.5 -2.4,2.5 -3.5,3 -1.2,0.5 -2.2,0.5 -3.4,1.3 -1.1,0.9 -2.5,2.5 -4,3.2 -1.5,0.7 -3.1,0.3 -5.1,0.7 -2,0.3 -4.4,1.3 -6.5,0.5 -2.2,-0.9 -4.2,-3.5 -6.4,-3.5 -2.1,0 -4.5,2.6 -6.3,4.1 -1.8,1.5 -3.2,1.9 -4.2,2.7 -1,0.8 -1.6,2.2 -3.3,3 -1.7,0.8 -4.3,1.2 -7.3,-0.2 -3,-1.3 -6.4,-4.3 -8.5,-5.8 -2.2,-1.5 -3.2,-1.5 -3.9,-1.5 -0.6,0 -1,0 -2.3,0.5 -1.3,0.5 -3.7,1.5 -5.8,2 -2.2,0.5 -4.2,0.5 -6.4,1.3 -2.1,0.9 -4.5,2.5 -5,4.7 -0.5,2.2 0.9,4.8 3.4,6 2.5,1.2 6.1,0.8 8.1,0.8 2,0 2.4,0.4 2.5,0.7 0.2,0.3 0.2,0.7 -0.6,2.2 -0.9,1.5 -2.5,4.1 -2.9,6.1 -0.3,2 0.7,3.4 0.4,5.4 -0.4,2 -2,4.6 -2.4,6.6 -0.3,2 0.7,3.4 0.5,5.4 -0.1,2 -1.5,4.6 -1.6,7.1 -0.2,2.5 0.8,4.9 1,6.9 0.1,2 -0.5,3.6 -0.9,5.1 -0.3,1.5 -0.3,2.9 0.2,4.4 0.5,1.5 1.5,3.1 2,4.5 0.5,1.3 0.5,2.3 0.7,3.5 0.1,1.1 0.5,2.5 1.6,3.6 1.2,1.2 3.2,2.2 6,2.5 2.9,0.4 6.5,0 8.7,0 2.2,0 2.8,0.4 3.5,0.5 0.7,0.2 1.3,0.2 2.7,-0.1 1.3,-0.4 3.3,-1 4.8,-1.2 1.5,-0.2 2.5,0.2 4,0 1.5,-0.2 3.5,-0.8 5.7,-1 2.1,-0.2 4.5,0.2 6,0.7 1.5,0.5 2.1,1.1 4.1,2.1 2,1 5.4,2.4 7.2,3 1.8,0.7 2.2,0.7 3.2,1 1,0.4 2.6,1 4.5,3.2 1.8,2.2 3.8,5.8 4.6,8.3 0.9,2.5 0.5,3.9 1.7,5.2 1.2,1.3 3.8,2.7 6.5,2.3 2.7,-0.3 5.3,-2.3 7.3,-2.8 2,-0.5 3.4,0.5 4.9,1 1.5,0.5 3.1,0.5 4.1,0.8 1,0.4 1.4,1 3.7,1.4 2.3,0.3 6.7,0.3 8.8,0.1 2.2,-0.1 2.2,-0.5 3.4,-0.6 1.1,-0.2 3.5,-0.2 5,0.3 1.5,0.5 2.1,1.5 3.5,2.3 1.3,0.9 3.3,1.5 5,3 1.6,1.5 3,3.9 5,5 2,1.2 4.6,1.2 6.3,1.5 1.7,0.4 2.3,1 3.8,1.4 1.5,0.3 3.9,0.3 5.2,0.8 1.3,0.5 1.7,1.5 3.3,2.2 1.7,0.6 4.7,1 6.4,1.5 1.6,0.5 2,1.1 4.5,0.6 2.5,-0.5 7.1,-2.1 9.5,-3.5 2.3,-1.3 2.3,-2.3 3.6,-4.1 1.4,-1.9 4,-4.5 5.5,-5.9 1.5,-1.3 1.9,-1.3 2.4,-1.6 0.5,-0.4 1.1,-1 2.6,-1.4 1.5,-0.3 3.9,-0.3 5.7,-0.6 1.8,-0.4 3.2,-1 5,-1 1.8,0 4.2,0.6 6,2.6 1.8,2 3.2,5.4 4,7.2 0.8,1.8 1.2,2.2 1.5,2.8 0.3,0.7 0.7,1.7 1.8,2.7 1.2,1 3.2,2 5.2,2.3 2,0.4 4,0 5.3,-0.5 1.4,-0.5 2,-1.1 2.5,-3.1 0.5,-2 0.9,-5.4 0.2,-8.2 -0.7,-2.8 -2.3,-5.2 -3.2,-6.5 -0.8,-1.3 -0.8,-1.7 1.7,-1.8 2.5,-0.2 7.5,-0.2 10.2,0.6 2.6,0.9 3,2.5 4.8,3.7 1.8,1.2 5.2,1.8 7.5,3 2.3,1.2 3.7,2.8 5.3,3.8 1.7,1 3.7,1.4 5.2,1.2 1.5,-0.2 2.5,-0.8 4.7,-0.8 2.1,0 5.5,0.6 8,0.5 2.5,-0.2 4.1,-1.2 5.5,-1.7 1.3,-0.5 2.3,-0.5 3.8,-1 1.5,-0.5 3.5,-1.5 4.8,-2 1.4,-0.5 2,-0.5 4.5,-1.3 2.5,-0.9 6.9,-2.5 9.2,-3.4 2.3,-0.8 2.7,-0.8 3.2,-0.5 0.5,0.4 1.1,1 3.3,1.9 2.2,0.8 5.8,1.8 8,3 2.2,1.1 2.8,2.5 4.2,3.8 1.3,1.3 3.3,2.7 6,2.5 2.6,-0.2 6,-1.8 7.8,-3.5 1.8,-1.7 2.2,-3.3 3.8,-4.8 1.7,-1.5 4.7,-2.9 6.5,-4.4 1.9,-1.5 2.5,-3.1 4.5,-4.6 2,-1.5 5.4,-2.9 7.2,-4 1.8,-1.2 2.2,-2.2 3.7,-2.7 1.5,-0.5 4.1,-0.5 6.6,1.2 2.5,1.6 4.9,5 6.4,6.5 1.5,1.5 2.1,1.1 3.3,-0.9 1.2,-2 2.8,-5.6 3.7,-7.5 0.8,-1.8 0.8,-1.8 2.1,-3 1.4,-1.1 4,-3.5 6.5,-3 2.5,0.5 4.9,3.9 6.5,3.9 1.7,0 2.7,-3.4 4.9,-5 2.1,-1.7 5.5,-1.7 7.5,-2.2 2,-0.5 2.6,-1.5 4.3,-2.2 1.7,-0.6 4.3,-1 6.3,-2.3 2,-1.3 3.4,-3.7 4.4,-5 1,-1.3 1.6,-1.7 2.5,-2.5 0.8,-0.8 1.8,-2.2 3.1,-3 1.4,-0.8 3,-1.2 4,-1.5 1,-0.3 1.4,-0.7 3.2,-1.3 1.8,-0.7 5.2,-1.7 7.2,-2.7 2,-1 2.6,-2 3.5,-2.8 0.8,-0.9 1.8,-1.5 2.6,-3 0.9,-1.5 1.5,-3.9 1.5,-6 0,-2.2 -0.6,-4.2 -1.5,-5.4 -0.8,-1.1 -1.8,-1.5 -2.8,-3 -1,-1.5 -2,-4.1 -3,-5.6 -1,-1.5 -2,-1.9 -2.8,-2.9 -0.9,-1 -1.5,-2.6 -3.7,-4.1 -2.2,-1.5 -5.8,-2.9 -8.5,-3.2 -2.7,-0.3 -4.3,0.3 -6.2,0.3 -1.8,0 -3.8,-0.6 -5,-1.5 -1.1,-0.8 -1.5,-1.8 -3,-3 -1.5,-1.1 -4.1,-2.5 -5.8,-4 -1.7,-1.5 -2.3,-3.1 -4,-4.6 -1.7,-1.5 -4.3,-2.9 -6,-4.4 -1.7,-1.5 -2.3,-3.1 -3.5,-4.3 -1.2,-1.2 -2.8,-1.8 -4,-3 -1.2,-1.2 -1.8,-2.8 -2.5,-3.8 -0.7,-1 -1.3,-1.4 -2.2,-2.7 -0.8,-1.3 -1.8,-3.7 -1.6,-6 0.1,-2.3 1.5,-4.7 2,-7.2 0.5,-2.5 0.1,-5.1 0.1,-6.8 0,-1.7 0.4,-2.3 0.5,-3 0.2,-0.7 0.2,-1.3 0.7,-2.2 0.5,-0.8 1.5,-1.8 3.3,-2.6 1.9,-0.9 4.5,-1.5 6.9,-2.9 2.3,-1.3 4.3,-3.3 5.5,-4.6 1.1,-1.4 1.5,-2 2.3,-3 0.8,-1 2.2,-2.4 3.8,-3.5 1.7,-1.2 3.7,-2.2 4.9,-2.5 1.1,-0.4 1.5,0 2.1,0 0.7,0 1.7,-0.4 4,-1.5 2.4,-1.2 6,-3.2 8.2,-4.9 2.2,-1.6 2.8,-3 5.3,-4.5 2.5,-1.5 6.9,-3.1 9.2,-4.1 2.3,-1 2.7,-1.4 3.5,-1.5 0.8,-0.2 2.2,-0.2 3.5,0 1.3,0.1 2.7,0.5 4.5,0.6 1.8,0.2 4.2,0.2 5.8,0.5 1.7,0.4 2.7,1 3.7,1.9 1,0.8 2,1.8 3.5,2.6 1.5,0.9 3.5,1.5 5.5,2.7 2,1.2 4,2.8 5.7,3.8 1.6,1 3,1.4 4.6,1.2 1.7,-0.2 3.7,-0.8 5.5,-0.7 1.9,0.2 3.5,1.2 4.5,1.7 1,0.5 1.4,0.5 2.9,0.8 1.5,0.4 4.1,1 6.1,2 2,1 3.4,2.4 5.2,2.9 1.8,0.5 4.2,0.1 6,-1.4 1.8,-1.5 3.2,-4.1 4,-6 0.8,-1.8 1.2,-2.8 2.8,-4.3 1.7,-1.5 4.7,-3.5 6.4,-5 1.6,-1.5 2,-2.5 2.3,-3 0.3,-0.5 0.7,-0.5 1.5,-2 0.8,-1.5 2.2,-4.5 2.8,-6.2 0.7,-1.6 0.7,-2 1.4,-3.5 0.6,-1.5 2,-4.1 3.5,-5.6 1.5,-1.5 3.1,-1.9 4.3,-2.4 1.2,-0.5 1.8,-1.1 2.5,-3.8 0.7,-2.7 1.3,-7.3 0.5,-10.2 -0.8,-2.8 -3.2,-3.8 -4.8,-6 -1.7,-2.1 -2.7,-5.5 -3.2,-7.3 -0.5,-1.8 -0.5,-2.2 -0.5,-3.3 0,-1.2 0,-3.2 0.3,-5.2 0.4,-2 1,-4 1.2,-5.7 0.2,-1.6 -0.2,-3 -1,-4.3 -0.8,-1.3 -2.2,-2.7 -3.2,-5.7 -1,-3 -1.6,-7.6 -2,-10.1 -0.3,-2.5 -0.3,-2.9 -0.1,-4.4 0.1,-1.5 0.5,-4.1 -0.5,-6.6 -1,-2.5 -3.4,-4.9 -5.4,-6.2 -2,-1.3 -3.6,-1.7 -4.8,-2 -1.2,-0.3 -1.8,-0.7 -3.5,-1 -1.7,-0.3 -4.3,-0.7 -5.8,-1 -1.5,-0.3 -1.9,-0.7 -3,-1 -1.2,-0.3 -3.2,-0.7 -5.4,-0.2 -2.1,0.5 -4.5,1.9 -5.8,2.7 -1.3,0.8 -1.7,1.2 -3.3,2 -1.7,0.8 -4.7,2.2 -6.9,1.7 -2.1,-0.5 -3.5,-2.9 -6.1,-3.2 -2.7,-0.3 -6.7,1.3 -8.7,2 -2,0.7 -2,0.3 -3.5,0.3 -1.5,0 -4.5,0.4 -6.3,0.7 -1.9,0.3 -2.5,0.7 -3.7,0.8 -1.2,0.2 -2.8,0.2 -4.8,1.2 -2,1 -4.4,3 -5.5,4.8 -1.2,1.9 -1.2,3.5 -2.7,5.2 -1.5,1.7 -4.5,3.3 -6,5.7 -1.5,2.3 -1.5,5.3 -2,7.6 -0.5,2.4 -1.5,4 -2.7,5 -1.1,1 -2.5,1.4 -4.5,1.4 -2,0 -4.6,-0.4 -6.1,-0.5 -1.5,-0.2 -1.9,-0.2 -4,-0.2 -2.2,0 -6.2,0 -8.4,0 -2.1,0 -2.5,0 -2.6,0 -0.2,0 -0.2,0 -0.4,-0.2 -0.1,-0.1 -0.5,-0.5 -2.3,-0.1 -1.8,0.3 -5.2,1.3 -8.5,1.1 -3.3,-0.1 -6.7,-1.5 -9,-1.8 -2.3,-0.3 -3.7,0.3 -5.8,0.2 -2.2,-0.2 -5.2,-1.2 -7.7,-1.2 -2.5,0 -4.5,1 -5.5,1.5 -1,0.5 -1,0.5 -2.7,0.8 -1.6,0.4 -5,1 -7.1,1.9 -2.2,0.8 -3.2,1.8 -4.5,2.5 -1.4,0.6 -3,1 -5.2,0.1 -2.2,-0.8 -4.8,-2.8 -6.2,-4 -1.3,-1.1 -1.3,-1.5 -2.1,-2.5 -0.9,-1 -2.5,-2.6 -5,-3.1 -2.5,-0.5 -5.9,0.1 -8.2,1.3 -2.3,1.2 -3.7,2.8 -6.2,3.3 -2.5,0.5 -6.1,-0.1 -8.5,0.2 -2.3,0.3 -3.3,1.7 -6.1,1.3 -2.9,-0.3 -7.5,-2.3 -10,-3.1 -2.5,-0.9 -2.9,-0.5 -3,0.6 -0.2,1.2 -0.2,3.2 -1,5.4 -0.9,2.1 -2.5,4.5 -3.9,6 -1.3,1.5 -2.3,2.1 -3.1,2.3 -0.9,0.2 -1.5,-0.2 -2.7,-1.2 -1.2,-1 -2.8,-2.6 -3.7,-4.3 -0.8,-1.7 -0.8,-3.3 -2,-5.5 -1.1,-2.2 -3.5,-4.8 -5.5,-6.2 -2,-1.3 -3.6,-1.3 -4.6,-1.3 -1,0 -1.4,0 -3.4,-0.3 -2,-0.4 -5.6,-1 -8.3,-1 -2.7,0 -4.3,0.6 -5.3,1.1 -1,0.5 -1.4,0.9 -2.9,2.4 -1.5,1.5 -4.1,4.1 -6.8,5.3 -2.7,1.2 -5.3,0.8 -7.3,1.2 -2,0.3 -3.4,1.3 -5.5,1.3 -2.2,0 -5.2,-1 -7.4,-1.2 -2.1,-0.1 -3.5,0.5 -5.8,0 -2.3,-0.5 -5.7,-2.1 -7.3,-4.5 -1.7,-2.3 -1.7,-5.3 -2.9,-7.1 -1.1,-1.9 -3.5,-2.5 -5,-3.4 -1.5,-0.8 -2.1,-1.8 -4.3,-2.8 -2.2,-1 -5.8,-2 -8,-2.8 -2.2,-0.9 -2.8,-1.5 -4.3,-1.7 -1.5,-0.2 -3.9,0.2 -6.4,-0.3 -2.5,-0.5 -5.1,-1.9 -6.5,-2.5 -1.3,-0.7 -1.3,-0.7 -3.1,-1.4 -1.9,-0.6 -5.5,-2 -7.7,-3.1 -2.2,-1.2 -2.8,-2.2 -4.3,-2.9 -1.5,-0.6 -3.9,-1 -6.2,0.5 -2.3,1.5 -4.7,4.9 -7,6.7 -2.3,1.8 -4.7,2.2 -6.2,2.2 -1.5,0 -2.1,-0.4 -2.5,-0.7 -0.3,-0.3 -0.3,-0.7 -1.5,-1.5 -1.1,-0.8 -3.5,-2.2 -4.8,-3 -1.3,-0.8 -1.7,-1.2 -3.7,-2.8 -2,-1.7 -5.6,-4.7 -8,-6 -2.3,-1.4 -3.3,-1 -4.1,-1 -0.9,0 -1.5,-0.4 -3.7,-0.2 -2.2,0.2 -5.8,0.8 -8,1.7 -2.2,0.8 -2.8,1.8 -5.2,2.5 -2.3,0.6 -6.3,1 -9,0.8 -2.6,-0.2 -4,-0.8 -6,-1.3 -2,-0.5 -4.6,-0.9 -6.1,-0.7 -1.5,0.2 -1.9,0.8 -3.2,1.7 -1.3,0.8 -3.7,1.8 -5.8,3.5 -2.2,1.6 -4.2,4 -6.2,5.6 -2,1.7 -4,2.7 -6.2,1.5 -2.1,-1.1 -4.5,-4.5 -6.1,-6.3 -1.7,-1.8 -2.7,-2.2 -4.4,-1.7 -1.6,0.5 -4,1.9 -5.3,2.9"),S(K,"id","island_3"),S(K,"data-f","3"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 2108.5,85 c -1.5,1.3 -3.5,3.7 -4.5,5.3 -1,1.7 -1,2.7 -1.3,3.5 -0.4,0.9 -1,1.5 -3,2.4 -2,0.8 -5.4,1.8 -7.4,2.1 -2,0.4 -2.6,0 -3.8,0.2 -1.2,0.2 -2.8,0.8 -4.8,1 -2,0.2 -4.4,-0.2 -5.9,-0.2 -1.5,0 -2.1,0.4 -3.5,0.5 -1.3,0.2 -3.3,0.2 -5.1,1.4 -1.9,1.1 -3.5,3.5 -5.7,4.8 -2.2,1.3 -4.8,1.7 -6.5,2.3 -1.7,0.7 -2.3,1.7 -4.2,2.4 -1.8,0.6 -4.8,1 -6.8,1.8 -2,0.8 -3,2.2 -3.5,3.2 -0.5,1 -0.5,1.6 -1.8,3.3 -1.4,1.7 -4,4.3 -5.4,6.8 -1.3,2.5 -1.3,4.9 -1.6,6.4 -0.4,1.5 -1,2.1 -1.5,3.8 -0.5,1.7 -0.9,4.3 -2.4,6.7 -1.5,2.3 -4.1,4.3 -6.3,5.5 -2.2,1.1 -3.8,1.5 -4.7,1.6 -0.8,0.2 -0.8,0.2 -2.3,0 -1.5,-0.1 -4.5,-0.5 -6.2,-0.5 -1.6,0 -2,0.4 -2.6,0.4 -0.7,0 -1.7,-0.4 -3.7,-0.2 -2,0.2 -5,0.8 -7,1 -2,0.2 -3,-0.2 -4.8,0 -1.9,0.2 -4.5,0.8 -6.9,0.8 -2.3,0 -4.3,-0.6 -5.8,-0.8 -1.5,-0.2 -2.5,0.2 -4.2,0 -1.6,-0.2 -4,-0.8 -5.3,-1 -1.3,-0.2 -1.7,0.2 -3.2,-0.2 -1.5,-0.3 -4.1,-1.3 -5.8,-1.3 -1.7,0 -2.3,1 -4.8,1.5 -2.5,0.5 -6.9,0.5 -9,-0.2 -2.2,-0.6 -2.2,-2 -1.2,-3.6 1,-1.7 3,-3.7 4,-4.9 1,-1.1 1,-1.5 1,-3.8 0,-2.3 0,-6.7 -0.3,-9.3 -0.4,-2.7 -1,-3.7 -2.4,-4.4 -1.3,-0.6 -3.3,-1 -4.8,-1.6 -1.5,-0.7 -2.5,-1.7 -4.5,-2.2 -2,-0.5 -5,-0.5 -7,-0.8 -2,-0.4 -3,-1 -5.2,-1.5 -2.1,-0.5 -5.5,-0.9 -7.6,-0.9 -2.2,0 -3.2,0.4 -3.9,0.4 -0.6,0 -1,-0.4 -1.8,-0.4 -0.8,0 -2.2,0.4 -3.7,1.4 -1.5,1 -3.1,2.6 -5.3,3.8 -2.2,1.2 -4.8,1.8 -6.7,3.3 -1.8,1.5 -2.8,3.9 -4.3,5.5 -1.5,1.7 -3.5,2.7 -4.7,3.9 -1.1,1.1 -1.5,2.5 -3,4.3 -1.5,1.8 -4.1,4.2 -5.6,5.3 -1.5,1.2 -1.9,1.2 -3,2.5 -1.2,1.4 -3.2,4 -5.5,5.5 -2.4,1.5 -5,1.9 -6.5,2.2 -1.5,0.3 -1.9,0.7 -1.5,2.3 0.3,1.7 1.3,4.7 1.1,7.4 -0.1,2.6 -1.5,5 -2.1,7.3 -0.7,2.3 -0.7,4.7 -0.4,6.2 0.4,1.5 1,2.1 1.5,3.1 0.5,1 0.9,2.4 1.2,3.7 0.3,1.3 0.7,2.7 2.2,4.3 1.5,1.7 4.1,3.7 5.5,5.7 1.3,2 1.3,4 1.3,5 0,1 0,1 2.3,1.7 2.4,0.6 7,2 9.7,2.1 2.7,0.2 3.3,-0.8 5.7,-1 2.3,-0.1 6.3,0.5 8.5,0.5 2.1,0 2.5,-0.6 4.6,-0.8 2.2,-0.2 6.2,0.2 7.4,2.2 1.1,2 -0.5,5.6 0.6,7.6 1.2,2 5.2,2.4 8.4,3.5 3.1,1.2 5.5,3.2 6.6,4.4 1.2,1.1 1.2,1.5 1.5,2.8 0.4,1.3 1,3.7 1.2,5.3 0.2,1.7 -0.2,2.7 0.2,4.4 0.3,1.6 1.3,4 1.6,6.5 0.4,2.5 0,5.1 -0.1,6.5 -0.2,1.3 -0.2,1.3 -0.2,2.3 0,1 0,3 0.8,5 0.9,2 2.5,4 3.2,6.7 0.7,2.6 0.3,6 1.8,8 1.5,2 4.9,2.6 6.4,5.1 1.5,2.5 1.1,6.9 1,9.2 -0.2,2.3 -0.2,2.7 -0.5,3.2 -0.4,0.5 -1,1.1 -2.5,2.3 -1.5,1.2 -3.9,2.8 -5.4,4.3 -1.5,1.5 -2.1,2.9 -4,4.5 -1.8,1.7 -4.8,3.7 -7,4.7 -2.1,1 -3.5,1 -4.5,1.2 -1,0.1 -1.6,0.5 -3.8,0.5 -2.2,0 -5.8,-0.4 -8.2,-0.2 -2.3,0.2 -3.3,0.8 -5.1,1 -1.9,0.2 -4.5,-0.2 -5.9,-0.3 -1.3,-0.2 -1.3,-0.2 -3.1,0.6 -1.9,0.9 -5.5,2.5 -7.5,3.7 -2,1.2 -2.4,1.8 -3.7,3 -1.3,1.2 -3.7,2.8 -6,3.7 -2.3,0.8 -4.7,0.8 -5.8,0.8 -1.2,0 -1.2,0 -2.7,0.2 -1.5,0.1 -4.5,0.5 -6.7,0.5 -2.1,0 -3.5,-0.4 -5.3,-0.2 -1.8,0.2 -4.2,0.8 -6.5,1 -2.3,0.2 -4.7,-0.2 -6.7,0 -2,0.2 -3.6,0.8 -5,1.2 -1.3,0.3 -2.3,0.3 -3.3,0.6 -1,0.4 -2,1 -3,2.5 -1,1.5 -2,3.9 -2,6.2 0,2.3 1,4.7 1.2,6.5 0.1,1.8 -0.5,3.2 -0.9,4.7 -0.3,1.5 -0.3,3.1 -1.3,4.8 -1,1.7 -3,3.3 -4.2,4.2 -1.1,0.8 -1.5,0.8 -2.6,2 -1.2,1.1 -3.2,3.5 -4.4,4.6 -1.1,1.2 -1.5,1.2 -2.1,1 -0.7,-0.1 -1.7,-0.5 -4,0.4 -2.4,0.8 -6,2.8 -8.4,3.3 -2.3,0.5 -3.3,-0.5 -4.6,-1 -1.4,-0.5 -3,-0.5 -4.4,-1.2 -1.3,-0.6 -2.3,-2 -4.1,-2.8 -1.9,-0.8 -4.5,-1.2 -6.4,-0.3 -1.8,0.8 -2.8,2.8 -5,3.3 -2.1,0.5 -5.5,-0.5 -7.8,-0.7 -2.3,-0.1 -3.7,0.5 -5.3,0.7 -1.7,0.2 -3.7,-0.2 -5.5,0 -1.9,0.2 -3.5,0.8 -4.5,1 -1,0.2 -1.4,-0.2 -2,-0.5 -0.7,-0.3 -1.7,-0.7 -2.4,-1 -0.6,-0.3 -1,-0.7 -3,-1.8 -2,-1.2 -5.6,-3.2 -8,-4.2 -2.3,-1 -3.3,-1 -5.5,-1.8 -2.1,-0.9 -5.5,-2.5 -7.5,-3.2 -2,-0.7 -2.6,-0.3 -4.6,-0.5 -2,-0.2 -5.4,-0.8 -8.2,0.8 -2.8,1.7 -5.2,5.7 -6.8,7.7 -1.7,2 -2.7,2 -4,1.2 -1.4,-0.9 -3,-2.5 -5.5,-3.4 -2.5,-0.8 -5.9,-0.8 -8,-1.3 -2.2,-0.5 -3.2,-1.5 -4.9,-2.2 -1.6,-0.6 -4,-1 -6.1,0.4 -2.2,1.3 -4.2,4.3 -6.7,5.8 -2.5,1.5 -5.5,1.5 -7.3,1.8 -1.9,0.4 -2.5,1 -2.9,1.5 -0.3,0.5 -0.3,0.9 -1.1,2 -0.9,1.2 -2.5,3.2 -5.2,4.4 -2.7,1.1 -6.3,1.5 -8.5,1.8 -2.2,0.3 -2.8,0.7 -4.5,0.8 -1.7,0.2 -4.3,0.2 -6.3,0.5 -2,0.4 -3.4,1 -5.4,1.2 -2,0.2 -4.6,-0.2 -6.5,-0.2 -1.8,0 -2.8,0.4 -3.6,1.5 -0.9,1.2 -1.5,3.2 -3,5 -1.5,1.9 -3.9,3.5 -5.2,5.7 -1.3,2.2 -1.7,4.8 -3.2,6.5 -1.5,1.7 -4.1,2.3 -5.8,3.3 -1.7,1 -2.3,2.4 -3.8,3 -1.5,0.7 -3.9,0.7 -6.4,1.7 -2.5,1 -5.1,3 -6.6,4 -1.5,1 -1.9,1 -3.4,0 -1.5,-1 -4.1,-3 -5.6,-4.2 -1.5,-1.1 -1.9,-1.5 -3.5,-2.6 -1.7,-1.2 -4.7,-3.2 -6.2,-4.2 -1.5,-1 -1.5,-1 -2.5,-0.7 -1,0.4 -3,1 -5.2,1 -2.1,0 -4.5,-0.6 -6,-1 -1.5,-0.3 -2.1,-0.3 -4,0.7 -1.8,1 -4.8,3 -6.3,4.3 -1.5,1.4 -1.5,2 -2.8,3.4 -1.4,1.3 -4,3.3 -5.7,5.3 -1.7,2 -2.3,4 -2.5,5.5 -0.2,1.5 0.2,2.5 -0.3,5.2 -0.5,2.6 -1.9,7 -4.2,9 -2.3,2 -5.7,1.6 -8.2,0.6 -2.5,-1 -4.1,-2.6 -6.1,-3.8 -2,-1.2 -4.4,-1.8 -6,-0.2 -1.7,1.7 -2.7,5.7 -1.4,8.7 1.4,3 5,5 6.9,6 1.8,1 1.8,1 0.5,2 -1.4,1 -4,3 -6,3.8 -2,0.9 -3.4,0.5 -5,1 -1.7,0.5 -3.7,1.9 -5.2,2.4 -1.5,0.5 -2.5,0.1 -4.3,0.8 -1.9,0.7 -4.5,2.3 -6,3.7 -1.5,1.3 -1.9,2.3 -1.4,4.1 0.5,1.9 1.9,4.5 3,6 1.2,1.5 2.2,1.9 3.4,2.9 1.1,1 2.5,2.6 2.3,5 -0.2,2.3 -1.8,5.3 -4.3,6.8 -2.5,1.5 -5.9,1.5 -8,2.2 -2.2,0.6 -3.2,2 -5.2,2.5 -2,0.5 -5,0.1 -7.2,1 -2.1,0.8 -3.5,2.8 -4.5,4 -1,1.1 -1.6,1.5 -2.5,2.6 -0.8,1.2 -1.8,3.2 -3,4.5 -1.1,1.4 -2.5,2 -3.8,3.9 -1.3,1.8 -2.7,4.8 -3.3,6.3 -0.7,1.5 -0.7,1.5 0.3,2.5 1,1 3,3 4,4.7 1,1.6 1,3 2,4.8 1,1.8 3,4.2 4,6.2 1,2 1,3.6 0.3,4.6 -0.6,1 -2,1.4 -3.3,3.2 -1.3,1.8 -2.7,5.2 -2.8,7.3 -0.2,2.2 0.8,3.2 0.5,5.4 -0.4,2.1 -2,5.5 -3,7.1 -1,1.7 -1.4,1.7 -2.7,3.7 -1.3,2 -3.7,6 -4.8,8 -1.2,2 -1.2,2 -1.5,3.3 -0.4,1.4 -1,4 0.3,7 1.3,3 4.7,6.4 8,7.2 3.3,0.8 6.7,-0.8 8.7,-1.7 2,-0.8 2.6,-0.8 4.1,-2 1.5,-1.1 3.9,-3.5 5,-4.6 1.2,-1.2 1.2,-1.2 2.9,-2.7 1.6,-1.5 5,-4.5 7.6,-5.7 2.7,-1.1 4.7,-0.5 6.7,-0.8 2,-0.3 4,-1.7 5.7,-2.2 1.6,-0.5 3,-0.1 4.1,-0.3 1.2,-0.2 2.2,-0.8 4.5,0.2 2.4,1 6,3.6 8.2,4.8 2.2,1.2 2.8,0.8 4.5,0.5 1.7,-0.3 4.3,-0.7 5.8,-0.8 1.5,-0.2 1.9,-0.2 3.5,-0.5 1.7,-0.4 4.7,-1 6.7,-1.9 2,-0.8 3,-1.8 3.5,-2.6 0.5,-0.9 0.5,-1.5 2.7,-3 2.1,-1.5 6.5,-3.9 9.3,-4.5 2.8,-0.7 4.2,0.3 5,0.8 0.8,0.5 1.2,0.5 2.5,1.3 1.3,0.9 3.7,2.5 5.5,3.4 1.8,0.8 3.2,0.8 5,0.3 1.8,-0.5 4.2,-1.5 5.7,-2.8 1.5,-1.4 2.1,-3 3.8,-4.2 1.7,-1.2 4.3,-1.8 6.7,-1.8 2.3,0 4.3,0.6 6.6,0.1 2.4,-0.5 5,-2.1 8,-2.5 3,-0.3 6.4,0.7 8.4,0.9 2,0.1 2.6,-0.5 3.8,-1 1.2,-0.5 2.8,-0.9 4.2,-1.4 1.3,-0.5 2.3,-1.1 3,-1.6 0.6,-0.5 1,-0.9 2.5,-0.5 1.5,0.3 4.1,1.3 6.6,1.1 2.5,-0.1 4.9,-1.5 7,-0.6 2.2,0.8 4.2,3.8 6.2,5.1 2,1.4 4,1 5.8,1.2 1.9,0.2 3.5,0.8 4.7,1 1.2,0.2 1.8,-0.2 2.5,-1.2 0.7,-1 1.3,-2.6 3.7,-4.6 2.3,-2 6.3,-4.4 8.5,-5.5 2.1,-1.2 2.5,-1.2 3.6,-2 1.2,-0.9 3.2,-2.5 5.4,-3.2 2.1,-0.7 4.5,-0.3 6,-0.5 1.5,-0.2 2.1,-0.8 4.6,-1.3 2.5,-0.5 6.9,-0.9 9.7,-0.5 2.8,0.3 4.2,1.3 5.7,1 1.5,-0.4 3.1,-2 5.6,-2.4 2.5,-0.3 5.9,0.7 8.7,0.5 2.8,-0.1 5.2,-1.5 6.5,-2.1 1.3,-0.7 1.7,-0.7 2.3,-0.4 0.7,0.4 1.7,1 2.4,1.4 0.6,0.3 1,0.3 2.3,-0.2 1.3,-0.5 3.7,-1.5 5,-2.3 1.3,-0.9 1.7,-1.5 3.3,-2.2 1.7,-0.7 4.7,-1.3 7.2,-3.2 2.5,-1.8 4.5,-4.8 5.3,-6.8 0.9,-2 0.5,-3 0.5,-5 0,-2 0.4,-5 0.7,-6.8 0.3,-1.9 0.7,-2.5 2.2,-3.2 1.5,-0.7 4.1,-1.3 6.5,-1.5 2.3,-0.2 4.3,0.2 5.8,0.2 1.5,0 2.5,-0.4 4,-0.7 1.5,-0.3 3.5,-0.7 5.3,-2 1.9,-1.3 3.5,-3.7 4.2,-5.5 0.7,-1.8 0.3,-3.2 1.3,-5.2 1,-2 3.4,-4.6 5.5,-6 2.2,-1.3 4.2,-1.3 5.7,-1.6 1.5,-0.4 2.5,-1 4.5,-1.4 2,-0.3 5,-0.3 6.8,-0.5 1.9,-0.1 2.5,-0.5 2.9,-1 0.3,-0.5 0.3,-1.1 2,-2.1 1.6,-1 5,-2.4 7.8,-2 2.8,0.3 5.2,2.3 7,3 1.8,0.6 3.2,0 5.3,0.5 2.2,0.5 5.2,2.1 6.9,3 1.6,0.8 2,0.8 3.3,-0.7 1.3,-1.5 3.7,-4.5 4.8,-6.3 1.2,-1.9 1.2,-2.5 1.9,-3.7 0.6,-1.2 2,-2.8 3.6,-3.7 1.7,-0.8 3.7,-0.8 5.5,-0.1 1.9,0.6 3.5,2 6,2.5 2.5,0.5 5.9,0.1 7.7,-0.2 1.8,-0.3 2.2,-0.7 2.2,-2.2 0,-1.5 -0.4,-4.1 1.1,-7 1.5,-2.8 4.9,-5.8 7.2,-7 2.3,-1.1 3.7,-0.5 6.2,-0.8 2.5,-0.3 6.1,-1.7 8.3,-2.2 2.2,-0.5 2.8,-0.1 4,1.4 1.2,1.5 2.8,4.1 3.2,6.3 0.3,2.2 -0.7,3.8 -0.9,6.2 -0.1,2.3 0.5,5.3 0.5,7.1 0,1.9 -0.6,2.5 -1,4 -0.3,1.5 -0.3,3.9 0.5,6.2 0.9,2.3 2.5,4.7 3.4,6.2 0.8,1.5 0.8,2.1 1,3.1 0.1,1 0.5,2.4 1,3.2 0.5,0.8 1.1,1.2 3,1.5 1.8,0.3 4.8,0.7 6.3,0.8 1.5,0.2 1.5,0.2 3.2,0.9 1.6,0.6 5,2 7.1,1.6 2.2,-0.3 3.2,-2.3 4.7,-3.3 1.5,-1 3.5,-1 5.2,-1.7 1.6,-0.6 3,-2 3.6,-2.8 0.7,-0.8 0.7,-1.2 1.9,-2.3 1.1,-1.2 3.5,-3.2 4.6,-5.5 1.2,-2.4 1.2,-5 2.4,-6.9 1.1,-1.8 3.5,-2.8 5.1,-5 1.7,-2.1 2.7,-5.5 3.9,-7.6 1.1,-2.2 2.5,-3.2 3.5,-4.2 1,-1 1.6,-2 3.3,-3.5 1.7,-1.5 4.3,-3.5 6.7,-4.7 2.3,-1.1 4.3,-1.5 5.6,-1.6 1.4,-0.2 2,-0.2 3.9,0 1.8,0.1 4.8,0.5 7,0.5 2.1,0 3.5,-0.4 4.1,-0.5 0.7,-0.2 0.7,-0.2 2.4,1.3 1.6,1.5 5,4.5 6.8,6.3 1.8,1.9 2.2,2.5 3.3,3.5 1.2,1 3.2,2.4 4.9,4.4 1.6,2 3,4.6 3.6,6.5 0.7,1.8 0.7,2.8 0.9,3.8 0.1,1 0.5,2 1.3,2.7 0.8,0.6 2.2,1 4.3,1 2.2,0 5.2,-0.4 7.2,-1.4 2,-1 3,-2.6 5,-3.5 2,-0.8 5,-0.8 7,-1.8 2,-1 3,-3 5,-3.8 2,-0.9 5,-0.5 7,-1 2,-0.5 3,-1.9 4.7,-2.5 1.6,-0.7 4,-0.7 5.5,-1 1.5,-0.4 2.1,-1 4.1,-1.4 2,-0.3 5.4,-0.3 7.2,-0.5 1.8,-0.1 2.2,-0.5 2.3,-0.6 0.2,-0.2 0.2,-0.2 1.5,-1 1.4,-0.9 4,-2.5 5.5,-3.4 1.5,-0.8 1.9,-0.8 3.4,-1.8 1.5,-1 4.1,-3 6.5,-3.7 2.3,-0.6 4.3,0 6.1,-0.1 1.9,-0.2 3.5,-1.2 4.4,-2.7 0.8,-1.5 0.8,-3.5 0.3,-5.2 -0.5,-1.6 -1.5,-3 -2,-4.6 -0.5,-1.7 -0.5,-3.7 1.2,-5.2 1.6,-1.5 5,-2.5 7,-3.7 2,-1.1 2.6,-2.5 3.8,-3.6 1.2,-1.2 2.8,-2.2 4,-3.2 1.2,-1 1.8,-2 2.3,-2.7 0.5,-0.6 0.9,-1 3,-0.6 2.2,0.3 6.2,1.3 8.5,2 2.4,0.6 3,1 2.9,2.6 -0.2,1.7 -1.2,4.7 -3,6.9 -1.9,2.1 -4.5,3.5 -6.5,5.1 -2,1.7 -3.4,3.7 -3.9,4.9 -0.5,1.1 -0.1,1.5 -0.3,2.8 -0.2,1.3 -0.8,3.7 -0.8,5.5 0,1.8 0.6,3.2 0.8,4.5 0.2,1.3 -0.2,2.7 0.3,4.7 0.5,2 1.9,4.6 3.2,6.3 1.3,1.7 2.7,2.3 3.5,3 0.8,0.7 1.2,1.3 0.8,2.8 -0.3,1.5 -1.3,3.9 -2.6,5.2 -1.4,1.3 -3,1.7 -4.5,2.5 -1.5,0.8 -2.9,2.2 -1.9,4.5 1,2.3 4.4,5.7 6.4,7.3 2,1.7 2.6,1.7 3.3,2.4 0.7,0.6 1.3,2 3.5,2.8 2.2,0.8 5.8,1.2 8,0.8 2.2,-0.3 2.8,-1.3 5.7,-1 2.8,0.4 7.8,2 10.3,2.9 2.5,0.8 2.5,0.8 3,1.3 0.5,0.5 1.5,1.5 3.8,1.3 2.4,-0.1 6,-1.5 8,-2.6 2,-1.2 2.4,-2.2 4.4,-3.5 2,-1.4 5.6,-3 8.3,-3.2 2.7,-0.2 4.3,1.2 5.3,2.2 1,1 1.4,1.6 2.7,2.8 1.3,1.2 3.7,2.8 4.7,4.5 1,1.7 0.6,3.3 1.3,5.2 0.7,1.8 2.3,3.8 1.8,6.3 -0.5,2.5 -3.1,5.5 -4.1,8 -1,2.5 -0.4,4.5 0,5.8 0.3,1.4 0.3,2 0.5,3 0.1,1 0.5,2.4 0.6,3 0.2,0.7 0.2,0.7 1.5,3 1.4,2.4 4,7 6.7,9.4 2.7,2.3 5.3,2.3 6.8,2.5 1.5,0.1 1.9,0.5 3.4,1.1 1.5,0.7 4.1,1.7 6.3,2 2.2,0.4 3.8,0 5.3,0.2 1.5,0.2 2.9,0.8 3.5,1.2 0.7,0.3 0.7,0.3 2.2,1.8 1.5,1.5 4.5,4.5 6.2,6 1.6,1.5 2,1.5 3,2.8 1,1.4 2.6,4 4.5,5.7 1.8,1.7 3.8,2.3 5.5,2 1.6,-0.3 3,-1.7 5,-1.8 2,-0.2 4.6,0.8 6.8,1.1 2.2,0.4 3.8,0 5.5,0.4 1.7,0.3 3.3,1.3 5.2,1.6 1.8,0.4 3.8,0 6.1,1.2 2.4,1.2 5,3.8 6.7,5.2 1.7,1.3 2.3,1.3 3,1.3 0.7,0 1.3,0 3.7,0.7 2.3,0.6 6.3,2 9,2.5 2.6,0.5 4,0.1 5.1,0 1.2,-0.2 2.2,-0.2 3.5,0.1 1.4,0.4 3,1 4,1.7 1,0.7 1.4,1.3 2.4,2.2 1,0.8 2.6,1.8 4.5,4.3 1.8,2.5 3.8,6.5 5.6,8.7 1.9,2.1 3.5,2.5 5,3.5 1.5,1 2.9,2.6 4.4,3.8 1.5,1.2 3.1,1.8 4.3,2.7 1.2,0.8 1.8,1.8 2.7,2.5 0.8,0.6 1.8,1 3.1,3 1.4,2 3,5.6 4,7.5 1,1.8 1.4,1.8 2.9,3.6 1.5,1.9 4.1,5.5 7,7.2 2.8,1.7 5.8,1.3 7.3,1.2 1.5,-0.2 1.5,-0.2 3.3,-0.5 1.9,-0.4 5.5,-1 8.4,-0.9 2.8,0.2 4.8,1.2 6.5,1.4 1.6,0.1 3,-0.5 6,-0.7 3,-0.2 7.6,0.2 10,0.3 2.3,0.2 2.3,0.2 2.3,0.2 0,0 0,0 0,0 0,0 0,0 0,-11.5 0,-11.5 0,-34.5 0,-46 0,-11.5 0,-11.5 0,-11.5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-38.4 0,-38.4 0,-115.3 0,-153.7 0,-38.4 0,-38.4 0,-38.4 0,0 0,0 -0.5,-0.2 -0.5,-0.3 -1.5,-0.8 -3.5,-0.7 -2,0.1 -5,0.7 -6.7,1.1 -1.6,0.3 -2,0.3 -4,0.3 -2,0 -5.6,0 -8.3,-1 -2.7,-1 -4.3,-3 -5.2,-4.5 -0.8,-1.5 -0.8,-2.5 -1.5,-3.5 -0.6,-1 -2,-2 -3,-4.2 -1,-2.1 -1.6,-5.5 -2.3,-7.5 -0.7,-2 -1.3,-2.6 -2.3,-3.1 -1,-0.5 -2.4,-0.9 -4.4,-0.7 -2,0.2 -4.6,0.8 -6.1,1 -1.5,0.2 -1.9,-0.2 -3.5,0.2 -1.7,0.3 -4.7,1.3 -6.9,2.5 -2.1,1.1 -3.5,2.5 -4.8,3.3 -1.3,0.8 -2.7,1.2 -3.7,1.5 -1,0.3 -1.6,0.7 -2.8,2.2 -1.2,1.5 -2.8,4.1 -3.7,5.5 -0.8,1.3 -0.8,1.3 -2.6,2.8 -1.9,1.5 -5.5,4.5 -7.4,6.8 -1.8,2.4 -1.8,4 -1.8,5 0,1 0,1.4 0.2,3.5 0.1,2.2 0.5,6.2 0.3,8.7 -0.2,2.5 -0.8,3.5 -2.2,4.8 -1.3,1.4 -3.3,3 -4.5,4 -1.1,1 -1.5,1.4 -2.8,3 -1.3,1.7 -3.7,4.7 -4.5,6.7 -0.8,2 -0.2,3 0,5.2 0.2,2.1 -0.2,5.5 0,7.5 0.2,2 0.8,2.6 1,4.8 0.2,2.2 -0.2,5.8 1.2,7.3 1.3,1.5 4.3,0.9 6.1,2.2 1.9,1.3 2.5,4.7 2.5,6.7 0,2 -0.6,2.6 -2.1,3 -1.5,0.3 -3.9,0.3 -5.7,-0.9 -1.8,-1.1 -3.2,-3.5 -5.5,-5 -2.3,-1.5 -5.7,-2.1 -7.8,-3.6 -2.2,-1.5 -3.2,-3.9 -4.4,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3.8 -0.8,-1.7 -1.2,-4.3 -1.2,-6 0,-1.7 0.4,-2.3 0,-4.5 -0.3,-2.2 -1.3,-5.8 -2.6,-8 -1.4,-2.2 -3,-2.8 -4.4,-4.3 -1.3,-1.5 -2.3,-3.9 -3.5,-5.4 -1.1,-1.5 -2.5,-2.1 -3.3,-3 -0.8,-0.8 -1.2,-1.8 -0.7,-4 0.5,-2.1 1.9,-5.5 2.2,-8.8 0.3,-3.3 -0.3,-6.7 -0.7,-8.5 -0.3,-1.8 -0.3,-2.2 -1.3,-2.5 -1,-0.3 -3,-0.7 -4.7,-0.7 -1.6,0 -3,0.4 -4.8,0 -1.8,-0.3 -4.2,-1.3 -5.8,-3.1 -1.7,-1.9 -2.7,-4.5 -3,-6.4 -0.4,-1.8 0,-2.8 -0.5,-4.5 -0.5,-1.6 -1.9,-4 -4.4,-5 -2.5,-1 -6.1,-0.6 -8.3,-0.8 -2.2,-0.2 -2.8,-0.8 -4.3,-0.5 -1.5,0.3 -3.9,1.7 -6.4,1.8 -2.5,0.2 -5.1,-0.8 -6.6,-1.6 -1.5,-0.9 -1.9,-1.5 -3.9,-1.2 -2,0.3 -5.6,1.7 -7.5,3.8 -1.8,2.2 -1.8,5.2 -2.1,7 -0.4,1.9 -1,2.5 -2.7,3 -1.7,0.5 -4.3,0.9 -5.8,1.5 -1.5,0.7 -1.9,1.7 -4,3.2 -2.2,1.5 -6.2,3.5 -8.4,4.5 -2.1,1 -2.5,1 -2.8,-1.2 -0.3,-2.1 -0.7,-6.5 -0.7,-8.8 0,-2.3 0.4,-2.7 0.4,-3.8 0,-1.2 -0.4,-3.2 -1.7,-5 -1.3,-1.9 -3.7,-3.5 -6,-3 -2.3,0.5 -4.7,3.1 -7,4 -2.3,0.8 -4.7,-0.2 -6.8,0 -2.2,0.1 -4.2,1.5 -5.5,2.1 -1.4,0.7 -2,0.7 -3.2,-0.1 -1.2,-0.9 -2.8,-2.5 -4.5,-3.2 -1.7,-0.7 -3.3,-0.3 -5.7,-1.5 -2.3,-1.2 -5.3,-3.8 -7.8,-4.3 -2.5,-0.5 -4.5,1.1 -5.8,2 -1.4,0.8 -2,0.8 -3.2,0.1 -1.2,-0.6 -2.8,-2 -3.8,-3.5 -1,-1.5 -1.4,-3.1 -0.7,-5.3 0.7,-2.2 2.3,-4.8 3.7,-6.3 1.3,-1.5 2.3,-1.9 3.3,-3.7 1,-1.8 2,-5.2 3.2,-7.3 1.1,-2.2 2.5,-3.2 3,-5 0.5,-1.9 0.1,-4.5 0,-6 -0.2,-1.5 -0.2,-1.9 -0.2,-3.2 0,-1.3 0,-3.7 1,-6 1,-2.3 3,-4.7 4.5,-6 1.5,-1.3 2.5,-1.7 3.7,-3.5 1.1,-1.8 2.5,-5.2 3.5,-7.2 1,-2 1.6,-2.6 2.3,-3.8 0.7,-1.2 1.3,-2.8 2.5,-3.8 1.2,-1 2.8,-1.4 5,-1.2 2.2,0.2 4.8,0.8 6.7,1.8 1.8,1 2.8,2.4 4.5,3.4 1.6,1 4,1.6 5.6,2.3 1.7,0.7 2.7,1.3 3.2,1.7 0.5,0.3 0.5,0.3 1.8,-0.2 1.4,-0.5 4,-1.5 6.2,-1.7 2.2,-0.1 3.8,0.5 6,-0.1 2.2,-0.7 4.8,-2.7 6.3,-3.9 1.5,-1.1 1.9,-1.5 3.2,-1.5 1.3,0 3.7,0.4 6.2,-0.5 2.5,-0.8 5.1,-2.8 6.5,-3.8 1.3,-1 1.3,-1 2.1,-1.8 0.9,-0.9 2.5,-2.5 4.9,-2.9 2.3,-0.3 5.3,0.7 7.5,2 2.1,1.4 3.5,3 4.6,4.2 1.2,1.2 2.2,1.8 3.5,3 1.4,1.2 3,2.8 4.4,3.5 1.3,0.7 2.3,0.3 3.5,0.5 1.1,0.2 2.5,0.8 5.1,0.8 2.7,0 6.7,-0.6 9.2,-2.8 2.5,-2.2 3.5,-5.8 5,-8.2 1.5,-2.3 3.5,-3.3 4.8,-4.5 1.4,-1.1 2,-2.5 3.9,-3.8 1.8,-1.3 4.8,-2.7 7.3,-2.7 2.5,0 4.5,1.4 7.2,1.9 2.6,0.5 6,0.1 7.6,0 1.7,-0.2 1.7,-0.2 2.7,0.1 1,0.4 3,1 4.5,3 1.5,2 2.5,5.4 4.3,7.4 1.9,2 4.5,2.6 6.2,3.8 1.7,1.2 2.3,2.8 4,4.2 1.7,1.3 4.3,2.3 6.2,2.8 1.8,0.5 2.8,0.5 3.5,0.3 0.6,-0.1 1,-0.5 2.8,-0.8 1.8,-0.3 5.2,-0.7 7.5,-1.3 2.3,-0.7 3.7,-1.7 5.7,-1.9 2,-0.1 4.6,0.5 6.3,1.2 1.7,0.7 2.3,1.3 4.3,2.2 2,0.8 5.4,1.8 7.7,2.1 2.3,0.4 3.7,0 4.7,0 1,0 1.6,0.4 3.5,0.4 1.8,0 4.8,-0.4 6.6,-0.7 1.9,-0.3 2.5,-0.7 3.9,-0.7 1.3,0 3.3,0.4 6,0.2 2.6,-0.2 6,-0.8 9,-0.8 3,0 5.6,0.6 7,1 1.3,0.3 1.3,0.3 1.3,0.3 0,0 0,0 0,0 0,0 0,0 0,-20.2 0,-20.2 0,-60.7 0,-80.9 0,-20.2 0,-20.2 0,-20.2 0,0 0,0 -1.3,-0.3 -1.4,-0.3 -4,-0.8 -6.9,-2.3 -2.8,-1.4 -5.8,-3.8 -7.5,-5.3 -1.6,-1.5 -2,-2.1 -3.5,-3 -1.5,-0.8 -4.1,-1.8 -6.1,-2.3 -2,-0.5 -3.4,-0.5 -5.5,1 -2.2,1.5 -5.2,4.5 -6.7,6 -1.5,1.5 -1.5,1.5 -2,2.3 -0.5,0.9 -1.5,2.5 -4,2.9 -2.5,0.3 -6.5,-0.7 -9,-0.9 -2.5,-0.1 -3.5,0.5 -5.5,-0.1 -2,-0.7 -5,-2.7 -7,-3.7 -2,-1 -3,-1 -4,-0.5 -1,0.5 -2,1.5 -2.2,4.2 -0.1,2.6 0.5,7 2.2,9.8 1.7,2.8 4.3,4.2 5.7,6.2 1.3,2 1.3,4.6 2.3,7 1,2.3 3,4.3 3.8,6.1 0.9,1.9 0.5,3.5 -1,5.4 -1.5,1.8 -4.1,3.8 -6.8,4 -2.7,0.1 -5.3,-1.5 -6.8,-2.5 -1.5,-1 -1.9,-1.4 -3.7,-2.7 -1.8,-1.3 -5.2,-3.7 -8.2,-4.3 -3,-0.7 -5.6,0.3 -7,1 -1.3,0.6 -1.3,1 -3,2 -1.6,1 -5,2.6 -6.6,3.5 -1.7,0.8 -1.7,0.8 -2.2,1.5 -0.5,0.6 -1.5,2 -3.7,3.6 -2.1,1.7 -5.5,3.7 -7.1,4.7 -1.7,1 -1.7,1 -2.2,1.7 -0.5,0.6 -1.5,2 -3.8,2.6 -2.4,0.7 -6,0.7 -8.9,-0.6 -2.8,-1.4 -4.8,-4 -6.8,-5.4 -2,-1.3 -4,-1.3 -6,-2.3 -2,-1 -4,-3 -5.3,-4 -1.4,-1 -2,-1 -2.7,-1.7 -0.7,-0.6 -1.3,-2 -1.8,-3.6 -0.5,-1.7 -0.9,-3.7 -2,-5.9 -1.2,-2.1 -3.2,-4.5 -5.2,-6.1 -2,-1.7 -4,-2.7 -5.2,-3.4 -1.1,-0.6 -1.5,-1 -2,-1.5 -0.5,-0.5 -1.1,-1.1 -2.8,-1.3 -1.7,-0.2 -4.3,0.2 -7,-0.3 -2.7,-0.5 -5.3,-1.9 -7,-3.9 -1.7,-2 -2.3,-4.6 -2.5,-6.1 -0.2,-1.5 0.2,-1.9 -0.2,-3.9 -0.3,-2 -1.3,-5.6 -3.6,-7.6 -2.4,-2 -6,-2.4 -8.4,-1.4 -2.3,1 -3.3,3.4 -6.1,5.4 -2.9,2 -7.5,3.6 -10,4.6 -2.5,1 -2.9,1.4 -3.7,1.7 -0.8,0.3 -2.2,0.7 -3.8,1 -1.7,0.3 -3.7,0.7 -4.9,0.8 -1.1,0.2 -1.5,0.2 -3.1,0.4 -1.7,0.1 -4.7,0.5 -6.7,0.5 -2,0 -3,-0.4 -3.8,-0.4 -0.9,0 -1.5,0.4 -3.5,0.4 -2,0 -5.4,-0.4 -7.9,-1.4 -2.5,-1 -4.1,-2.6 -5.1,-4.5 -1,-1.8 -1.4,-3.8 -3,-6 -1.7,-2.1 -4.7,-4.5 -7,-5.5 -2.4,-1 -4,-0.6 -5.2,-0.6 -1.2,0 -1.8,-0.4 -2.8,-1.7 -1,-1.3 -2.4,-3.7 -3.5,-5 -1.2,-1.3 -2.2,-1.7 -4,-3.5 -1.9,-1.8 -4.5,-5.2 -6.4,-6.7 -1.8,-1.5 -2.8,-1.1 -4.3,0.2"),S(K,"id","island_4"),S(K,"data-f","4"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 1164.3,156.3 c -1.3,1.4 -1.3,2 -0.3,3.5 1,1.5 3,3.9 4.2,5 1.1,1.2 1.5,1.2 2.8,-0.3 1.3,-1.5 3.7,-4.5 3.8,-7 0.2,-2.5 -1.8,-4.5 -4.1,-4.5 -2.4,0 -5,2 -6.4,3.3"),S(K,"id","island_6"),S(K,"data-f","6"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 1427,372.7 c -1,1.6 -1,2 -2.3,3.6 -1.4,1.7 -4,4.7 -6.2,6.2 -2.2,1.5 -3.8,1.5 -5,3 -1.2,1.5 -1.8,4.5 -3.5,6.8 -1.7,2.4 -4.3,4 -5.7,4.9 -1.3,0.8 -1.3,0.8 -2.6,1.8 -1.4,1 -4,3 -5.4,5.2 -1.3,2.1 -1.3,4.5 -1.5,6.1 -0.1,1.7 -0.5,2.7 -1,3.4 -0.5,0.6 -1.1,1 -2.3,2.1 -1.2,1.2 -2.8,3.2 -4.7,4.4 -1.8,1.1 -3.8,1.5 -5.6,3.5 -1.9,2 -3.5,5.6 -4.5,7.6 -1,2 -1.4,2.4 -1.4,4.2 0,1.8 0.4,5.2 -0.6,6.8 -1,1.7 -3.4,1.7 -4.9,2.7 -1.5,1 -2.1,3 -3.3,4.3 -1.2,1.4 -2.8,2 -4.3,3.5 -1.5,1.5 -2.9,3.9 -2.9,6.4 0,2.5 1.4,5.1 2.2,6.5 0.8,1.3 1.2,1.3 1.8,2 0.7,0.6 1.7,2 3.2,3 1.5,1 3.5,1.6 5,2.5 1.5,0.8 2.5,1.8 3.3,3.8 0.9,2 1.5,5 1.2,7.5 -0.3,2.5 -1.7,4.5 -2.2,6 -0.5,1.5 -0.1,2.5 1.7,4 1.8,1.5 5.2,3.5 7,5 1.8,1.5 2.2,2.5 2.8,3.3 0.7,0.9 1.7,1.5 3.7,1.7 2,0.2 5,-0.2 7.7,0.7 2.6,0.8 5,2.8 7,3.8 2,1 3.6,1 5.1,0.7 1.5,-0.4 2.9,-1 3.9,-2.4 1,-1.3 1.6,-3.3 2,-4.5 0.3,-1.1 0.3,-1.5 0.6,-3.1 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 3.2,-3.2 1.8,-0.7 4.8,-1.3 6.6,-1.5 1.9,-0.2 2.5,0.2 3.7,0.3 1.2,0.2 2.8,0.2 4.3,-0.3 1.5,-0.5 2.9,-1.5 4,-3.2 1.2,-1.6 2.2,-4 2.4,-5.8 0.1,-1.8 -0.5,-3.2 -0.7,-5.2 -0.2,-2 0.2,-4.6 -0.2,-6.8 -0.3,-2.2 -1.3,-3.8 -1.6,-5.8 -0.4,-2 0,-4.4 1.3,-6.5 1.3,-2.2 3.7,-4.2 5,-5.2 1.3,-1 1.7,-1 2.7,-0.2 1,0.9 2.6,2.5 5,3.4 2.3,0.8 5.3,0.8 7.5,-0.4 2.1,-1.1 3.5,-3.5 4.1,-5.1 0.7,-1.7 0.7,-2.7 1.2,-3.9 0.5,-1.1 1.5,-2.5 2.2,-4.1 0.6,-1.7 1,-3.7 1.3,-4.9 0.3,-1.1 0.7,-1.5 0.8,-3.1 0.2,-1.7 0.2,-4.7 0.9,-7 0.6,-2.4 2,-4 2.3,-5.9 0.3,-1.8 -0.3,-3.8 0.2,-6.1 0.5,-2.4 2.1,-5 4.6,-6.4 2.5,-1.3 5.9,-1.3 7.9,-1.5 2,-0.1 2.6,-0.5 3.3,-1.5 0.7,-1 1.3,-2.6 2.2,-3.8 0.8,-1.2 1.8,-1.8 2.6,-2.5 0.9,-0.7 1.5,-1.3 1.9,-3.2 0.3,-1.8 0.3,-4.8 -0.4,-7.3 -0.6,-2.5 -2,-4.5 -2.6,-6.2 -0.7,-1.6 -0.7,-3 -1.5,-5.3 -0.9,-2.3 -2.5,-5.7 -5.2,-6 -2.7,-0.3 -6.3,2.3 -8.2,4.3 -1.8,2 -1.8,3.4 -3.1,5.2 -1.4,1.8 -4,4.2 -6.7,5.2 -2.7,1 -5.3,0.6 -6.8,0.1 -1.5,-0.5 -1.9,-1.1 -3.2,-1.6 -1.3,-0.5 -3.7,-0.9 -6.2,-2.2 -2.5,-1.3 -5.1,-3.7 -6.6,-5.5 -1.5,-1.8 -1.9,-3.2 -3,-4.5 -1.2,-1.3 -3.2,-2.7 -5,-3.5 -1.9,-0.8 -3.5,-1.2 -5.4,0.2 -1.8,1.3 -3.8,4.3 -4.8,6"),S(K,"id","island_15"),S(K,"data-f","15"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 1821.5,506 c -1.2,0.7 -1.8,1.3 -3.5,2.2 -1.7,0.8 -4.3,1.8 -5.8,2.5 -1.5,0.6 -1.9,1 -3.2,1.6 -1.3,0.7 -3.7,1.7 -5,2.2 -1.3,0.5 -1.7,0.5 -3.5,1 -1.8,0.5 -5.2,1.5 -7,2.3 -1.8,0.9 -2.2,1.5 -4.3,1.9 -2.2,0.3 -6.2,0.3 -7.9,2.3 -1.6,2 -1,6 -1.5,8.5 -0.5,2.5 -2.1,3.5 -3.5,4.5 -1.3,1 -2.3,2 -4.1,2.2 -1.9,0.1 -4.5,-0.5 -6.7,0.8 -2.2,1.3 -3.8,4.7 -4.8,6.3 -1,1.7 -1.4,1.7 -3.2,2.5 -1.8,0.9 -5.2,2.5 -7,4.2 -1.8,1.7 -2.2,3.3 -3.3,4.5 -1.2,1.2 -3.2,1.8 -5.7,1.5 -2.5,-0.3 -5.5,-1.7 -7.7,-2.2 -2.1,-0.5 -3.5,-0.1 -4.5,0.5 -1,0.7 -1.6,1.7 -1.5,3.7 0.2,2 1.2,5 0.5,7.8 -0.6,2.9 -3,5.5 -4.1,7.2 -1.2,1.7 -1.2,2.3 -1.7,3.3 -0.5,1 -1.5,2.4 -1.3,4.4 0.1,2 1.5,4.6 4.3,5.8 2.8,1.2 7.2,0.8 9.7,1 2.5,0.2 3.1,0.8 5.1,1 2,0.2 5.4,-0.2 7.2,-0.2 1.8,0 2.2,0.4 4,-0.3 1.8,-0.7 5.2,-2.3 7,-4 1.8,-1.7 2.2,-3.3 4,-4.5 1.8,-1.2 5.2,-1.8 7.2,-2.7 2,-0.8 2.6,-1.8 4.1,-2.3 1.5,-0.5 3.9,-0.5 5.2,-0.7 1.3,-0.1 1.7,-0.5 2,-0.6 0.3,-0.2 0.7,-0.2 2.7,-1.4 2,-1.1 5.6,-3.5 7.5,-4.8 1.8,-1.3 1.8,-1.7 3.6,-3 1.9,-1.3 5.5,-3.7 8.2,-4.5 2.7,-0.8 4.3,-0.2 6.3,-0.7 2,-0.5 4.4,-2.1 7,-3.3 2.7,-1.2 5.7,-1.8 7.7,-3.5 2,-1.7 3,-4.3 4.2,-5.8 1.1,-1.5 2.5,-1.9 4.1,-3.7 1.7,-1.8 3.7,-5.2 5.9,-6.5 2.1,-1.3 4.5,-0.7 7.3,-1.2 2.8,-0.5 6.2,-2.1 8,-3 1.8,-0.8 2.2,-0.8 2.7,-1 0.5,-0.1 1.1,-0.5 2,-1.5 0.8,-1 1.8,-2.6 2.3,-3.8 0.5,-1.2 0.5,-1.8 1.3,-3.7 0.9,-1.8 2.5,-4.8 3.4,-6.3 0.8,-1.5 0.8,-1.5 1.6,-2.8 0.9,-1.4 2.5,-4 2.9,-6.4 0.3,-2.3 -0.7,-4.3 -2.5,-6.1 -1.9,-1.9 -4.5,-3.5 -6.7,-3.9 -2.2,-0.3 -3.8,0.7 -5.5,1.2 -1.7,0.5 -3.3,0.5 -5.2,1 -1.8,0.5 -3.8,1.5 -5.1,1.8 -1.4,0.4 -2,0 -4.9,0.5 -2.8,0.5 -7.8,1.9 -10.5,2.4 -2.6,0.5 -3,0.1 -4,0.3 -1,0.2 -2.6,0.8 -3.8,1.5"),S(K,"id","island_19"),S(K,"data-f","19"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 1958.8,505.7 c -1.5,1.6 -4.1,5 -5.6,7.5 -1.5,2.5 -1.9,4.1 -2.9,5.8 -1,1.7 -2.6,3.3 -3.8,5.2 -1.2,1.8 -1.8,3.8 -3.5,6 -1.7,2.1 -4.3,4.5 -5.8,5.5 -1.5,1 -1.9,0.6 -3.2,0.6 -1.3,0 -3.7,0.4 -5.7,0 -2,-0.3 -3.6,-1.3 -5.8,-1 -2.2,0.4 -4.8,2 -6.7,2.5 -1.8,0.5 -2.8,-0.1 -4.8,-0.3 -2,-0.2 -5,0.2 -6.8,0.3 -1.9,0.2 -2.5,0.2 -3.2,0.2 -0.7,0 -1.3,0 -2.2,0.2 -0.8,0.1 -1.8,0.5 -3.8,0.5 -2,0 -5,-0.4 -6.7,-0.7 -1.6,-0.3 -2,-0.7 -3,-0.8 -1,-0.2 -2.6,-0.2 -4.3,0.5 -1.7,0.6 -3.3,2 -4.5,4 -1.2,2 -1.8,4.6 -3.3,7 -1.5,2.3 -3.9,4.3 -5,5.6 -1.2,1.4 -1.2,2 -2.4,3.9 -1.1,1.8 -3.5,4.8 -4.8,6.3 -1.3,1.5 -1.7,1.5 -2.3,2.5 -0.7,1 -1.7,3 -3,4.2 -1.4,1.1 -3,1.5 -5.5,1.3 -2.5,-0.2 -5.9,-0.8 -8.5,0 -2.7,0.8 -4.7,3.2 -5.7,5.3 -1,2.2 -1,4.2 -1.2,5.4 -0.1,1.1 -0.5,1.5 -3.3,1.3 -2.8,-0.2 -8.2,-0.8 -11,-0.7 -2.8,0.2 -3.2,1.2 -5.5,2 -2.3,0.9 -6.7,1.5 -9,2.2 -2.3,0.7 -2.7,1.3 -4.8,1.7 -2.2,0.3 -6.2,0.3 -8.7,0.8 -2.5,0.5 -3.5,1.5 -5.3,1.8 -1.9,0.4 -4.5,0 -6.9,1.7 -2.3,1.7 -4.3,5.3 -6,7.2 -1.6,1.8 -3,1.8 -4.8,2.6 -1.8,0.9 -4.2,2.5 -5.7,3.2 -1.5,0.7 -2.1,0.3 -3.3,0.5 -1.2,0.2 -2.8,0.8 -5,0.7 -2.2,-0.2 -4.8,-1.2 -6.5,-1.9 -1.7,-0.6 -2.3,-1 -4.3,-1.3 -2,-0.3 -5.4,-0.7 -7.2,-1 -1.8,-0.3 -2.2,-0.7 -2.7,-1 -0.5,-0.3 -1.1,-0.7 -3.3,0 -2.2,0.7 -5.8,2.3 -8.3,2.3 -2.5,0 -3.9,-1.6 -4.7,-3.1 -0.8,-1.5 -1.2,-2.9 -3.2,-4.4 -2,-1.5 -5.6,-3.1 -7.5,-4.1 -1.8,-1 -1.8,-1.4 -3,-2 -1.1,-0.7 -3.5,-1.7 -5.6,-2.2 -2.2,-0.5 -4.2,-0.5 -6.5,-1 -2.4,-0.5 -5,-1.5 -6.4,-2 -1.3,-0.5 -1.3,-0.5 -1.5,-0.7 -0.1,-0.1 -0.5,-0.5 -2.1,-2.1 -1.7,-1.7 -4.7,-4.7 -6,-7.4 -1.4,-2.6 -1,-5 -3,-6.3 -2,-1.3 -6.4,-1.7 -8.5,-1.8 -2.2,-0.2 -2.2,-0.2 -4,0 -1.9,0.1 -5.5,0.5 -7.5,0.6 -2,0.2 -2.4,0.2 -4.2,1.7 -1.8,1.5 -5.2,4.5 -6.8,6.7 -1.7,2.1 -1.7,3.5 -2.9,4.8 -1.1,1.3 -3.5,2.7 -5.8,3.3 -2.3,0.7 -4.7,0.7 -6.5,0.4 -1.8,-0.4 -3.2,-1 -4.7,-1.4 -1.5,-0.3 -3.1,-0.3 -4.1,-0.5 -1,-0.1 -1.4,-0.5 -3.2,-0.5 -1.8,0 -5.2,0.4 -7.5,1.9 -2.3,1.5 -3.7,4.1 -4.2,6.1 -0.5,2 -0.1,3.4 -0.8,5.5 -0.7,2.2 -2.3,5.2 -4.8,6.2 -2.5,1 -5.9,0 -7.7,-0.7 -1.8,-0.6 -2.2,-1 -4,-0.8 -1.8,0.2 -5.2,0.8 -7.8,0.2 -2.7,-0.7 -4.7,-2.7 -5.9,-3.7 -1.1,-1 -1.5,-1 -2.6,0.3 -1.2,1.4 -3.2,4 -4,6.4 -0.9,2.3 -0.5,4.3 -1.4,6.8 -0.8,2.5 -2.8,5.5 -4.5,7.2 -1.6,1.6 -3,2 -3.8,2.1 -0.8,0.2 -1.2,0.2 -1.5,0.4 -0.3,0.1 -0.7,0.5 -2.8,0.1 -2.2,-0.3 -6.2,-1.3 -9.2,-1 -3,0.4 -5,2 -6.2,3.4 -1.1,1.3 -1.5,2.3 -2.8,3.3 -1.3,1 -3.7,2 -5.2,3.5 -1.5,1.5 -2.1,3.5 -3.8,4.5 -1.7,1 -4.3,1 -6.2,1.5 -1.8,0.5 -2.8,1.5 -4.3,2 -1.5,0.5 -3.5,0.5 -5,0.8 -1.5,0.4 -2.5,1 -3.2,1.4 -0.6,0.3 -1,0.3 -1.8,0 -0.8,-0.4 -2.2,-1 -4.2,-1.4 -2,-0.3 -4.6,-0.3 -6.1,-0.5 -1.5,-0.1 -1.9,-0.5 -3.9,-1.1 -2,-0.7 -5.6,-1.7 -8,-1.5 -2.3,0.1 -3.3,1.5 -5.3,2.1 -2,0.7 -5,0.7 -6.8,0.2 -1.9,-0.5 -2.5,-1.5 -4.4,-1.8 -1.8,-0.4 -4.8,0 -7,-0.4 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6,1 -1.8,1 -3.2,2.6 -5,3.5 -1.8,0.8 -4.2,0.8 -6.5,2 -2.3,1.1 -4.7,3.5 -5.8,4.6 -1.2,1.2 -1.2,1.2 -2.4,2.7 -1.1,1.5 -3.5,4.5 -5,6.2 -1.5,1.6 -2.1,2 -3.3,3.6 -1.2,1.7 -2.8,4.7 -2.7,7.5 0.2,2.9 2.2,5.5 3,7.4 0.9,1.8 0.5,2.8 -1,4.3 -1.5,1.5 -4.1,3.5 -6.1,4.5 -2,1 -3.4,1 -4.4,1.2 -1,0.1 -1.6,0.5 -2.5,0.5 -0.8,0 -1.8,-0.4 -3.6,0.1 -1.9,0.5 -4.5,1.9 -6.7,2.4 -2.2,0.5 -3.8,0.1 -6,1.3 -2.2,1.2 -4.8,3.8 -6.2,6 -1.3,2.2 -1.3,3.8 -1.8,5.5 -0.5,1.7 -1.5,3.3 -1.8,4.8 -0.4,1.5 0,2.9 0.1,4.5 0.2,1.7 0.2,3.7 -0.1,5 -0.4,1.4 -1,2 -1.7,4.2 -0.7,2.2 -1.3,5.8 -1.5,8.2 -0.2,2.3 0.2,3.3 0,5.5 -0.2,2.1 -0.8,5.5 -1.2,7.3 -0.3,1.8 -0.3,2.2 -0.3,2.7 0,0.5 0,1.1 1.2,3.6 1.1,2.5 3.5,6.9 4.8,9 1.3,2.2 1.7,2.2 3,3.4 1.3,1.1 3.7,3.5 5,5.1 1.3,1.7 1.7,2.7 3,3.7 1.3,1 3.7,2 5.7,2.7 2,0.6 3.6,1 4.6,1.1 1,0.2 1.4,0.2 3,0.5 1.7,0.4 4.7,1 6.4,1.4 1.6,0.3 2,0.3 2.6,0.5 0.7,0.1 1.7,0.5 3.5,2.6 1.9,2.2 4.5,6.2 5.5,9.2 1,3 0.4,5 0.5,7.2 0.2,2.1 1.2,4.5 0.7,7 -0.5,2.5 -2.5,5.1 -4.2,6.6 -1.6,1.5 -3,1.9 -4.6,4 -1.7,2.2 -3.7,6.2 -4.5,8.7 -0.9,2.5 -0.5,3.5 -0.5,4.5 0,1 -0.4,2 -0.5,3.8 -0.2,1.9 -0.2,4.5 0,5.9 0.1,1.3 0.5,1.3 1.3,3 0.8,1.6 2.2,5 3.2,7 1,2 1.6,2.6 4.1,3 2.5,0.3 6.9,0.3 9.4,0 2.5,-0.4 3.1,-1 5.3,-1.2 2.2,-0.2 5.8,0.2 8,0 2.2,-0.2 2.8,-0.8 4.2,-1.2 1.3,-0.3 3.3,-0.3 5.6,1.2 2.4,1.5 5,4.5 6.4,6.5 1.3,2 1.3,3 2.5,4.2 1.1,1.1 3.5,2.5 5.1,2.8 1.7,0.3 2.7,-0.3 4.5,0.5 1.9,0.8 4.5,3.2 5.9,4.7 1.3,1.5 1.3,2.1 2.5,3 1.1,0.8 3.5,1.8 4.8,3.5 1.3,1.6 1.7,4 2.8,5.3 1.2,1.3 3.2,1.7 4.7,3.5 1.5,1.8 2.5,5.2 2.7,7.3 0.1,2.2 -0.5,3.2 -0.7,4.9 -0.2,1.6 0.2,4 1,5.6 0.8,1.7 2.2,2.7 3,4.7 0.8,2 1.2,5 1.7,6.7 0.5,1.6 1.1,2 3.3,2 2.2,0 5.8,-0.4 7.8,-0.9 2,-0.5 2.4,-1.1 4.5,-1.1 2.2,0 6.2,0.6 8.7,1.5 2.5,0.8 3.5,1.8 4,3.1 0.5,1.4 0.5,3 1.3,4.5 0.9,1.5 2.5,2.9 3.5,3.9 1,1 1.4,1.6 2.9,2.8 1.5,1.2 4.1,2.8 5.6,3.8 1.5,1 1.9,1.4 3.2,2.2 1.3,0.8 3.7,2.2 5,3.2 1.3,1 1.7,1.6 3.7,2.3 2,0.7 5.6,1.3 8.3,0.8 2.7,-0.5 4.3,-2.1 6.7,-3.3 2.3,-1.2 5.3,-1.8 6.8,-2.3 1.5,-0.5 1.5,-0.9 2,-1 0.5,-0.2 1.5,-0.2 3.2,-0.2 1.6,0 4,0 5.5,-0.2 1.5,-0.1 2.1,-0.5 4.1,-0.6 2,-0.2 5.4,-0.2 7.4,-0.4 2,-0.1 2.6,-0.5 4.8,-0.8 2.2,-0.3 5.8,-0.7 7.7,-0.8 1.8,-0.2 1.8,-0.2 3.3,-0.2 1.5,0 4.5,0 6.2,0.2 1.6,0.1 2,0.5 3.6,0 1.7,-0.5 4.7,-1.9 6.7,-2.4 2,-0.5 3,-0.1 4.5,-0.8 1.5,-0.7 3.5,-2.3 5.8,-3.3 2.4,-1 5,-1.4 7,-2.5 2,-1.2 3.4,-3.2 3.9,-4.7 0.5,-1.5 0.1,-2.5 0.1,-4.3 0,-1.9 0.4,-4.5 -0.1,-6.5 -0.5,-2 -1.9,-3.4 -2.2,-4.9 -0.3,-1.5 0.3,-3.1 -0.5,-5.3 -0.8,-2.2 -3.2,-4.8 -3.7,-7.2 -0.5,-2.3 0.9,-4.3 1.2,-6.5 0.3,-2.1 -0.3,-4.5 -1.5,-5.8 -1.2,-1.3 -2.8,-1.7 -5,-1 -2.2,0.7 -4.8,2.3 -7,2.7 -2.2,0.3 -3.8,-0.7 -6,-1.4 -2.2,-0.6 -4.8,-1 -6.7,-2 -1.8,-1 -2.8,-2.6 -4.6,-4 -1.9,-1.3 -4.5,-2.3 -6.5,-2.3 -2,0 -3.4,1 -4.5,3 -1.2,2 -2.2,5 -4.2,6.7 -2,1.6 -5,2 -8,0.5 -3,-1.5 -6,-4.9 -7.5,-6.5 -1.5,-1.7 -1.5,-1.7 -1.5,-2.2 0,-0.5 0,-1.5 -0.3,-3.3 -0.4,-1.9 -1,-4.5 -1.2,-6.7 -0.2,-2.2 0.2,-3.8 0.5,-4.8 0.3,-1 0.7,-1.4 1.3,-3.5 0.7,-2.2 1.7,-6.2 3.2,-8.9 1.5,-2.6 3.5,-4 5.5,-4.3 2,-0.3 4,0.3 6.2,0 2.1,-0.3 4.5,-1.7 6.1,-2 1.7,-0.3 2.7,0.3 4.5,0.2 1.9,-0.2 4.5,-1.2 7.4,-0.9 2.8,0.4 5.8,2 7.5,2.9 1.6,0.8 2,0.8 3,1 1,0.1 2.6,0.5 5.3,-0.2 2.7,-0.7 6.3,-2.3 8.7,-3.8 2.3,-1.5 3.3,-2.9 4,-3.7 0.6,-0.8 1,-1.2 2,-1.2 1,0 2.6,0.4 4,0.4 1.3,0 2.3,-0.4 3.3,-1 1,-0.7 2,-1.7 4.5,-2.5 2.5,-0.9 6.5,-1.5 9.3,-0.2 2.9,1.3 4.5,4.7 5.7,6.5 1.2,1.8 1.8,2.2 3,3.3 1.2,1.2 2.8,3.2 4,4.2 1.2,1 1.8,1 2.7,0.8 0.8,-0.1 1.8,-0.5 4.8,0 3,0.5 8,1.9 11.2,2.2 3.1,0.3 4.5,-0.3 5.5,-0.7 1,-0.3 1.6,-0.3 2.1,-0.1 0.5,0.1 0.9,0.5 4.2,0.6 3.3,0.2 9.7,0.2 13.3,0.5 3.7,0.4 4.7,1 6.7,1.2 2,0.2 5,-0.2 7.2,0.5 2.1,0.7 3.5,2.3 5,3.3 1.5,1 3.1,1.4 6.1,-0.1 3,-1.5 7.4,-4.9 9.5,-6.4 2.2,-1.5 2.2,-1.1 3.9,-0.8 1.6,0.3 5,0.7 7.5,-0.3 2.5,-1 4.1,-3.4 5.5,-4.7 1.3,-1.3 2.3,-1.7 3.1,-2.3 0.9,-0.7 1.5,-1.7 4.4,-2.2 2.8,-0.5 7.8,-0.5 10.5,-0.7 2.6,-0.1 3,-0.5 3.8,-1 0.8,-0.5 2.2,-1.1 3.3,-2.3 1.2,-1.2 2.2,-2.8 3.4,-4.2 1.1,-1.3 2.5,-2.3 3.6,-4.6 1.2,-2.4 2.2,-6 3.5,-8.2 1.4,-2.2 3,-2.8 5.4,-2.5 2.3,0.3 5.3,1.7 7.3,2.2 2,0.5 3,0.1 5,0.5 2,0.3 5,1.3 7.3,1.6 2.4,0.4 4,0 5,-0.3 1,-0.3 1.4,-0.7 3.7,-1.8 2.3,-1.2 6.7,-3.2 9.5,-4 2.8,-0.9 4.2,-0.5 5.2,0 1,0.5 1.6,1.1 3.3,1.8 1.7,0.7 4.3,1.3 6.5,1.2 2.2,-0.2 3.8,-1.2 5.3,-1.5 1.5,-0.4 2.9,0 4.7,-0.2 1.8,-0.2 4.2,-0.8 6.5,-0.5 2.3,0.3 4.7,1.7 6,2.7 1.3,1 1.7,1.6 2.5,2.5 0.8,0.8 2.2,1.8 4,2 1.8,0.1 4.2,-0.5 5.7,-1.4 1.5,-0.8 2.1,-1.8 4.6,-2.3 2.5,-0.5 6.9,-0.5 9.2,-0.2 2.3,0.4 2.7,1 4.2,1.2 1.5,0.2 4.1,-0.2 6.6,1.5 2.5,1.7 4.9,5.3 6.2,7.2 1.3,1.8 1.7,1.8 3,3.5 1.3,1.6 3.7,5 4.8,6.6 1.2,1.7 1.2,1.7 2,2.9 0.9,1.1 2.5,3.5 3.9,5 1.3,1.5 2.3,2.1 4,2 1.6,-0.2 4,-1.2 7,-0.7 3,0.5 6.6,2.5 8.5,3.7 1.8,1.1 1.8,1.5 3,2.5 1.1,1 3.5,2.6 5.8,3.6 2.3,1 4.7,1.4 6.2,1.2 1.5,-0.2 2.1,-0.8 4.1,-1.5 2,-0.7 5.4,-1.3 7.4,-2.3 2,-1 2.6,-2.4 3.1,-4 0.5,-1.7 0.9,-3.7 1.7,-5.5 0.8,-1.9 2.2,-3.5 2.7,-5.5 0.5,-2 0.1,-4.4 1.3,-6.4 1.2,-2 3.8,-3.6 5.2,-4.5 1.3,-0.8 1.3,-0.8 3.1,-2 1.9,-1.1 5.5,-3.5 7.5,-4.6 2,-1.2 2.4,-1.2 4,-2.4 1.7,-1.1 4.7,-3.5 7.5,-3.3 2.9,0.2 5.5,2.8 7.7,3.7 2.2,0.8 3.8,-0.2 5.3,-0.9 1.5,-0.6 2.9,-1 4,-1.8 1.2,-0.8 2.2,-2.2 3,-2.8 0.9,-0.7 1.5,-0.7 3.4,-0.5 1.8,0.1 4.8,0.5 7.3,1.5 2.5,1 4.5,2.6 5.7,3.5 1.1,0.8 1.5,0.8 2.8,2.5 1.3,1.6 3.7,5 6.2,6.8 2.5,1.8 5.1,2.2 7.1,2 2,-0.2 3.4,-0.8 4.2,-2.2 0.8,-1.3 1.2,-3.3 2.8,-5.8 1.7,-2.5 4.7,-5.5 6.2,-7 1.5,-1.5 1.5,-1.5 1.8,-1.5 0.4,0 1,0 1.4,0 0.3,0 0.3,0 1.6,-1.2 1.4,-1.1 4,-3.5 7,-4.8 3,-1.3 6.4,-1.7 8.7,-1.7 2.3,0 3.7,0.4 5.3,0.4 1.7,0 3.7,-0.4 5,-1 1.4,-0.7 2,-1.7 4,-2.5 2,-0.9 5.4,-1.5 7.7,-3 2.3,-1.5 3.7,-3.9 6.2,-3.4 2.5,0.5 6.1,3.9 8.8,5 2.7,1.2 4.3,0.2 6.2,0 1.8,-0.1 3.8,0.5 6.1,0.2 2.4,-0.3 5,-1.7 7.4,-2 2.3,-0.3 4.3,0.3 5.6,0.3 1.4,0 2,-0.6 3.4,-2.5 1.3,-1.8 3.3,-4.8 4.1,-7.1 0.9,-2.4 0.5,-4 0.5,-5.2 0,-1.2 0.4,-1.8 0.5,-3.5 0.2,-1.7 0.2,-4.3 0.5,-6 0.4,-1.7 1,-2.3 2.4,-4.2 1.3,-1.8 3.3,-4.8 5.1,-6.3 1.9,-1.5 3.5,-1.5 5.2,-2.8 1.7,-1.4 3.3,-4 5.5,-5.5 2.2,-1.5 4.8,-1.9 6.2,-2.2 1.3,-0.3 1.3,-0.7 1.3,-1.7 0,-1 0,-2.6 0.7,-4.8 0.6,-2.2 2,-4.8 2.6,-6.3 0.7,-1.5 0.7,-1.9 1,-3.5 0.4,-1.7 1,-4.7 1.7,-6.5 0.7,-1.9 1.3,-2.5 0.5,-4.9 -0.8,-2.3 -3.2,-6.3 -3.8,-9 -0.7,-2.6 0.3,-4 1.1,-5.8 0.9,-1.8 1.5,-4.2 1.7,-5.7 0.2,-1.5 -0.2,-2.1 -0.3,-3 -0.2,-0.8 -0.2,-1.8 -0.9,-3.5 -0.6,-1.6 -2,-4 -2.5,-5.8 -0.5,-1.8 -0.1,-3.2 -0.6,-4.8 -0.5,-1.7 -1.9,-3.7 -5,-4 -3.2,-0.4 -8.2,1 -10.7,1.6 -2.5,0.7 -2.5,0.7 -2.8,-1.6 -0.4,-2.4 -1,-7 -1.4,-9.4 -0.3,-2.3 -0.3,-2.3 -0.3,-3.1 0,-0.9 0,-2.5 0.7,-4.4 0.6,-1.8 2,-3.8 2.5,-6.1 0.5,-2.4 0.1,-5 -1.2,-7.4 -1.3,-2.3 -3.7,-4.3 -5,-6.1 -1.3,-1.9 -1.7,-3.5 -2.3,-4.9 -0.7,-1.3 -1.7,-2.3 -3.5,-3 -1.9,-0.6 -4.5,-1 -6.2,-1.6 -1.7,-0.7 -2.3,-1.7 -4.7,-2.7 -2.3,-1 -6.3,-2 -8.3,-4 -2,-2 -2,-5 -1.7,-7 0.4,-2 1,-3 1.7,-4.7 0.7,-1.6 1.3,-4 0.8,-5.8 -0.5,-1.8 -2.1,-3.2 -3.5,-3.8 -1.3,-0.7 -2.3,-0.7 -3.8,-2 -1.5,-1.4 -3.5,-4 -4.5,-5.5 -1,-1.5 -1,-1.9 -1.3,-2.9 -0.4,-1 -1,-2.6 -2.9,-3.5 -1.8,-0.8 -4.8,-0.8 -6.6,-1.1 -1.9,-0.4 -2.5,-1 -4.5,-1.5 -2,-0.5 -5.4,-0.9 -7.2,-1.4 -1.8,-0.5 -2.2,-1.1 -1.7,-3.5 0.5,-2.3 1.9,-6.3 2.9,-8.5 1,-2.1 1.6,-2.5 1.8,-4.1 0.2,-1.7 -0.2,-4.7 -0.5,-6.4 -0.3,-1.6 -0.7,-2 -2.7,-2.3 -2,-0.3 -5.6,-0.7 -8,-2 -2.3,-1.3 -3.3,-3.7 -4.8,-5.3 -1.5,-1.7 -3.5,-2.7 -5,-4.2 -1.5,-1.5 -2.5,-3.5 -4.2,-4.7 -1.6,-1.1 -4,-1.5 -5.5,-1.8 -1.5,-0.3 -2.1,-0.7 -3.8,-1 -1.7,-0.3 -4.3,-0.7 -6.5,-1.3 -2.2,-0.7 -3.8,-1.7 -6,-2.2 -2.2,-0.5 -4.8,-0.5 -6.7,-0.8 -1.8,-0.4 -2.8,-1 -3.6,-1.4 -0.9,-0.3 -1.5,-0.3 -3.4,-1.6 -1.8,-1.4 -4.8,-4 -6.5,-6.4 -1.6,-2.3 -2,-4.3 -2,-5.8 0,-1.5 0.4,-2.5 -0.3,-4.7 -0.7,-2.1 -2.3,-5.5 -4.2,-7.5 -1.8,-2 -3.8,-2.6 -5.5,-3.8 -1.6,-1.2 -3,-2.8 -4.3,-3.8 -1.3,-1 -2.7,-1.4 -3.3,-1.5 -0.7,-0.2 -0.7,-0.2 -2.2,-0.2 -1.5,0 -4.5,0 -6.3,0.3 -1.9,0.4 -2.5,1 -4.4,1.7 -1.8,0.7 -4.8,1.3 -6.6,1.3 -1.9,0 -2.5,-0.6 -4,0.2 -1.5,0.8 -3.9,3.2 -6,3.3 -2.2,0.2 -4.2,-1.8 -6,-2.1 -1.9,-0.4 -3.5,1 -5.5,1.3 -2,0.3 -4.4,-0.3 -6,-0.3 -1.7,0 -2.7,0.6 -4,0.6 -1.4,0 -3,-0.6 -4.7,-0.6 -1.7,0 -3.3,0.6 -5.2,0.6 -1.8,0 -3.8,-0.6 -5.8,-0.8 -2,-0.2 -4,0.2 -5.3,0.2 -1.4,0 -2,-0.4 -3.9,0 -1.8,0.3 -4.8,1.3 -6.8,1.6 -2,0.4 -3,0 -3.7,-0.1 -0.6,-0.2 -1,-0.2 -2.5,1.5"),S(K,"id","island_20"),S(K,"data-f","20"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 1132.8,743.7 c -2.5,0.3 -4.1,1.3 -6,1.6 -1.8,0.4 -3.8,0 -5.8,0.4 -2,0.3 -4,1.3 -6.2,1.6 -2.1,0.4 -4.5,0 -6.6,0.4 -2.2,0.3 -4.2,1.3 -5.4,3 -1.1,1.6 -1.5,4 -3.3,6 -1.8,2 -5.2,3.6 -7,5.3 -1.8,1.7 -2.2,3.3 -3.3,5.2 -1.2,1.8 -3.2,3.8 -4.4,5 -1.1,1.1 -1.5,1.5 -2.5,3.3 -1,1.8 -2.6,5.2 -3.6,7 -1,1.8 -1.4,2.2 -1.9,3.2 -0.5,1 -1.1,2.6 -1.3,4.1 -0.2,1.5 0.2,2.9 0.2,4.2 0,1.3 -0.4,2.7 -1.7,4.3 -1.3,1.7 -3.7,3.7 -5.7,4.7 -2,1 -3.6,1 -4.6,1.2 -1,0.1 -1.4,0.5 -4,0.3 -2.7,-0.2 -7.7,-0.8 -11.2,-0.2 -3.5,0.7 -5.5,2.7 -6.5,3.9 -1,1.1 -1,1.5 -1.3,3.1 -0.4,1.7 -1,4.7 -2.5,6.7 -1.5,2 -3.9,3 -5.4,3.5 -1.5,0.5 -2.1,0.5 -4.1,1.3 -2,0.9 -5.4,2.5 -7,4.4 -1.7,1.8 -1.7,3.8 -2.9,5.5 -1.1,1.6 -3.5,3 -5.5,3.5 -2,0.5 -3.6,0.1 -5.6,0.8 -2,0.7 -4.4,2.3 -6.9,3.2 -2.5,0.8 -5.1,0.8 -7.5,2.1 -2.3,1.4 -4.3,4 -5.6,6 -1.4,2 -2,3.4 -2.9,4.4 -0.8,1 -1.8,1.6 -2.8,2 -1,0.3 -2,0.3 -3.8,0.8 -1.9,0.5 -4.5,1.5 -6.5,3.8 -2,2.4 -3.4,6 -4.2,8 -0.8,2 -1.2,2.4 -1.8,4 -0.7,1.7 -1.7,4.7 -2.4,6.4 -0.6,1.6 -1,2 -1.3,2.6 -0.3,0.7 -0.7,1.7 -2.7,3.2 -2,1.5 -5.6,3.5 -8.5,4.3 -2.8,0.9 -4.8,0.5 -6.6,1.9 -1.9,1.3 -3.5,4.3 -3.5,7 0,2.6 1.6,5 1.6,8.1 0,3.2 -1.6,7.2 -2.5,9.4 -0.8,2.1 -0.8,2.5 -0.8,4.5 0,2 0,5.6 0.2,7.6 0.1,2 0.5,2.4 1.5,3.4 1,1 2.6,2.6 4.8,4 2.2,1.3 4.8,2.3 7,4.1 2.2,1.9 3.8,4.5 4.5,6.4 0.7,1.8 0.3,2.8 0.7,5.3 0.3,2.5 1.3,6.5 2.3,8.7 1,2.1 2,2.5 3.3,3.8 1.4,1.3 3,3.7 4.2,5 1.2,1.3 1.8,1.7 3.5,2.7 1.7,1 4.3,2.6 6.7,3.1 2.3,0.5 4.3,-0.1 5.8,-2.3 1.5,-2.2 2.5,-5.8 3,-7.8 0.5,-2 0.5,-2.4 0.7,-3.2 0.1,-0.8 0.5,-2.2 2.3,-3.7 1.8,-1.5 5.2,-3.1 7.8,-3.5 2.7,-0.3 4.7,0.7 6.2,2.5 1.5,1.9 2.5,4.5 3.7,6.2 1.1,1.7 2.5,2.3 4,3.8 1.5,1.5 3.1,3.9 4,5.7 0.8,1.8 0.8,3.2 1.8,4.3 1,1.2 3,2.2 4.5,3.9 1.5,1.6 2.5,4 4.5,6 2,2 5,3.6 6.7,4.3 1.6,0.7 2,0.3 3.5,0.3 1.5,0 4.1,0.4 6.3,0.2 2.2,-0.2 3.8,-0.8 6,-0.7 2.2,0.2 4.8,1.2 6.3,1.7 1.5,0.5 1.9,0.5 2.9,-1.3 1,-1.9 2.6,-5.5 3.5,-7.5 0.8,-2 0.8,-2.4 1.6,-4.4 0.9,-2 2.5,-5.6 5.4,-7 2.8,-1.3 6.8,-0.3 9,0.4 2.1,0.6 2.5,1 3.5,1.3 1,0.3 2.6,0.7 4.8,0.2 2.2,-0.5 4.8,-1.9 6.2,-2.5 1.3,-0.7 1.3,-0.7 2.8,-1.9 1.5,-1.1 4.5,-3.5 6,-5.3 1.5,-1.8 1.5,-3.2 2.2,-4.5 0.6,-1.3 2,-2.7 2.8,-4 0.8,-1.3 1.2,-2.7 2.2,-4.2 1,-1.5 2.6,-3.1 3.6,-4.6 1,-1.5 1.4,-2.9 2.7,-4.7 1.3,-1.8 3.7,-4.2 5,-5.5 1.3,-1.3 1.7,-1.7 2.7,-2.5 1,-0.8 2.6,-2.2 3.5,-4.2 0.8,-2 0.8,-4.6 1.8,-7.3 1,-2.7 3,-5.3 5.2,-7.2 2.1,-1.8 4.5,-2.8 5.8,-3.5 1.3,-0.6 1.7,-1 3.3,-1.3 1.7,-0.3 4.7,-0.7 6.5,-0.7 1.9,0 2.5,0.4 4.4,-0.3 1.8,-0.7 4.8,-2.3 7.6,-1.8 2.9,0.5 5.5,3.1 7.2,4.5 1.7,1.3 2.3,1.3 3.5,2.5 1.2,1.1 2.8,3.5 3.8,5 1,1.5 1.4,2.1 3,3.3 1.7,1.2 4.7,2.8 6.4,3.8 1.6,1 2,1.4 4.1,2.5 2.2,1.2 6.2,3.2 8.4,4.2 2.1,1 2.5,1 4,1.3 1.5,0.4 4.1,1 6.1,1.7 2,0.7 3.4,1.3 5.7,1 2.3,-0.3 5.7,-1.7 7.8,-3.2 2.2,-1.5 3.2,-3.1 4,-4.1 0.9,-1 1.5,-1.4 2.2,-1.7 0.7,-0.3 1.3,-0.7 3,-2.2 1.7,-1.5 4.3,-4.1 6.3,-5.5 2,-1.3 3.4,-1.3 5,-3.1 1.7,-1.9 3.7,-5.5 6.2,-6.9 2.5,-1.3 5.5,-0.3 8,-0.5 2.5,-0.1 4.5,-1.5 5.5,-2.5 1,-1 1,-1.6 1.3,-2.1 0.4,-0.5 1,-0.9 1.5,-2.7 0.5,-1.8 0.9,-5.2 2,-7 1.2,-1.8 3.2,-2.2 4.4,-4.2 1.1,-2 1.5,-5.6 1.8,-7.6 0.3,-2 0.7,-2.4 1,-3 0.3,-0.7 0.7,-1.7 0.5,-3.9 -0.2,-2.1 -0.8,-5.5 -1,-7.5 -0.2,-2 0.2,-2.6 0.7,-3.1 0.5,-0.5 1.1,-0.9 2,-3.2 0.8,-2.3 1.8,-6.7 2.1,-9 0.4,-2.3 0,-2.7 -0.3,-4.5 -0.3,-1.8 -0.7,-5.2 -0.3,-7.5 0.3,-2.3 1.3,-3.7 1.8,-5.8 0.5,-2.2 0.5,-5.2 0.5,-6.7 0,-1.5 0,-1.5 -0.8,-3.3 -0.9,-1.9 -2.5,-5.5 -3.4,-8 -0.8,-2.5 -0.8,-3.9 -1.3,-5.4 -0.5,-1.5 -1.5,-3.1 -1.8,-5.6 -0.4,-2.5 0,-5.9 0.6,-8 0.7,-2.2 1.7,-3.2 2.7,-3.9 1,-0.6 2,-1 3.2,-2.1 1.1,-1.2 2.5,-3.2 3,-4.7 0.5,-1.5 0.1,-2.5 -1.4,-3.8 -1.5,-1.4 -4.1,-3 -5.3,-5.7 -1.2,-2.7 -0.8,-6.3 -0.7,-8.5 0.2,-2.2 0.2,-2.8 0.4,-4.3 0.1,-1.5 0.5,-3.9 0.1,-5.5 -0.3,-1.7 -1.3,-2.7 -2,-3.9 -0.6,-1.1 -1,-2.5 -2,-4.6 -1,-2.2 -2.6,-5.2 -4.5,-7 -1.8,-1.9 -3.8,-2.5 -5,-2.9 -1.1,-0.3 -1.5,-0.3 -3.1,-1.3 -1.7,-1 -4.7,-3 -7.4,-3.7 -2.6,-0.6 -5,0 -6.1,0.4 -1.2,0.3 -1.2,0.3 -2.9,0.1 -1.6,-0.1 -5,-0.5 -7,-0.3 -2,0.2 -2.6,0.8 -4.5,1.2 -1.8,0.3 -4.8,0.3 -6.5,0.1 -1.6,-0.1 -2,-0.5 -3.1,-0.8 -1.2,-0.3 -3.2,-0.7 -5,-0.3 -1.9,0.3 -3.5,1.3 -6,1.6 -2.5,0.4 -5.9,0 -7.9,-0.5 -2,-0.5 -2.6,-1.1 -4.6,-1.6 -2,-0.5 -5.4,-0.9 -7.4,-0.7 -2,0.2 -2.6,0.8 -3.6,1.2 -1,0.3 -2.4,0.3 -3.5,0 -1.2,-0.4 -2.2,-1 -3.9,-1.2 -1.6,-0.2 -4,0.2 -5.6,0 -1.7,-0.2 -2.7,-0.8 -3.7,-1 -1,-0.2 -2,0.2 -3.7,1 -1.6,0.8 -4,2.2 -5.5,3.5 -1.5,1.3 -2.1,2.7 -4.6,3.3 -2.5,0.7 -6.9,0.7 -9.2,0.9 -2.3,0.1 -2.7,0.5 -4.5,0.5 -1.8,0 -5.2,-0.4 -7.7,0"),S(K,"id","island_29"),S(K,"data-f","29"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 349.8,785.3 c -1.5,1.4 -2.1,3 -2.3,4.5 -0.2,1.5 0.2,2.9 -0.3,5.2 -0.5,2.3 -1.9,5.7 -3,7.7 -1.2,2 -2.2,2.6 -4.5,3 -2.4,0.3 -6,0.3 -8,0.3 -2,0 -2.4,0 -2.5,0.2 -0.2,0.1 -0.2,0.5 -1.5,1.5 -1.4,1 -4,2.6 -6.9,3.5 -2.8,0.8 -5.8,0.8 -7.5,0.6 -1.6,-0.1 -2,-0.5 -3.6,-0.6 -1.7,-0.2 -4.7,-0.2 -6.4,0 -1.6,0.1 -2,0.5 -2.3,2.5 -0.3,2 -0.7,5.6 -1,7.6 -0.3,2 -0.7,2.4 -0.8,3.7 -0.2,1.3 -0.2,3.7 -0.4,5.2 -0.1,1.5 -0.5,2.1 -0.6,2.8 -0.2,0.7 -0.2,1.3 -1.4,3 -1.1,1.7 -3.5,4.3 -4.6,5.8 -1.2,1.5 -1.2,1.9 -2.5,3 -1.4,1.2 -4,3.2 -4.9,5.4 -0.8,2.1 0.2,4.5 0.9,5.8 0.6,1.3 1,1.7 0.3,3.3 -0.7,1.7 -2.3,4.7 -2.8,7.5 -0.5,2.9 0.1,5.5 0.3,7.5 0.2,2 -0.2,3.4 -0.3,4.2 -0.2,0.8 -0.2,1.2 1.1,2.2 1.4,1 4,2.6 7,3.3 3,0.7 6.4,0.3 8.7,1.2 2.3,0.8 3.7,2.8 6,3.8 2.3,1 5.7,1 8,2 2.3,1 3.7,3 4.2,5 0.5,2 0.1,4 0.5,5.5 0.3,1.5 1.3,2.5 3.8,3.2 2.5,0.6 6.5,1 8.7,2.3 2.1,1.3 2.5,3.7 4.1,5 1.7,1.3 4.7,1.7 7.2,2.8 2.5,1.2 4.5,3.2 6.3,4.2 1.9,1 3.5,1 4.4,1.2 0.8,0.1 0.8,0.5 2.3,0.8 1.5,0.3 4.5,0.7 6.5,0.8 2,0.2 3,0.2 3.7,0 0.6,-0.1 1,-0.5 2.5,-0.8 1.5,-0.3 4.1,-0.7 6.1,-1.3 2,-0.7 3.4,-1.7 4.5,-2 1.2,-0.4 2.2,0 4,-0.7 1.9,-0.7 4.5,-2.3 6.2,-4.2 1.7,-1.8 2.3,-3.8 3.2,-5.1 0.8,-1.4 1.8,-2 2.5,-3.4 0.6,-1.3 1,-3.3 1.1,-4.3 0.2,-1 0.2,-1 1.4,-1.3 1.1,-0.4 3.5,-1 5,-2 1.5,-1 2.1,-2.4 4.5,-3.7 2.3,-1.3 6.3,-2.7 9,-2.5 2.6,0.2 4,1.8 4.8,3.2 0.8,1.3 1.2,2.3 0.5,4.5 -0.7,2.1 -2.3,5.5 -3.5,7.3 -1.2,1.8 -1.8,2.2 -2.7,3 -0.8,0.8 -1.8,2.2 -3.5,3.2 -1.6,1 -4,1.6 -6,3.6 -2,2 -3.6,5.4 -4.6,7 -1,1.7 -1.4,1.7 -2.2,2.5 -0.8,0.9 -2.2,2.5 -2.5,5.4 -0.3,2.8 0.3,6.8 -0.2,9.6 -0.5,2.9 -2.1,4.5 -3.3,6 -1.2,1.5 -1.8,2.9 -2.8,4 -1,1.2 -2.4,2.2 -4,4 -1.7,1.9 -3.7,4.5 -5.4,6 -1.6,1.5 -3,1.9 -4.5,2.7 -1.5,0.8 -3.1,2.2 -4,3.7 -0.8,1.5 -0.8,3.1 1.5,4.8 2.4,1.7 7,3.3 9.2,5.8 2.2,2.5 1.8,5.9 1.5,7.5 -0.3,1.7 -0.7,1.7 -1.2,3.4 -0.5,1.6 -1.1,5 0.4,7.5 1.5,2.5 5.1,4.1 7.1,5.1 2,1 2.4,1.4 3.7,2.5 1.3,1.2 3.7,3.2 5,4.2 1.3,1 1.7,1 2,1.2 0.3,0.1 0.7,0.5 2.5,1 1.8,0.5 5.2,1.1 7.7,1.1 2.5,0 4.1,-0.6 6.1,-0.6 2,0 4.4,0.6 5.7,1.5 1.3,0.8 1.7,1.8 3.5,2.3 1.8,0.5 5.2,0.5 7.2,1.3 2,0.9 2.6,2.5 4.5,3.5 1.8,1 4.8,1.4 6.5,1.5 1.6,0.2 2,0.2 2.1,0 0.2,-0.1 0.2,-0.5 -0.6,-2.3 -0.9,-1.8 -2.5,-5.2 -3.9,-7 -1.3,-1.8 -2.3,-2.2 -3.6,-3.8 -1.4,-1.7 -3,-4.7 -3.9,-6.4 -0.8,-1.6 -0.8,-2 -0.5,-2.8 0.4,-0.8 1,-2.2 2.5,-3.3 1.5,-1.2 3.9,-2.2 6.2,-2.5 2.3,-0.4 4.7,0 5.8,0.3 1.2,0.3 1.2,0.7 2.5,0.8 1.4,0.2 4,0.2 6,0.5 2,0.4 3.4,1 4.2,1.4 0.8,0.3 1.2,0.3 2.7,0.8 1.5,0.5 4.1,1.5 5.8,2.5 1.7,1 2.3,2 2,4.3 -0.3,2.4 -1.7,6 -2.3,8 -0.7,2 -0.7,2.4 -1.2,3.5 -0.5,1.2 -1.5,3.2 -1.3,5.4 0.1,2.1 1.5,4.5 3.5,5.8 2,1.3 4.6,1.7 6.5,1 1.8,-0.7 2.8,-2.3 5.1,-3.5 2.4,-1.2 6,-1.8 7.9,-2.3 1.8,-0.5 1.8,-0.9 2.1,-1.2 0.4,-0.3 1,-0.7 3,-0.7 2,0 5.4,0.4 8,1.5 2.7,1.2 4.7,3.2 5.7,4.2 1,1 1,1 2.7,-0.3 1.6,-1.4 5,-4 6.8,-5.4 1.8,-1.3 2.2,-1.3 4.2,-2.5 2,-1.1 5.6,-3.5 8,-4.6 2.3,-1.2 3.3,-1.2 4.1,-1.5 0.9,-0.4 1.5,-1 2.7,-2.7 1.2,-1.7 2.8,-4.3 3.5,-6.5 0.7,-2.2 0.3,-3.8 1,-5.3 0.7,-1.5 2.3,-2.9 4.3,-3.2 2,-0.3 4.4,0.3 6.5,0.2 2.2,-0.2 4.2,-1.2 5.9,-1 1.6,0.1 3,1.5 5.3,2.1 2.3,0.7 5.7,0.7 7.7,-0.5 2,-1.1 2.6,-3.5 3.3,-4.8 0.7,-1.3 1.3,-1.7 0.7,-3.7 -0.7,-2 -2.7,-5.6 -1.7,-8.3 1,-2.7 5,-4.3 7,-5.8 2,-1.5 2,-2.9 2.3,-4 0.4,-1.2 1,-2.2 1.4,-3.9 0.3,-1.6 0.3,-4 0.6,-5.6 0.4,-1.7 1,-2.7 1.4,-3.5 0.3,-0.9 0.3,-1.5 -0.7,-3.4 -1,-1.8 -3,-4.8 -3.8,-6.8 -0.9,-2 -0.5,-3 -1.4,-5.3 -0.8,-2.4 -2.8,-6 -3,-8.5 -0.1,-2.5 1.5,-3.9 2.5,-6.2 1,-2.3 1.4,-5.7 0,-7.8 -1.3,-2.2 -4.3,-3.2 -6.3,-4.7 -2,-1.5 -3,-3.5 -3.5,-5.7 -0.5,-2.1 -0.5,-4.5 -0.7,-6.3 -0.1,-1.8 -0.5,-3.2 -0.6,-4.2 -0.2,-1 -0.2,-1.6 -1,-2.6 -0.9,-1 -2.5,-2.4 -3.7,-5 -1.2,-2.7 -1.8,-6.7 -4.3,-9 -2.5,-2.4 -6.9,-3 -9.4,-2.5 -2.5,0.5 -3.1,2.1 -4.1,3.3 -1,1.2 -2.4,1.8 -3.2,3.2 -0.8,1.3 -1.2,3.3 -1.7,4.5 -0.5,1.1 -1.1,1.5 -3.3,1.3 -2.2,-0.2 -5.8,-0.8 -7.8,-1.8 -2,-1 -2.4,-2.4 -4.5,-2.9 -2.2,-0.5 -6.2,-0.1 -8.7,-1 -2.5,-0.8 -3.5,-2.8 -5.5,-3.6 -2,-0.9 -5,-0.5 -7.2,-0.9 -2.1,-0.3 -3.5,-1.3 -5.3,-1.6 -1.8,-0.4 -4.2,0 -6.3,-0.4 -2.2,-0.3 -4.2,-1.3 -5.4,-3.3 -1.1,-2 -1.5,-5 -1.8,-6.8 -0.3,-1.9 -0.7,-2.5 -1.2,-4.9 -0.5,-2.3 -1.1,-6.3 -1.6,-8.5 -0.5,-2.1 -0.9,-2.5 -1.4,-4 -0.5,-1.5 -1.1,-4.1 -0.8,-6.8 0.3,-2.7 1.7,-5.3 2.2,-7.2 0.5,-1.8 0.1,-2.8 -1.5,-4.3 -1.7,-1.5 -4.7,-3.5 -6.4,-4.5 -1.6,-1 -2,-1 -3.6,-2 -1.7,-1 -4.7,-3 -6.4,-4.5 -1.6,-1.5 -2,-2.5 -2.6,-3.5 -0.7,-1 -1.7,-2 -2.7,-3.3 -1,-1.4 -2,-3 -2.8,-4 -0.9,-1 -1.5,-1.4 -3,-1.5 -1.5,-0.2 -3.9,-0.2 -6.5,-0.9 -2.7,-0.6 -5.7,-2 -7.4,-2.6 -1.6,-0.7 -2,-0.7 -3.3,-0.5 -1.3,0.1 -3.7,0.5 -5,0.6 -1.3,0.2 -1.7,0.2 -3.7,0.2 -2,0 -5.6,0 -7.8,-0.3 -2.2,-0.4 -2.8,-1 -4.8,-1.5 -2,-0.5 -5.4,-0.9 -7,-0.9 -1.7,0 -1.7,0.4 -3.7,-0.5 -2,-0.8 -6,-2.8 -8.7,-5 -2.6,-2.1 -4,-4.5 -5,-5.8 -1,-1.3 -1.6,-1.7 -2.1,-1.8 -0.5,-0.2 -0.9,-0.2 -2,-0.5 -1.2,-0.4 -3.2,-1 -5,-1.4 -1.9,-0.3 -3.5,-0.3 -5.7,-0.6 -2.2,-0.4 -4.8,-1 -6.7,-1.2 -1.8,-0.2 -2.8,0.2 -5,0 -2.1,-0.2 -5.5,-0.8 -8.3,-0.7 -2.8,0.2 -5.2,1.2 -6.7,2.5"),S(K,"id","island_31"),S(K,"data-f","31"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 695.3,891.5 c -0.6,1.5 -2,4.5 -2.5,6.7 -0.5,2.1 -0.1,3.5 -0.6,5.6 -0.5,2.2 -1.9,5.2 -3.4,6.5 -1.5,1.4 -3.1,1 -5.5,2.4 -2.3,1.3 -5.3,4.3 -7,6 -1.6,1.6 -2,2 -2.1,2.3 -0.2,0.3 -0.2,0.7 -2.2,1.2 -2,0.5 -6,1.1 -8.7,1 -2.6,-0.2 -4,-1.2 -5.3,-1.4 -1.3,-0.1 -2.7,0.5 -4.8,0.9 -2.2,0.3 -5.2,0.3 -7,0.8 -1.9,0.5 -2.5,1.5 -2.9,2.3 -0.3,0.9 -0.3,1.5 -1,3.2 -0.6,1.7 -2,4.3 -3,5.8 -1,1.5 -1.6,1.9 -2.3,4.2 -0.7,2.3 -1.3,6.7 -1.3,9.2 0,2.5 0.6,3.1 1.3,5.5 0.7,2.3 1.3,6.3 1.7,8.3 0.3,2 0.3,2 0.5,2.3 0.1,0.4 0.5,1 0.5,3.4 0,2.3 -0.4,6.3 -1.2,8.8 -0.8,2.5 -2.2,3.5 -2.5,5.8 -0.3,2.4 0.3,6 2,8 1.7,2 4.3,2.4 6,2.9 1.7,0.5 2.3,1.1 2.7,2.8 0.3,1.7 0.3,4.3 -0.5,6.5 -0.9,2.2 -2.5,3.8 -3.7,5.7 -1.2,1.8 -1.8,3.8 -0.2,6.3 1.7,2.5 5.7,5.5 7.9,7 2.1,1.5 2.5,1.5 3.1,1.8 0.7,0.4 1.7,1 3.9,1 2.1,0 5.5,-0.6 8.1,0.5 2.7,1.2 4.7,4.2 5.7,6.2 1,2 1,3 1.7,4.5 0.6,1.5 2,3.5 3.1,4.7 1.2,1.1 2.2,1.5 3.2,1.6 1,0.2 2,0.2 2.7,0.2 0.6,0 1,0 2.6,2.8 1.7,2.9 4.7,8.5 6.2,11.4 1.5,2.8 1.5,2.8 1.8,2.6 0.4,-0.1 1,-0.5 2.9,-0.8 1.8,-0.3 4.8,-0.7 6.5,-1 1.6,-0.3 2,-0.7 4,-1 2,-0.3 5.6,-0.7 7.8,-0.7 2.2,0 2.8,0.4 4.2,-0.1 1.3,-0.5 3.3,-1.9 6,-2.4 2.6,-0.5 6,-0.1 7.8,0 1.8,0.2 2.2,0.2 4.5,0.4 2.3,0.1 6.7,0.5 9.3,1 2.7,0.5 3.7,1.1 4.4,1.8 0.6,0.7 1,1.3 2.3,2.8 1.3,1.5 3.7,3.9 4.8,5 1.2,1.2 1.2,1.2 1.4,1.4 0.1,0.1 0.5,0.5 2.5,1.5 2,1 5.6,2.6 8.3,3.1 2.7,0.5 4.3,-0.1 5.8,-2 1.5,-1.8 2.9,-4.8 4.2,-6.6 1.3,-1.9 2.7,-2.5 3.7,-2.9 1,-0.3 1.6,-0.3 2.3,-0.5 0.7,-0.1 1.3,-0.5 3.5,-0.5 2.2,0 5.8,0.4 8.8,-0.5 3,-0.8 5.4,-2.8 6.7,-3.8 1.3,-1 1.7,-1 2.7,-2.8 1,-1.9 2.6,-5.5 3.8,-7.4 1.2,-1.8 1.8,-1.8 3.5,-1.5 1.7,0.4 4.3,1 6.5,2.4 2.2,1.3 3.8,3.3 5.3,4.5 1.5,1.1 2.9,1.5 4,2.1 1.2,0.7 2.2,1.7 4.2,2.2 2,0.5 5,0.5 7.3,-1.8 2.4,-2.4 4,-7 4.5,-10 0.5,-3 -0.1,-4.4 0.2,-6.5 0.3,-2.2 1.7,-5.2 3,-6.9 1.3,-1.6 2.7,-2 5,-1.5 2.3,0.5 5.7,1.9 7.8,2.4 2.2,0.5 3.2,0.1 4.4,-1.4 1.1,-1.5 2.5,-4.1 3.1,-6 0.7,-1.8 0.7,-2.8 1.2,-4.5 0.5,-1.6 1.5,-4 2,-5.6 0.5,-1.7 0.5,-2.7 1.2,-4.4 0.6,-1.6 2,-4 2.5,-6 0.5,-2 0.1,-3.6 0.8,-5.3 0.7,-1.7 2.3,-3.3 3.3,-4.3 1,-1 1.4,-1.4 2.7,-2.7 1.3,-1.3 3.7,-3.7 4.8,-6 1.2,-2.3 1.2,-4.7 -0.6,-6.5 -1.9,-1.8 -5.5,-3.2 -7.4,-4.7 -1.8,-1.5 -1.8,-3.1 -0.3,-4.8 1.5,-1.7 4.5,-3.3 5.5,-5.2 1,-1.8 0,-3.8 1.2,-6 1.1,-2.1 4.5,-4.5 6.5,-6.6 2,-2.2 2.6,-4.2 2.8,-5.5 0.2,-1.4 -0.2,-2 -2.3,-2.7 -2.2,-0.7 -6.2,-1.3 -8.9,-1.3 -2.6,0 -4,0.6 -5.1,1 -1.2,0.3 -2.2,0.3 -4,1.3 -1.9,1 -4.5,3 -7.2,3.8 -2.7,0.9 -5.3,0.5 -7.3,-0.6 -2,-1.2 -3.4,-3.2 -4,-4.4 -0.7,-1.1 -0.7,-1.5 -1.7,-2.8 -1,-1.3 -3,-3.7 -3.8,-5.5 -0.9,-1.8 -0.5,-3.2 -2.2,-4.7 -1.7,-1.5 -5.3,-3.1 -7.7,-3.8 -2.3,-0.7 -3.3,-0.3 -5,-1.3 -1.6,-1 -4,-3.4 -6,-4.5 -2,-1.2 -3.6,-1.2 -5.3,-1.9 -1.7,-0.6 -3.3,-2 -4.7,-2.8 -1.3,-0.8 -2.3,-1.2 -3.3,-1.3 -1,-0.2 -2,-0.2 -2.7,-0.4 -0.6,-0.1 -1,-0.5 -3.1,-1 -2.2,-0.5 -6.2,-1.1 -8.2,-1.5 -2,-0.3 -2,-0.3 -2.5,-0.1 -0.5,0.1 -1.5,0.5 -3.3,0 -1.9,-0.5 -4.5,-1.9 -6.7,-2.4 -2.2,-0.5 -3.8,-0.1 -5.8,-0.5 -2,-0.3 -4.4,-1.3 -6.9,-1.5 -2.5,-0.1 -5.1,0.5 -6.6,1.4 -1.5,0.8 -1.9,1.8 -3.7,2.6 -1.8,0.9 -5.2,1.5 -7.5,1.4 -2.3,-0.2 -3.7,-1.2 -5.2,-1.5 -1.5,-0.4 -3.1,0 -4.6,-0.5 -1.5,-0.5 -2.9,-1.9 -4,-2.4 -1.2,-0.5 -2.2,-0.1 -3.9,-0.6 -1.6,-0.5 -4,-1.9 -6,-2.2 -2,-0.3 -3.6,0.3 -5.6,-0.7 -2,-1 -4.4,-3.6 -6.5,-4.8 -2.2,-1.2 -4.2,-0.8 -6,-2 -1.9,-1.2 -3.5,-3.8 -5.4,-5.2 -1.8,-1.3 -3.8,-1.3 -5.5,-1 -1.6,0.4 -3,1 -4.8,1.4 -1.8,0.3 -4.2,0.3 -5.3,0.3 -1.2,0 -1.2,0 -1.9,1.5"),S(K,"id","island_32"),S(K,"data-f","32"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 2309.5,895 c 1.8,-0.3 5.2,-0.7 7,-0.8 1.8,-0.2 2.2,-0.2 3.7,-0.5 1.5,-0.4 4.1,-1 6.3,-0.9 2.2,0.2 3.8,1.2 6.2,1.4 2.3,0.1 5.3,-0.5 7.1,-0.7 1.9,-0.2 2.5,0.2 4.2,-0.2 1.7,-0.3 4.3,-1.3 5.7,-1.8 1.3,-0.5 1.3,-0.5 3,-0.8 1.6,-0.4 5,-1 7,-1 2,0 2.6,0.6 4.5,1.1 1.8,0.5 4.8,0.9 6.6,0.9 1.9,0 2.5,-0.4 3.4,-0.2 0.8,0.2 1.8,0.8 3,2 1.1,1.2 2.5,2.8 4.1,4 1.7,1.2 3.7,1.8 4.9,2.8 1.1,1 1.5,2.4 3.6,3.8 2.2,1.5 6.2,3.1 8.2,3.9 2,0.8 2,0.8 2,0.8 0,0 0,0 0,5 0,5.1 0,15.1 0,20.2 0,5 0,5 0,5 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5.3 0,5.4 0,16 0,21.4 0,5.3 0,5.3 0,5.3 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12.2 0,12.1 0,36.5 0,48.6 0,12.2 0,12.2 0,12.2 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,15.9 0,15.8 0,47.5 0,63.4 0,15.8 0,15.8 0,15.8 0,0 0,0 -0.2,0.3 -0.1,0.3 -0.5,1 -1,1.5 -0.6,0.4 -1.5,0.8 -1.9,0.9 -0.4,0.2 -0.4,0.2 -0.4,0.2 0,0 0,0 -27.2,0 -27.3,0 -81.8,0 -109,0 -27.3,0 -27.3,0 -27.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -67.3,0 -67.4,0 -202,0 -269.4,0 -67.3,0 -67.3,0 -67.3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -134.6,0 -134.5,0 -403.6,0 -538.2,0 -134.5,0 -134.5,0 -134.5,0 0,0 0,0 -0.1,-0.2 -0.2,-0.1 -0.4,-0.5 -1.2,-0.5 -0.7,0 -2.1,0.4 -2.7,0.5 -0.7,0.2 -0.7,0.2 -0.7,0.2 0,0 0,0 -37.6,0 -37.6,0 -112.9,0 -150.5,0 -37.6,0 -37.6,0 -37.6,0 0,0 0,0 -0.9,-2 -0.9,-2 -2.6,-6 -3.2,-9.3 -0.5,-3.4 0.1,-6 0.3,-8.2 0.2,-2.2 -0.2,-3.8 0.3,-5.7 0.5,-1.8 1.9,-3.8 2.5,-6 0.7,-2.1 0.7,-4.5 1.2,-6.1 0.5,-1.7 1.5,-2.7 2.2,-4.7 0.6,-2 1,-5 2.1,-7.3 1.2,-2.4 3.2,-4 4.4,-5.4 1.1,-1.3 1.5,-2.3 3.1,-3.8 1.7,-1.5 4.7,-3.5 7.4,-4 2.6,-0.5 5,0.5 7.8,0.5 2.8,0 6.2,-1 8,-1.7 1.8,-0.6 2.2,-1 2.7,-1.3 0.5,-0.3 1.1,-0.7 2,-1.3 0.8,-0.7 1.8,-1.7 3.3,-2.4 1.5,-0.6 3.5,-1 4.7,-1.5 1.1,-0.5 1.5,-1.1 1.8,-1.6 0.3,-0.5 0.7,-0.9 2.3,-3.5 1.7,-2.7 4.7,-7.7 6.7,-10.2 2,-2.5 3,-2.5 4.8,-4 1.9,-1.5 4.5,-4.5 6.5,-5.8 2,-1.4 3.4,-1 4.4,-0.7 1,0.3 1.6,0.7 3.3,1 1.7,0.3 4.3,0.7 6.8,0.5 2.5,-0.2 4.9,-0.8 6,-1.2 1.2,-0.3 1.2,-0.3 3.4,-1.1 2.1,-0.9 6.5,-2.5 8.6,-3.4 2.2,-0.8 2.2,-0.8 3.7,-1.3 1.5,-0.5 4.5,-1.5 6.8,-1.5 2.4,0 4,1 4,2.7 0,1.6 -1.6,4 -1,5.5 0.7,1.5 3.7,2.1 5.4,3.1 1.6,1 2,2.4 3.1,3.5 1.2,1.2 3.2,2.2 4.4,2.7 1.1,0.5 1.5,0.5 3.5,1.2 2,0.6 5.6,2 8.8,1 3.2,-1 5.8,-4.4 7.5,-6 1.7,-1.7 2.3,-1.7 4,-3.2 1.7,-1.5 4.3,-4.5 5.8,-6 1.5,-1.5 1.9,-1.5 3.5,-0.5 1.7,1 4.7,3 6.5,4.8 1.9,1.9 2.5,3.5 3.4,4.7 0.8,1.2 1.8,1.8 3.8,1.8 2,0 5,-0.6 7.2,-1.6 2.1,-1 3.5,-2.4 4.6,-3 1.2,-0.7 2.2,-0.7 4,-1.4 1.9,-0.6 4.5,-2 6.2,-3.1 1.7,-1.2 2.3,-2.2 3.2,-2.9 0.8,-0.6 1.8,-1 3.6,-0.8 1.9,0.2 4.5,0.8 6.5,1 2,0.2 3.4,-0.2 5.7,0 2.3,0.2 5.7,0.8 7.8,1 2.2,0.2 3.2,-0.2 5.4,0 2.1,0.2 5.5,0.8 7.6,0.8 2.2,0 3.2,-0.6 5.7,-0.5 2.5,0.2 6.5,1.2 8.8,1.5 2.4,0.4 3,0 3.7,0 0.7,0 1.3,0.4 3.5,0.2 2.2,-0.2 5.8,-0.8 8.2,-1.7 2.3,-0.8 3.3,-1.8 5.6,-2 2.4,-0.1 6,0.5 8.4,0.5 2.3,0 3.3,-0.6 4.8,-0.3 1.5,0.3 3.5,1.7 5.5,1.7 2,0 4,-1.4 6.5,-1.9 2.5,-0.5 5.5,-0.1 7.3,0.4 1.9,0.5 2.5,1.1 4.9,1.1 2.3,0 6.3,-0.6 8.8,-0.8 2.5,-0.2 3.5,0.2 4.7,0.2 1.1,0 2.5,-0.4 3.3,-0.7 0.8,-0.3 1.2,-0.7 3.3,-1.3 2.2,-0.7 6.2,-1.7 8.5,-2.4 2.4,-0.6 3,-1 3.4,-1.1 0.3,-0.2 0.3,-0.2 1.8,-1.2 1.5,-1 4.5,-3 6.3,-5.5 1.9,-2.5 2.5,-5.5 3,-7.2 0.5,-1.6 0.9,-2 2.2,-1.5 1.3,0.5 3.7,1.9 5.7,2.2 2,0.3 3.6,-0.3 5.1,0.2 1.5,0.5 2.9,2.1 4.7,2.5 1.8,0.3 4.2,-0.7 6.2,-0.7 2,0 3.6,1 5.3,0.7 1.7,-0.4 3.3,-2 5.5,-2.5 2.2,-0.5 4.8,0.1 6.5,0.1 1.7,0 2.3,-0.6 4.5,-0.5 2.2,0.2 5.8,1.2 8.7,0.5 2.8,-0.6 4.8,-3 7,-4 2.1,-1 4.5,-0.6 6.3,1.2 1.8,1.8 3.2,5.2 5,7.3 1.8,2.2 4.2,3.2 5.3,4 1.2,0.9 1.2,1.5 1.2,1.9 0,0.3 0,0.3 0.3,2 0.4,1.6 1,5 1,7.5 0,2.5 -0.6,4.1 -0.5,6.5 0.2,2.3 1.2,5.3 2.2,7 1,1.6 2,2 3.7,1.3 1.6,-0.7 4,-2.3 5.1,-4.5 1.2,-2.2 1.2,-4.8 1.5,-6.5 0.4,-1.7 1,-2.3 1.4,-3.8 0.3,-1.5 0.3,-3.9 0.8,-5.4 0.5,-1.5 1.5,-2.1 2,-3.6 0.5,-1.5 0.5,-3.9 1,-5.7 0.5,-1.8 1.5,-3.2 2,-4.8 0.5,-1.7 0.5,-3.7 0.8,-5.4 0.4,-1.6 1,-3 1.5,-3.6 0.5,-0.7 0.9,-0.7 1.5,-1.7 0.7,-1 1.7,-3 3.5,-4.5 1.9,-1.5 4.5,-2.5 6.4,-2.8 1.8,-0.4 2.8,0 4.5,-0.2 1.6,-0.2 4,-0.8 5.5,-1.2 1.5,-0.3 2.1,-0.3 3.5,-0.5 1.3,-0.1 3.3,-0.5 4.6,-0.8 1.4,-0.3 2,-0.7 3.4,-1 1.3,-0.3 3.3,-0.7 5.1,-1.2 1.9,-0.5 3.5,-1.1 4.5,-1.5 1,-0.3 1.4,-0.3 3,-1.1 1.7,-0.9 4.7,-2.5 6.2,-3.4 1.5,-0.8 1.5,-0.8 2.5,-1.1 1,-0.4 3,-1 4.8,-1.2 1.9,-0.2 3.5,0.2 5,-0.2 1.5,-0.3 2.9,-1.3 5,-1.1 2.2,0.1 5.2,1.5 6.9,2 1.6,0.5 2,0.1 4,0.1 2,0 5.6,0.4 7.8,0.4 2.2,0 2.8,-0.4 3.3,-1 0.5,-0.7 0.9,-1.7 2,-2.7 1.2,-1 3.2,-2 4.9,-3.5 1.6,-1.5 3,-3.5 4.6,-4.8 1.7,-1.4 3.7,-2 5.2,-2.9 1.5,-0.8 2.5,-1.8 4.8,-2.5 2.4,-0.6 6,-1 8,-1.6 2,-0.7 2.4,-1.7 3.5,-2.9 1.2,-1.1 3.2,-2.5 4.5,-4.1 1.4,-1.7 2,-3.7 3.5,-5.4 1.5,-1.6 3.9,-3 5.5,-3.6 1.7,-0.7 2.7,-0.7 3.5,-0.9 0.9,-0.1 1.5,-0.5 3.2,-0.1 1.7,0.3 4.3,1.3 6.8,1 2.5,-0.4 4.9,-2 7.2,-2.4 2.3,-0.3 4.7,0.7 6.5,1 1.8,0.4 3.2,0 4.3,-0.5 1.2,-0.5 2.2,-1.1 3.7,-1.6 1.5,-0.5 3.5,-0.9 4.5,-1 1,-0.2 1,-0.2 2.7,-0.2 1.6,0 5,0 7,0.5 2,0.5 2.6,1.5 6,2.2 3.3,0.6 9.3,1 12.8,0.8 3.5,-0.2 4.5,-0.8 6.3,-0.7 1.9,0.2 4.5,1.2 6.7,1.2 2.2,0 3.8,-1 5,-1.5 1.2,-0.5 1.8,-0.5 3.3,-0.8 1.5,-0.4 3.9,-1 6.5,-0.9 2.7,0.2 5.7,1.2 7.4,1.5 1.6,0.4 2,0 3.6,0.4 1.7,0.3 4.7,1.3 7,1.5 2.4,0.1 4,-0.5 5.7,-2.2 1.7,-1.7 3.3,-4.3 4.5,-6 1.2,-1.7 1.8,-2.3 2.3,-2.7 0.5,-0.3 0.9,-0.3 1.9,-0.6 1,-0.4 2.6,-1 4,-1.5 1.3,-0.5 2.3,-0.9 5,-1.7 2.6,-0.8 7,-2.2 9.5,-2.8 2.5,-0.7 3.1,-0.7 4.3,-1 1.2,-0.4 2.8,-1 5.2,-1.2 2.3,-0.2 5.3,0.2 6.8,0.3 1.5,0.2 1.5,0.2 3.3,-0.3 1.9,-0.5 5.5,-1.5 8.7,-1.7 3.2,-0.1 5.8,0.5 7.5,1.2 1.7,0.7 2.3,1.3 3.8,2.2 1.5,0.8 3.9,1.8 5.2,2.5 1.3,0.6 1.7,1 3.3,2.6 1.7,1.7 4.7,4.7 6.4,6.4 1.6,1.6 2,2 3.5,2.5 1.5,0.5 4.1,1.1 6.5,1 2.3,-0.2 4.3,-1.2 7,-1 2.6,0.1 6,1.5 8.3,2 2.3,0.5 3.7,0.1 6.3,0.5 2.7,0.3 6.7,1.3 9,1.8 2.4,0.5 3,0.5 4,-0.2 1,-0.6 2.4,-2 4.5,-2.3 2.2,-0.3 5.2,0.3 7.9,0 2.6,-0.3 5,-1.7 7.5,-1.5 2.5,0.2 5.1,1.8 8,2 2.8,0.2 5.8,-1.2 8,-1.3 2.1,-0.2 3.5,0.8 5.3,1.3 1.8,0.5 4.2,0.5 6.5,-0.5 2.3,-1 4.7,-3 6.2,-4.2 1.5,-1.1 2.1,-1.5 3,-2 0.8,-0.5 1.8,-1.1 3.3,-1.3 1.5,-0.2 3.5,0.2 5.8,-0.2 2.4,-0.3 5,-1.3 7.2,-1.5 2.2,-0.1 3.8,0.5 5.3,1.7 1.5,1.2 2.9,2.8 3.4,4.5 0.5,1.7 0.1,3.3 -0.4,4.7 -0.5,1.3 -1.1,2.3 -1.1,4.6 0,2.4 0.6,6 0.8,8.4 0.2,2.3 -0.2,3.3 0.8,5 1,1.6 3.4,4 4.5,5.5 1.2,1.5 1.2,2.1 2.2,3.6 1,1.5 3,3.9 4,5 1,1.2 1,1.2 1.7,2.2 0.6,1 2,3 2.6,4.8 0.7,1.9 0.7,3.5 1.2,5.4 0.5,1.8 1.5,3.8 4,5 2.5,1.1 6.5,1.5 8.5,1.6 2,0.2 2,0.2 2.5,1.4 0.5,1.1 1.5,3.5 2.2,4.8 0.6,1.3 1,1.7 1.8,3.2 0.8,1.5 2.2,4.1 3.8,5.8 1.7,1.7 3.7,2.3 5.5,0.8 1.9,-1.5 3.5,-5.1 6,-6.6 2.5,-1.5 5.9,-0.9 7.9,-0.2 2,0.7 2.6,1.3 4.8,2.3 2.2,1 5.8,2.4 8,3 2.2,0.7 2.8,0.7 3.7,-0.6 0.8,-1.4 1.8,-4 2.1,-6.2 0.4,-2.2 0,-3.8 -1.1,-5.7 -1.2,-1.8 -3.2,-3.8 -4,-5.1 -0.9,-1.4 -0.5,-2 -1.4,-4.2 -0.8,-2.2 -2.8,-5.8 -5.1,-7.3 -2.4,-1.5 -5,-0.9 -7.4,-1.4 -2.3,-0.5 -4.3,-2.1 -6,-3.1 -1.6,-1 -3,-1.4 -3.6,-1.5 -0.7,-0.2 -0.7,-0.2 -0.7,-1.4 0,-1.1 0,-3.5 -0.3,-5.6 -0.4,-2.2 -1,-4.2 -0.9,-6.4 0.2,-2.1 1.2,-4.5 1.2,-7 0,-2.5 -1,-5.1 -1.7,-6.6 -0.6,-1.5 -1,-1.9 -1.3,-2.9 -0.3,-1 -0.7,-2.6 0.3,-4.6 1,-2 3.4,-4.4 5.7,-5.5 2.3,-1.2 4.7,-1.2 6.5,-2 1.8,-0.9 3.2,-2.5 5.2,-3.5 2,-1 4.6,-1.4 6.1,-1.7 1.5,-0.3 1.9,-0.7 3.2,-1.3 1.3,-0.7 3.7,-1.7 6.5,-1.5 2.8,0.1 6.2,1.5 8.7,2 2.5,0.5 4.1,0.1 5.3,0 1.2,-0.2 1.8,-0.2 3.7,-1.2 1.8,-1 4.8,-3 7.6,-3.7 2.9,-0.6 5.5,0 7,0.2 1.5,0.2 1.9,-0.2 3.9,0.3 2,0.5 5.6,1.9 7.8,2.2 2.2,0.3 2.8,-0.3 4.3,-0.2 1.5,0.2 3.9,1.2 5.4,2.4 1.5,1.1 2.1,2.5 4.1,2.8 2,0.3 5.4,-0.3 7.2,-0.3 1.8,0 2.2,0.6 4.2,1.5 2,0.8 5.6,1.8 7.8,2 2.2,0.1 2.8,-0.5 3.5,-0.7 0.7,-0.2 1.3,0.2 3,-0.2 1.7,-0.3 4.3,-1.3 6.3,-2 2,-0.6 3.4,-1 4.9,-2.3 1.5,-1.3 3.1,-3.7 5.3,-4.5 2.2,-0.8 4.8,-0.2 6.8,1.3 2,1.5 3.4,3.9 4.7,5 1.3,1.2 2.7,1.2 4.8,0.2 2.2,-1 5.2,-3 7.2,-3.7 2,-0.6 3,0 4.8,-0.3 1.9,-0.3 4.5,-1.7 7.4,-1.3 2.8,0.3 5.8,2.3 7.5,3.3 1.6,1 2,1 3,1 1,0 2.6,0 4.6,1.3 2,1.4 4.4,4 5.5,5.7 1.2,1.7 1.2,2.3 3.4,3.8 2.1,1.5 6.5,3.9 8.6,5 2.2,1.2 2.2,1.2 3.7,0.7 1.5,-0.5 4.5,-1.5 6.2,-1.8 1.6,-0.4 2,0 3.5,-0.4 1.5,-0.3 4.1,-1.3 6.5,-1 2.3,0.4 4.3,2 6,2.2 1.6,0.2 3,-1.2 5,-0.8 2,0.3 4.6,2.3 6.6,2.1 2,-0.1 3.4,-2.5 5.7,-3 2.3,-0.5 5.7,0.9 7.5,1.7 1.8,0.8 2.2,1.2 3.7,1.3 1.5,0.2 4.1,0.2 6.3,0.9 2.2,0.6 3.8,2 5.5,2.5 1.7,0.5 3.3,0.1 5,-0.7 1.7,-0.8 3.3,-2.2 4.7,-2.8 1.3,-0.7 2.3,-0.7 4.3,-2 2,-1.4 5,-4 6.8,-5.4 1.9,-1.3 2.5,-1.3 4,-2.5 1.5,-1.1 3.9,-3.5 5.9,-4.8 2,-1.3 3.6,-1.7 5,-1.8 1.3,-0.2 2.3,-0.2 4.3,-0.9 2,-0.6 5,-2 6.8,-3.6 1.9,-1.7 2.5,-3.7 4.5,-5.7 2,-2 5.4,-4 7.2,-5 1.8,-1 2.2,-1 3.5,-1.8 1.3,-0.9 3.7,-2.5 5.8,-3.4 2.2,-0.8 4.2,-0.8 5.9,-1.5 1.6,-0.6 3,-2 5.1,-3 2.2,-1 5.2,-1.6 7.4,-1.8 2.1,-0.2 3.5,0.2 4.6,1.2 1.2,1 2.2,2.6 4,4 1.9,1.3 4.5,2.3 6.9,2.3 2.3,0 4.3,-1 6,-3.2 1.6,-2.1 3,-5.5 4.5,-7.8 1.5,-2.3 3.1,-3.7 4,-4.5 0.8,-0.8 0.8,-1.2 2.8,-1.5 2,-0.3 6,-0.7 8.5,-0.3 2.5,0.3 3.5,1.3 6.3,1.6 2.9,0.4 7.5,0 9.9,-0.1 2.3,-0.2 2.3,-0.2 4.6,0.1 2.4,0.4 7,1 10,0.9 3,-0.2 4.4,-1.2 5.2,-2 0.8,-0.9 1.2,-1.5 1.8,-2.4 0.7,-0.8 1.7,-1.8 2.5,-4.1 0.9,-2.4 1.5,-6 2.2,-8.4 0.7,-2.3 1.3,-3.3 3.2,-3.8 1.8,-0.5 4.8,-0.5 6.5,-0.7 1.6,-0.1 2,-0.5 3.5,-0.6 1.5,-0.2 4.1,-0.2 6.1,0.1 2,0.4 3.4,1 5,0.7 1.7,-0.3 3.7,-1.7 5.9,-1.8 2.1,-0.2 4.5,0.8 6.6,1 2.2,0.1 4.2,-0.5 5.7,-0.5 1.5,0 2.5,0.6 4,0.8 1.5,0.2 3.5,-0.2 5,-0.5 1.5,-0.3 2.5,-0.7 4.7,0 2.1,0.7 5.5,2.3 8.5,3 3,0.7 5.6,0.3 7.6,0.5 2,0.2 3.4,0.8 4.4,1.3 1,0.5 1.6,0.9 2.6,2 1,1.2 2.4,3.2 3.4,4.4 1,1.1 1.6,1.5 2.6,3 1,1.5 2.4,4.1 4.4,5.6 2,1.5 4.6,1.9 6.6,0.2 2,-1.7 3.4,-5.3 4,-7.2 0.7,-1.8 0.7,-1.8 0,-3.6 -0.6,-1.9 -2,-5.5 -2.1,-8.5 -0.2,-3 0.8,-5.4 1.1,-6.7 0.4,-1.3 0,-1.7 0.4,-3.8 0.3,-2.2 1.3,-6.2 2.8,-8.9 1.5,-2.6 3.5,-4 5.2,-4.5 1.6,-0.5 3,-0.1 3.8,-0.1 0.8,0 1.2,-0.4 3,-0.7"),S(K,"id","island_33"),S(K,"data-f","33"),S(K,"inkscape:connector-curvature","0")]),O),H(Q,"path",F([S(K,"d","m 0,1174 c 0,0 0,0 16.9,0 17,0 50.9,0 67.8,0 17,0 17,0 17,0 0,0 0,0 0.5,-0.2 0.6,-0.1 1.7,-0.5 2.6,-0.5 0.9,0 1.5,0.4 1.9,0.5 0.3,0.2 0.3,0.2 0.3,0.2 0,0 0,0 21.7,0 21.6,0 65,0 86.6,0 21.7,0 21.7,0 21.7,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 77.8,0 77.9,0 233.5,0 311.4,0 77.8,0 77.8,0 77.8,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 8.6,0 8.5,0 25.6,0 34.2,0 8.6,0 8.6,0 8.6,0 0,0 0,0 0.2,-1.5 0.3,-1.5 0.9,-4.5 2.1,-7.2 1.3,-2.6 3.3,-5 4.3,-7.3 1,-2.3 1,-4.7 0.8,-6 -0.1,-1.3 -0.5,-1.7 -1.5,-2 -1,-0.3 -2.6,-0.7 -4.1,-2.2 -1.5,-1.5 -2.9,-4.1 -3.2,-6.3 -0.3,-2.2 0.3,-3.8 0,-5.7 -0.3,-1.8 -1.7,-3.8 -2.2,-5.8 -0.5,-2 -0.1,-4 1.2,-5.5 1.3,-1.5 3.7,-2.5 5,-3.3 1.3,-0.9 1.7,-1.5 3.5,-2.7 1.8,-1.2 5.2,-2.8 7,-3.8 1.8,-1 2.2,-1.4 4,-2.7 1.8,-1.3 5.2,-3.7 7.5,-4.5 2.3,-0.8 3.7,-0.2 5.7,-1.8 2,-1.7 4.6,-5.7 4.5,-8.4 -0.2,-2.6 -3.2,-4 -5.9,-4.6 -2.6,-0.7 -5,-0.7 -6.3,-0.4 -1.3,0.4 -1.7,1 -3,1.7 -1.3,0.7 -3.7,1.3 -5.3,2.5 -1.7,1.2 -2.7,2.8 -3.9,3.8 -1.1,1 -2.5,1.4 -4.6,0.9 -2.2,-0.5 -5.2,-1.9 -6.9,-3.4 -1.6,-1.5 -2,-3.1 -2.6,-4.5 -0.7,-1.3 -1.7,-2.3 -2.2,-3.6 -0.5,-1.4 -0.5,-3 -1.5,-4.7 -1,-1.7 -3,-3.3 -4.2,-4.5 -1.1,-1.2 -1.5,-1.8 -2.6,-3.3 -1.2,-1.5 -3.2,-3.9 -5,-5.4 -1.9,-1.5 -3.5,-2.1 -4.9,-2.1 -1.3,0 -2.3,0.6 -4.5,0.5 -2.1,-0.2 -5.5,-1.2 -8.3,-1 -2.8,0.1 -5.2,1.5 -6.5,2.1 -1.3,0.7 -1.7,0.7 -3.3,1.4 -1.7,0.6 -4.7,2 -6.4,2.6 -1.6,0.7 -2,0.7 -3.1,0.2 -1.2,-0.5 -3.2,-1.5 -4.5,-1.8 -1.4,-0.4 -2,0 -4.9,0 -2.8,0 -7.8,-0.4 -10.5,-0.4 -2.6,0 -3,0.4 -3.3,1 -0.3,0.7 -0.7,1.7 -1.8,3.2 -1.2,1.5 -3.2,3.5 -4.2,5.3 -1,1.9 -1,3.5 -2.8,5.2 -1.9,1.7 -5.5,3.3 -8.4,3.3 -2.8,0 -4.8,-1.6 -6.6,-2.1 -1.9,-0.5 -3.5,0.1 -4.9,1 -1.3,0.8 -2.3,1.8 -3.8,2.8 -1.5,1 -3.5,2 -5.2,4.7 -1.6,2.6 -3,7 -3.6,9.1 -0.7,2.2 -0.7,2.2 -2.2,2 -1.5,-0.1 -4.5,-0.5 -6.3,-0.8 -1.9,-0.3 -2.5,-0.7 -5.2,0.3 -2.7,1 -7.3,3.4 -10.5,3.9 -3.2,0.5 -4.8,-0.9 -6,-1.7 -1.2,-0.8 -1.8,-1.2 -2.7,-1.7 -0.8,-0.5 -1.8,-1.1 -3.6,-1.5 -1.9,-0.3 -4.5,-0.3 -6.5,0 -2,0.4 -3.4,1 -5.2,1 -1.8,0 -4.2,-0.6 -6.2,-2.6 -2,-2 -3.6,-5.4 -4.6,-7 -1,-1.7 -1.4,-1.7 -2.2,-3.2 -0.8,-1.5 -2.2,-4.5 -3.5,-6.3 -1.3,-1.9 -2.7,-2.5 -3.8,-3.4 -1.2,-0.8 -2.2,-1.8 -3.7,-2.1 -1.5,-0.4 -3.5,0 -5.7,-0.4 -2.1,-0.3 -4.5,-1.3 -6.8,-1.1 -2.3,0.1 -4.7,1.5 -6.7,1.8 -2,0.3 -3.6,-0.3 -6,0 -2.3,0.3 -5.3,1.7 -7,2.3 -1.6,0.7 -2,0.7 -3.1,-0.8 -1.2,-1.5 -3.2,-4.5 -4.2,-6.2 -1,-1.6 -1,-2 -1.3,-2.6 -0.4,-0.7 -1,-1.7 -2.2,-2.5 -1.2,-0.9 -2.8,-1.5 -5.2,-1 -2.3,0.5 -5.3,2.1 -7.5,2.6 -2.1,0.5 -3.5,-0.1 -4.3,-1.1 -0.8,-1 -1.2,-2.4 -1.2,-3.4 0,-1 0.4,-1.6 -0.3,-3.8 -0.7,-2.2 -2.3,-5.8 -3.3,-7.7 -1,-1.8 -1.4,-1.8 -3,-0.8 -1.7,1 -4.7,3 -6.2,4 -1.5,1 -1.5,1 -3.5,1.8 -2,0.9 -6,2.5 -8,3.4 -2,0.8 -2,0.8 -2.8,-0.2 -0.9,-1 -2.5,-3 -4.2,-3.8 -1.7,-0.9 -3.3,-0.5 -5.8,-1.9 -2.5,-1.3 -5.9,-4.3 -7.7,-5.6 -1.8,-1.4 -2.2,-1 -4.2,-0.7 -2,0.3 -5.6,0.7 -7.8,0.5 -2.2,-0.2 -2.8,-0.8 -4.8,-1.5 -2,-0.7 -5.4,-1.3 -7.5,-1.2 -2.2,0.2 -3.2,1.2 -4.5,1.7 -1.4,0.5 -3,0.5 -5.2,1.7 -2.2,1.1 -4.8,3.5 -7,4 -2.2,0.5 -3.8,-0.9 -5.7,-1.4 -1.8,-0.5 -3.8,-0.1 -5.3,-0.3 -1.5,-0.2 -2.5,-0.8 -4.2,-1 -1.6,-0.2 -4,0.2 -6.1,-0.5 -2.2,-0.7 -4.2,-2.3 -5.9,-2.8 -1.6,-0.5 -3,0.1 -5,0 -2,-0.2 -4.6,-1.2 -6.8,-1.5 -2.2,-0.4 -3.8,0 -5.3,-0.4 -1.5,-0.3 -2.9,-1.3 -4.5,-1.8 -1.7,-0.5 -3.7,-0.5 -5.7,0.3 -2,0.9 -4,2.5 -6,3.5 -2,1 -4,1.4 -5.7,2.4 -1.6,1 -3,2.6 -4.1,3.5 -1.2,0.8 -2.2,0.8 -4.7,-0.2 -2.5,-1 -6.5,-3 -8.5,-4 -2,-1 -2,-1 -3.3,-1.3 -1.4,-0.4 -4,-1 -6.2,-2.7 -2.2,-1.7 -3.8,-4.3 -5.5,-6 -1.7,-1.7 -3.3,-2.3 -4.3,-3.2 -1,-0.8 -1.4,-1.8 -3.4,-2.5 -2,-0.6 -5.6,-1 -7.5,-1.1 -1.8,-0.2 -1.8,-0.2 -3.1,-0.5 -1.4,-0.4 -4,-1 -6,-2.7 -2,-1.7 -3.4,-4.3 -3.9,-6.5 -0.5,-2.2 -0.1,-3.8 -1,-5.5 -0.8,-1.7 -2.8,-3.3 -4.1,-4.2 -1.4,-0.8 -2,-0.8 -3.9,-1.6 -1.8,-0.9 -4.8,-2.5 -6.5,-4.4 -1.6,-1.8 -2,-3.8 -3.6,-5.1 -1.7,-1.4 -4.7,-2 -6.9,-1.9 -2.1,0.2 -3.5,1.2 -5,1.5 -1.5,0.4 -3.1,0 -5.1,0.2 -2,0.2 -4.4,0.8 -6.5,0.7 -2.2,-0.2 -4.2,-1.2 -5.9,-1.5 -1.6,-0.4 -3,0 -4.1,0.6 -1.2,0.7 -2.2,1.7 -2.9,2.5 -0.6,0.9 -1,1.5 -2,3 -1,1.5 -2.6,3.9 -4.3,5.4 -1.7,1.5 -3.3,2.1 -5.7,1.6 -2.3,-0.5 -5.3,-2.1 -7.3,-2.6 -2,-0.5 -3,0.1 -4,0.3 -1,0.2 -2,-0.2 -3.8,0.8 -1.9,1 -4.5,3.4 -6.9,3.9 -2.3,0.5 -4.3,-0.9 -4.8,-3.2 -0.5,-2.3 0.5,-5.7 0.2,-7.8 -0.4,-2.2 -2,-3.2 -3.2,-4.5 -1.2,-1.4 -1.8,-3 -3,-4.4 -1.2,-1.3 -2.8,-2.3 -4.3,-3 -1.5,-0.6 -2.9,-1 -5,0 -2.2,1 -5.2,3.4 -7,4.5 -1.9,1.2 -2.5,1.2 -3.9,1.7 -1.3,0.5 -3.3,1.5 -4.5,3 -1.1,1.5 -1.5,3.5 -2.5,4.8 -1,1.4 -2.6,2 -5.1,2 -2.5,0 -5.9,-0.6 -7.9,-1.8 -2,-1.2 -2.6,-2.8 -2.3,-5.3 0.3,-2.5 1.7,-5.9 2.3,-8 0.7,-2.2 0.7,-3.2 0.4,-4 -0.4,-0.9 -1,-1.5 -1.4,-2.9 -0.3,-1.3 -0.3,-3.3 -0.1,-4.6 0.1,-1.4 0.5,-2 0.8,-3.7 0.3,-1.7 0.7,-4.3 -0.7,-6.8 -1.3,-2.5 -4.3,-4.9 -6.6,-5.9 -2.4,-1 -4,-0.6 -5.7,-1.1 -1.7,-0.5 -3.3,-1.9 -4.3,-3.4 -1,-1.5 -1.4,-3.1 -2.9,-5.1 -1.5,-2 -4.1,-4.4 -5.6,-5.9 -1.5,-1.5 -1.9,-2.1 -2.2,-2.5 -0.3,-0.3 -0.7,-0.3 -2,-0.3 -1.3,0 -3.7,0 -5.8,-0.5 -2.2,-0.5 -4.2,-1.5 -6,-1.7 -1.9,-0.1 -3.5,0.5 -5.5,0.4 -2,-0.2 -4.4,-1.2 -6.2,-1.2 -1.8,0 -3.2,1 -4.8,1 -1.7,0 -3.7,-1 -5.5,-0.8 -1.9,0.1 -3.5,1.5 -5.2,2.1 -1.7,0.7 -3.3,0.7 -4.7,1 -1.3,0.4 -2.3,1 -4.5,1 -2.1,0 -5.5,-0.6 -7.1,-1 C 61,956 61,956 59,956.5 c -2,0.5 -6,1.5 -7.8,0.3 -1.9,-1.1 -1.5,-4.5 0.1,-7.3 1.7,-2.8 4.7,-5.2 6.2,-6.3 1.5,-1.2 1.5,-1.2 1.5,-1.4 0,-0.1 0,-0.5 -0.3,-1.8 -0.4,-1.3 -1,-3.7 -3.4,-5.7 -2.3,-2 -6.3,-3.6 -8.3,-5.5 -2,-1.8 -2,-3.8 -3.3,-5.6 -1.4,-1.9 -4,-3.5 -5.9,-5.5 -1.8,-2 -2.8,-4.4 -3.8,-5.9 -1,-1.5 -2,-2.1 -4.2,-2.8 -2.1,-0.7 -5.5,-1.3 -7.1,-1.8 -1.7,-0.5 -1.7,-0.9 -2.4,-1.4 -0.6,-0.5 -2,-1.1 -5.5,-1.3 -3.5,-0.2 -9.1,0.1 -12,0.2 -2.8,0.2 -2.8,0.2 -2.8,0.2 0,0 0,0 0,44.8 0,44.9 0,134.6 0,179.4 0,44.9 0,44.9 0,44.9"),S(K,"id","island_34"),S(K,"data-f","34"),S(K,"inkscape:connector-curvature","0")]),O)]))])),H(Q,"g",F([S(K,"id","ice"),S(K,"style","display:inline;shape-rendering:geometricPrecision;-webkit-filter:url(#dropShadow05)"),S(K,"transform","matrix(0.8338575,0,0,0.85282028,-0.64865472,-0.40433722)"),S(K,"filter","url(#dropShadow05)"),S(K,"stroke-width","3"),S(K,"stroke","#e8f0f6"),S(K,"fill","#e8f0f6"),S(K,"opacity","0.35")]),F([H(Q,"path",F([S(K,"id","polygon392"),S(K,"class",""),S(K,"d","M 117,-17 103.36328,-2.3886719 86.910156,-12.443359 87,-13 84,-16 61.945312,-1.6152344 51.958984,-7.4414062 52,-8 51,-9 38.244141,-2.1308594 16,-6 H 15 L 15.05273,-4.8417969 -2,-2 -13,18 -9,22 16.132812,16.199219 18,19 31,22 38.611328,6.7773438 49,20 l -9,7 2,4 4,3 17,-2 1,-1 L 66,21 55.351562,19.667969 68,21 70.083984,18.916016 82,18 82.117188,17.279297 85,18 h 9 l 5,5 22,-5 v -5 l 5.65234,-4.7109375 16.5293,7.3476565 L 143,16 v 4 l 6,8 12,-6 5.38477,-9.871094 L 184,18 188,14 187.9883,13.91797 198,13.083984 V 14 h 14 l 8,6 1,-0.888672 V 22 l 8,12 h 2 L 240,13 234.48242,12.498047 241,13 245.16602,12.166016 250,17 268.53125,9.1972656 272,17 272.93359,17.220703 270,27 l 15,5 3,-6 -1,-5 -9.33398,-2.666016 L 289,21 290,17 289.75586,16.59375 301.75391,10.132812 307,18 321.29492,11.328125 329.39844,20.332031 310,31 v 1 l 12,10 9,-7 2,-13 v -0.25 l 1,0.25 1,-1 -0.0703,-1.888672 L 355.13672,-0.17578125 357,11 l 12,19 4,-2 0.19336,-0.962891 L 389,30 h 1 L 389.00391,13.066406 390,13 393,9 394.44531,8.2773438 402,13 408.99219,10.503906 403,13 l 1,14 15,-4 1,-6 14.40039,-4.800781 L 440,15 447.67773,9.2421875 453,19 468.91406,12.447266 469,13 l 1,3 16,6 12,-5 1,-2 2,-2 0.10938,-0.283203 L 517,23 l 8.83008,-3.923828 9.1543,0.832031 L 535,20 v 1 L 548.16406,20.123047 552,23 574,18 v -1 l -0.0566,-0.09375 8.14844,-0.814453 L 584,18 600,18.941406 V 19 l 5,7 L 617.9707,14.882812 618,15 l 6,4 0.95703,0.136719 L 621,32 l 14,-1 -2,-7 19,-6 15,8 h 2 l 8.35742,-13 H 681 l 9.4375,-2.832031 11.6875,4.496093 L 702,15 l 3,5 h 1 l -3,8 21,11 4,-5 -13,-14 h -1 l 11.69141,-8.769531 7.51367,2.503906 L 733,14 l 4,8 20,-2 1,-1 -0.0352,-0.138672 L 764,18 l 11.65234,-8.7382812 0.0195,0.00781 L 765,18 l 12,13 6,-1 6,-12 -1,-3 -7.99609,-3.998047 9.16211,3.664063 L 789,15 l 1,3 8,3 18,-3 5,-3 0.0391,-0.320312 11.56446,-3.558594 L 839,23 849.26758,21.132812 855,24 870,12 870.70117,9.1914062 891.06641,14.746094 891,15 l 1,3 12.56641,-3.867188 0.0644,0.01563 L 895,18 913,29 h 1 L 918,18 908.24414,14.998047 921,18 921.78516,17.607422 922,18 936.40039,14.400391 941,19 954.125,18.0625 960,21 l 8,1 5,-5 -0.0293,-0.07031 12.06446,-0.861329 L 986,18 1005.1309,15.130859 1008,18 1018.084,17.083984 1020,19 1030.666,18.333984 1022,19 l 3,9 1,2 h 13 L 1035.0195,18.060547 1036,18 1037.7266,11.097656 1052,13 1056.6406,8.359375 1072,17 l 4,-4 -0.062,-0.275391 15.2441,-4.4843746 L 1094,12 1095.0039,12.04492 1096,27 l 3,3 10,-3 9,-11 7,3 h 1 v 15 l 11,3 5,-4 -4,-14 h 1 l 8,-7 14,6 8.5176,-6.625 L 1180,19 l 7,-2 0.01,-0.130859 L 1209,14 l 0.5996,-1.199219 14.8848,7.441407 L 1224,21 l 2,1 19,-9 1.6328,-4.0800781 0.252,0.3671875 L 1245,14 l 1,14 v 1 h 7 l 3,-6 -4.502,-7.003906 L 1257,24 1264.4961,14.628906 1265,15 1271.2227,13.222656 1274,16 h 15 l 2,2 0.9883,0.06641 L 1290,29 l 9,3 5,-13 -8,-0.666016 L 1306,19 1310.1953,15.644531 1322,22 l 11,-7 h 2 l 13,7 5.5996,-3.732422 L 1362,22 h 8 L 1372.9043,4.5761719 1393.2148,17.5 1393,18 v 1 l 17,4 11.5,-7.666016 L 1424,17 l 21,1 1,-1 h 2 l 18,6 9,-10 0.7383,-1.478516 L 1492,23 h 3 l 0.2734,-0.544922 L 1498,27 l 15,1 5,-9 10,3 L 1540.4004,9.5996094 1544,15 1553.166,18.666016 1553,19 1553.5938,18.837891 1554,19 l 0.1406,-0.310547 19.6367,-5.355469 L 1574,14 l 2,4 14,4 7.8789,-8.865234 L 1610,15 l 6,-5 0.1152,-0.2773438 L 1632,20 l -1,8 3,3 h 3 l 12,-6 1,-4 -6,-9 -8,2 8.6152,-2.871094 L 1650,21 1659.0117,18.496094 1651,21 l -1,4 7,8 12,-11 -1,-5 15.2969,-5.736328 L 1692,19 1703.2949,16.175781 1708,19 l 2,-1 0.4199,-0.677734 L 1731,22 1734.7148,19.214844 1744,22 l 9.8008,-7.839844 0.016,0.0039 L 1745,22 l 3,12 11,3 10,-5 v -1 l -11,-16 11.5762,-6.7539062 0.022,0.00977 L 1759,15 l 11,16 1,-1 6.8398,-11.724609 L 1778,19 1778.9434,19.105469 1773,30 l 19,3 2,-3 V 21 L 1784,19.666016 1796,21 v 9 l 16,7 6,-4 v -3 l -4,-12 -7,-4 -7,1 6.3145,-1.804688 L 1814,18 1832.3457,8.3457031 1840,16 l 2,5 2,3 1,1 20,-8 -0.033,-0.322266 15.9609,-5.320312 L 1881,12 l 3,5 13,1 4.9434,-5.931641 L 1915,13 l 2,-1 V 11.9375 L 1931.0801,11.056641 1938,16 h 4 l 6,5 14,-3 3.7656,-1.882812 L 1978,18 l 0.7734,-0.773438 15.293,4.498047 L 1994,22 l 1,2 h 2 L 2012.916,13.701172 2013,14 l 6,7 8,-1 4.7676,-2.861328 L 2042,19 2042.3125,18.445312 2049,28 l 9,1 0.8242,-2.470703 L 2059,27 2066.918,17.101562 2084,19 v -0.460938 l 11.1035,5.978516 L 2095,25 v 1 l 12,-4 7.6211,-8.574219 L 2130,24 l 7,-6 -0.061,-0.1875 8.291,-1.658203 L 2151,20 h 13 l 0.8828,-0.882812 L 2179,21 2183.834,14.232422 2201,19 l 3,-2 h 10 l 4,-4 -0.01,-0.08984 L 2228,12 l 9,8 15,-2 1,-3 -0.1875,-0.324219 3.7637,-1.505859 L 2273,18 2279.7695,14.615234 2284,18 2298.1426,16.115234 2303,20 2316.8691,10.753906 2317,11 l 7,4 h 3 l 7,-3 0.096,-0.177734 L 2349,23 2356,13 2365.2598,9.296875 2372,17 l 4,-2 17.0527,4.421875 L 2378,16 l -3,1 v 4 l 17,7 6,-2 1.9199,-4.798828 L 2403,22 l 4,-4 -8,-18 -5,-2 -10,-11 -18.4863,9.7304688 L 2348,-13 2340.2285,-5.2285156 2314,-13 l -5,9 0.07,0.1328125 -5.293,0.7558594 L 2304,-4 l -24,-3 -0.055,1.140625 -13.1562,1.7539062 L 2247,-14 2241.0996,-6.1328125 2216.0137,-9.8496094 2216,-10 l -2,-3 -20.7539,8.4902344 L 2193,-5 2181,-7 2166.4141,-2.1386719 2150.9492,-5.7773438 2151,-6 l -4,-5 -17.8691,6.9492188 -15.127,-0.890625 L 2114,-5 2113,-6 2101.1738,-3.0429688 2084,-3.9472656 V -5 l -5,-3 -16.8184,6.9257812 -9.2168,-0.8378906 L 2053,-2 2046,-9 2030.3477,-3.1308594 2011,-7 l -2,2 -9,2 -0.2227,0.9277344 -14.7949,-0.8691406 L 1985,-3 l -8,-8 -17.7559,7.8925781 -5.3164,-0.7597656 L 1954,-4 l -10,-11 -10,7 h -17 l -7,-7 -15.8457,10.8945312 L 1879,-6 l -2,-2 -15,6 h -1 L 1842,-17 1830.1699,-3.1972656 1810.957,-7.7714844 1811,-8 l -3,-5 -20.3477,7.7519531 L 1774,-15 l -7,6 0.022,0.1855469 -19.2559,3.6679687 L 1740,-10 l -10,7 h -7 l -17,-13 -8,9 0.025,0.1152344 -15.1816,1.7851562 L 1672,-12 1659,-2 h -9 L 1639,-13 1620.6094,-2.3535156 1620,-3 1619.9414,-2.859375 1605,-15 1593.1543,-4.140625 1570,-8 l -2,4 0.1055,0.3164062 L 1564,-3 1538,-6 1525.623,-3.1445312 1505.9668,-10.630859 1506,-11 l -2,-3 -26,12 h -1 l -6,-7 -27.1699,4.8515625 L 1436,-11 1423.3965,-5.1835938 1401,-12 l -3,5 0.01,0.0625 L 1367,-5 l 0.2637,0.4746094 -8.7403,2.3828125 L 1349,-5 1348.5488,-4.3554688 1335,-15 l -10,9 0.066,0.1972656 -16.9394,3.5664063 L 1308,-3 l -7,-5 -6,2 -0.3066,1.125 -18.7813,1.7871094 L 1267,-12 1245.3535,-1.6464844 1245,-2 l -5,-2 -0.3906,0.609375 L 1233,-10 1208.4863,-2.4570312 1200,-10 1187.1133,-4.0527344 1171.9922,-4.9414062 1172,-5 l -1,-2 -4,-6 -26.3008,8.7675781 L 1132,-11 1124.2227,-5.1660156 1097,-11 l -1,2 -1.9258,1.9257812 -23.0566,-1.84375 L 1071,-9 l -7,-5 -8.9629,8.9628906 L 1030,-6 1029.3594,-5.359375 1029,-6 l -3,1 -0.3008,0.8300781 L 1001,-6 1001.1055,-5.4472656 996,-8 l -7.80273,4.8769531 -24.25,-3.7304687 L 964,-7 V -8 -9 L 941.57617,-2.4589844 930,-15 910,-4 897.92578,-7.7148438 898,-8 896,-11 867.70703,-3.1953125 862,-7 847.21484,-2.0722656 837.96875,-2.9121094 838,-3 l -10,-9 -5,3 -0.043,0.3476562 -16.5293,5.5097657 -6.53906,-1.6347657 L 800,-5 794,-14 771.56055,-5.21875 760,-11 752.04688,-4.8144531 752,-5 747,-4 746.73633,-3.6601562 725,-15 l -6.55078,8.4238281 -8.7793,2.3925781 L 692,-14 v 1 l -0.0391,0.439453 L 667.41406,-2.1757812 658,-5 652,-1.5722656 V -2 H 642 L 641.57617,-1.2246094 625,-10 614.07617,-1.0625 601,-1.9335938 V -2 l -10,-5 -0.39648,1.0136719 -30.00586,0.9667969 L 560,-6 l -4,-1 -2,2 -0.24023,1 H 532 l -9,-4 -6,4 -11.27539,3.7578125 L 490,-14 471,-1 467.68555,-0.171875 457,-6 h -1 -24 l -10,-5 -5.95312,5.953125 L 397.99023,-5.9511719 398,-6 389,-15 371,-3 369.125,-1.125 357.75,-2.75 358,-3 355,-6 h -21 l -14,-5 -4,5 0.10547,0.3554688 -13.41797,2.515625 L 286,-10 278,-3 273.58789,-1.234375 253,-13 247.03906,-7.0390625 225.19922,-7.9492188 225,-9 l -5,-5 -7,4 -0.0527,1.2871094 L 203.57422,-6.15625 185,-13 l -2,1 0.0586,0.376953 -23.64257,9.4570314 -4.6875,-1.3398438 L 155,-4 l -3,-3 -21.0957,1.9179688 z m 2167,35 -4,-3 -7,3 -4,15 13,3 5,-4 z m -133,2 -6,-3 -8,1 -6,6 v 3 l 5,5 12,-1 z m -420,2 -3,12 6,4 h 9 l 4,-4 -4,-12 -8,-2 z m -187,-7 -4,-4 -10,10 4,7 h 5 z m -450,-3 -3,-3 -15,4 -3,4 v 7 l 2,4 20,-1 z m -296,9 -7,-2 -6,12 4,7 13,-6 z m -174,-2 -6,-3 -11,10 v 1 l 1,1 9,9 3,-5 z m -24,0 h -14 l 3,11 15,-4 v -1 z m -198,-6 -7,-4 -2,1 -2,3 v 16 l 8,1 4,-4 z m -130,4 -4,-7 -16,7 3,11 5,3 9,-4 z M 99,23 94,19 h -8 v 19 l 9,4 5,-3 1,-5 z M 2050.4004,4.0664062 2050.8379,5.234375 2045,13.666016 Z M 1374,8 l -2,13 5,6 12,-6 1,-3 V 17 Z M 39,9 33,21 v 1 l 7,4 7,-7 z m 89,0 -5,4 v 5 l 2,6 17,-5 v -3 z m 1704,0 -16,9 3,12 22,-9 -2,-5 z m -775,1 -4,4 -2,14 h 2 l 16,-4 v -7 z m 719.1855,0.832031 0.8165,3.673828 L 1776,11 Z M 448,11 l -6,5 1,9 6,2 2,-2 1,-6 z m 243,0 -8,3 5,13 12,1 1,-1 3,-7 -3,-5 z m 182,0 -1,3 5,14 9,-2 3,-8 v -2 z m 743,0 -5,4 5,14 13,-2 1,-8 z m 748,0 -8,3 -5,8 v 4 l 4,3 8,1 3,-1 4,-8 v -4 z m -2044,1 -11,6 v 9 l 1,2 18,-9 z m 512,0 -10,3 -3,3 3,9 h 12 l 4,-5 z m 207,0 -2,5 4,12 3,1 4,-3 2,-14 z m 892,0 -13,1 -1,1 1,12 12,4 6,-14 z m -826,0.5 11,0.5 1.1562,0.578125 L 1117,14 l -2,-1 z m -671,0.5 -12,4 -1,6 7,8 h 4 l 8,-5 -1,-11 z m 292,0 -9,7 11,12 4,-2 3,-8 -3,-7 z m 444,0 -7,6 v 6 l 9,8 4,-1 3,-13 z m 340.502,0 6.6035,1.761719 L 1517,15 Z m 172.498,0 -12,5 1,4 9,11 2,-1 7,-13 z m 197,0 -14,4 8,11 1,1 2,-2 6,-10 z M 382.5332,13.498047 376,14 l -1.50195,6.505859 1.3125,-6.560547 z M 869,14 l -11,10 2,6 12,2 3,-3 z m 375,0 -15,7 2,5 14,1 z m 27,0 -6,2 -7,8 -3,6 6,6 15,-6 -2,-13 z m 205,0 v 2 l 4,16 9,-9 z m 97,0 -18,5 1,9 11,1 8,-11 z m 330,0 -4,5 1,10 3,4 h 4 l 7,-7 -2,-11 z m 355,0 -4,2 -1,2 3,15 8,1 3,-2 4,-14 z m 76,0 -5,2 6,14 12,-3 -1,-4 z m -2136,1 -9,1 -3,3 -1,12 17,-2 -4,-13 z m 268,0 -11,4 -1,6 h 9 l 4,-8 z m 36,0 -1,2 -1,2 3,13 13,3 V 23 Z m 703,0 -17,3 8,15 h 4 z m 807,0 -13,8 5,7 h 9 l 4,-9 z m 103,0 -7,7 11,10 8,-6 v -2 z m -1914,1 3,12 3,2 10,-8 v -2 l -6,-4 z m 803,0 -15,2 2,13 12,-5 4,-8 z m 329,0 -8,6 v 4 l 7,7 11,-4 3,-3 v -4 l -10,-6 z m -397,1 -12,2 -1,1 -4,10 8,6 12,-7 v -8 z m 374,0 -4,3 -5,13 3,3 5,4 12,-14 v -3 z m 111,0 -10,7 2,8 8,4 1,-2 1,-15 z m 124,0 -4,10 9,3 3,-3 -1,-7 z m 421,0 -3,2 1,10 6,4 5,-3 1,-11 z m 332,0 -11,2 3,11 h 1 l 11,-5 V 20 Z M 14,18 -5,22 0,33 12,28 16,20 Z m 457,0 -4,10 4,9 10,-1 3,-13 z m 111,0 -8,1 v 1 l -1,10 v 1 l 11,4 2,-4 -3,-11 z m 392,0 -4,4 4,11 13,-1 -2,-13 -1,-1 z m 44,0 -9,1 -3,8 4,5 12,-3 -2,-9 z m 101,0 -8,10 8,10 6,-4 V 21 Z m 68,0 -6,1 -2,14 7,3 10,-2 z m 524,0 -1,1 2,14 3,5 12,-4 3,-12 z m 174,0 -5,11 17,1 -2,-11 z m 54,0 -6,13 1,4 12,7 v -1 l 3,-8 -2,-11 -5,-4 z m 93,0 -4,3 4,10 9,2 5,-4 -5,-9 z m 36,0 -6,8 -1,3 3,3 8,-1 9,-12 z m -1986,1 -10,1 -2,3 -1,9 12,6 4,-1 V 20 Z m 37,0 -17,4 3,10 16,-6 v -1 z m 646,0 -6,1 -1,1 v 6 l 9,11 9,-7 z m 50,0 -16,2 4,10 7,7 7,-4 2,-6 -3,-9 z m 611,0 -1,15 11,1 5,-6 v -9 z m 438,0 -15,6 11,9 11,-4 z m 97,0 -11,2 2,12 11,-4 z m 19,0 v 1 l -1,11 6,5 9,-11 -1,-2 z m 103,0 v 1 l -10,12 9,6 h 10 l 2,-2 V 26 25 Z m 121,0 -3,1 -5,9 2,14 h 3 l 13,-20 -2,-4 z M 627.49805,19.5 630.07227,19.867188 630,20 Z M 496,20 l -9,4 -3,12 2,2 11,-2 2,-3 z m 29,0 -6,4 v 10 l 11,-2 3,-10 v -1 z m 125,0 -14,4 1,7 2,4 9,-2 3,-13 z m 244,0 -3,8 1,4 18,2 2,-4 z m 50,0 v 9 l 1,2 9,3 2,-2 3,-10 -5,-2 z m 451,0 -2,4 7,13 h 3 l 8,-5 -2,-8 z m 854,0 -10,1 -5,13 h 1 15 l 2,-1 z m -2229,1 -3,9 4,9 h 4 l 5,-14 -1,-1 z m 1499,0 -3,8 v 4 l 12,5 3,-8 -4,-7 z m 58,0 -7,10 8,8 1,1 9,-5 1,-7 -1,-5 z m 590,0 -1,1 v 4 l 1,4 9,5 4,-9 -3,-4 z m -1619,1 -11,1 -3,10 3,3 h 14 l 1,-4 -2,-8 z m 207,0 -16,1 -3,9 7,5 5,1 7,-11 z m 94,0 -9,2 -3,5 3,8 h 13 l 3,-5 -2,-7 z m 112,0 -3,10 13,2 -4,-11 z m -800,1 -9,5 v 2 l 20,4 z m 1679,0 -19,8 v 2 l 8,5 13,-13 z m 267,0 -9,3 v 10 h 18 l 2,-3 z m -1888,1 -10,9 v 8 l 11,1 6,-7 z m 116,0 -1,12 6,5 9,2 5,-7 -8,-8 z m 1880,0 -12,19 7,2 h 2 l 9,-10 z m 160,0 -4,7 10,8 10,-9 z m -884,1 -9,9 -1,1 4,5 9,4 2,-1 V 29 l -3,-4 z m -1459,2 -5,13 3,1 9,-9 -2,-2 z m 1814,0 -2,15 8,8 3,-1 3,-12 z m -1242,1 -15,4 -2,4 1,10 9,1 8,-18 z m 1313,0 -7,9 2,4 4,3 h 8 l 7,-7 -2,-5 z m 245,0 -7,8 1,6 h 2 l 6,-10 z m 21,0 -4,8 2,5 12,1 -2,-12 z m 120,0 -10,5 12,12 h 2 l 1,-13 z m -1930,1 -3,2 -3,2 4,7 10,9 7,-17 z m 315,0 -6,6 16,12 2,-17 z m 381,0 -13,4 10,12 h 1 l 4,-3 V 32 Z m 92,0 -8,6 5,8 7,-1 3,-6 z m 161,0 -9,12 1,3 3,4 h 4 l 8,-5 v -7 z m 69,0 -8,4 v 2 l 2,6 5,3 2,-1 4,-5 z m 258,0 -8,4 9,8 4,-5 -1,-2 z m 669,0 -6,3 -2,14 3,2 12,-3 2,-3 v -1 z m -1901,1 -8,2 -2,2 2,5 3,2 h 5 l 4,-7 z m 25,0 -8,4 11,14 h 7 l -4,-17 z m 315,0 -6,9 3,3 8,4 1,-2 2,-5 z m 336,0 -15,1 v 11 l 10,2 7,-11 z m 257,0 -2,2 3,12 2,1 5,-8 -2,-2 z m 150,0 v 12 l 4,2 3,-1 5,-9 -1,-3 z m 629,0 -8,5 -1,3 2,9 11,-1 2,-2 -1,-10 z M 14,31 0,36 l -2,10 14,3 7,-8 z m 188,0 -15,2 -1,1 4,8 11,2 4,-3 -1,-8 z m 69,0 -6,3 4,8 6,3 4,-2 2,-2 v -7 z m 734,0 -11,4 2,6 11,7 3,-1 -2,-13 z m 104,0 -8,2 7,13 2,1 6,-5 v -3 z m 181,0 -8,2 2,13 1,1 16,-9 -3,-4 z m 246,0 -3,8 2,4 7,1 5,-2 2,-9 -9,-2 z m 20,0 -3,2 -2,10 8,4 7,-15 z m 791,0 -10,3 -3,6 v 1 l 11,1 4,-8 z m -1326,1 -9,2 1,12 5,-2 4,-10 z m 210,0 v 1 l 2,11 4,2 4,-2 2,-10 v -1 z m 46,0 -14,6 1,8 10,3 7,-3 -2,-13 z m 351,0 -10,1 -2,2 -1,5 15,7 1,-13 z m 145,0 -2,1 6,11 12,2 2,-12 z m 190,0 -8,2 -2,7 10,3 4,-9 z m 69,0 -8,8 6,10 h 3 l 5,-2 3,-13 z M 41,33 31,43 l 1,2 11,4 1,-13 z m 113,0 -1,3 3,7 h 7 l 7,-8 z m 100,0 -5,3 5,17 10,-8 -5,-10 z m 55,0 -6,11 5,8 h 4 l 8,-5 v -4 z m 298,0 -6,11 5,2 7,-6 -1,-2 z m 16,0 -2,3 v 2 l 9,3 3,-5 -2,-3 z m 179,0 -11,5 2,6 11,1 4,-7 z m 138,0 -11,5 3,8 5,3 2,-1 2,-14 z m 287,0 -13,7 9,11 7,-7 z m 340,0 -7,15 3,3 12,-9 z m 437,0 -5,12 2,4 4,1 11,-12 -3,-5 z m -1879,1 -14,12 5,7 12,-10 1,-5 z m 436,0 v 3 l 1,3 4,1 h 2 l 2,-7 z m 333,0 1,11 1,1 2,-1 8,-4 1,-5 z m 22,0 -2,3 -2,6 6,8 11,-3 -4,-9 -8,-5 z m 28,0 -1,15 7,1 6,-4 -4,-9 z m 467,0 -6,5 7,8 5,-3 2,-6 z m 638,0 -4,3 -3,11 7,2 9,-9 v -4 l -2,-3 z m -1659,1 -6,14 2,7 13,-13 -2,-7 -6,-1 z m 39,0 -5,12 v 2 l 11,4 8,-4 -11,-14 z m 144,0 -2,7 9,1 v -6 z m 674,0 -2,10 9,6 4,-5 -1,-7 -5,-4 z m 128,0 -13,4 -6,12 2,2 16,-2 5,-6 z m 334,0 -15,4 5,8 12,-1 1,-3 v -3 z m 19,0 -12,5 v 3 l 13,4 4,-8 z m 144,0 -10,4 -2,9 7,3 10,-2 1,-1 -5,-13 z m -746,1 -5,4 v 2 l 11,7 h 3 l 1,-10 z m 17,0 -4,3 -1,10 4,2 9,1 4,-7 -6,-9 z m 372,0 -6,10 16,4 3,-4 -1,-5 z m 283,0 -1,2 -1,6 v 1 l 9,1 1,-2 1,-4 z m 178,0 -3,2 -5,8 2,2 5,3 8,-8 -2,-3 z m 97,0 -7,1 v 3 l 5,8 4,-1 4,-7 z m -1927,1 -14,2 -1,5 9,11 9,-4 2,-4 z m 1032,0 -4,2 -3,6 3,6 h 10 V 40 Z m 591,0 -7,4 v 6 l 3,6 h 4 l 4,-8 z m 501,0 -3,2 3,9 2,2 h 4 l 3,-5 v -5 z m -2040,1 -5,7 1,4 6,7 6,-5 V 40 l -7,-2 z m 274,0 -1,2 2,8 1,1 6,-2 1,-1 v -6 z m 27,0 -9,1 v 7 l 9,3 1,-1 1,-8 z m 118,0 -7,2 -2,6 v 1 l 1,1 14,-3 h 1 l -1,-3 z m 190,0 -1,6 7,9 h 10 l -2,-15 z m 586,0 -1,1 -2,6 6,6 h 6 l 2,-7 v -5 z m 507,0 -7,7 4,9 13,-2 3,-7 z m -1757,1 -7,9 2,3 10,2 3,-8 -4,-6 z m 157,0 -7,5 v 3 l 6,7 7,-10 z m 486,0 -5,3 -4,6 3,4 8,5 h 2 l 2,-10 z m 653,0 -4,4 -1,5 8,2 6,-7 -3,-4 z m 630,0 3,7 11,4 2,-3 -2,-7 z m -512,1 -7,4 1,4 12,4 3,-2 z m 493,0 -6,9 8,2 8,-11 z m 175,0 -1,1 -1,12 11,-3 -3,-10 z m -1514,1 -4,11 2,4 9,-10 -3,-4 z m 658,0 -5,6 8,7 h 3 l 3,-5 -7,-8 z m 333,0 -3,6 2,4 7,1 1,-11 z m 168,0 -10,8 9,5 6,-10 -2,-3 z m -1800,3 -5,2 -2,5 14,11 3,-5 -1,-2 -4,-6 z m 1107,0 -2,8 3,7 9,-2 v -4 l -7,-9 z m 1170,2 -13,6 -2,4 12,5 5,-12 z m -538,1 -6,1 -1,3 1,7 1,1 h 6 l 4,-7 z m 83,0 -6,1 1,12 h 3 l 4,-6 z m 410,0 -1,2 5,10 h 2 l 7,-6 -2,-5 z m -2204,1 -7,6 v 2 l 10,2 3,-3 z m 162,0 -1,2 5,7 1,1 5,-6 -2,-4 z m 1326,0 -2,3 5,4 h 1 l 3,-3 -1,-1 z m 370,0 -9,8 3,6 1,2 7,-1 6,-11 -2,-2 z m -1776,1 -2,2 v 6 h 1 l 7,-5 -1,-2 z m 697,0 -5,3 7,7 2,-1 v -4 z m 212,0 -2,3 1,3 2,1 3,-4 z m 299,0 -5,3 -2,5 4,5 h 1 l 7,-8 z m 89,0 -2,1 5,14 4,-1 7,-8 v -2 z m 73,0 -1,11 5,4 h 5 l 5,-10 z m 128,0 -10,1 -2,6 2,5 11,-3 z m 199,0 -3,5 1,2 3,2 1,-1 -1,-6 z m 41,0 v 1 l -2,5 1,11 1,1 5,-1 7,-13 -1,-1 z m 376,0 -12,4 2,12 17,4 1,-5 z m -1925,1 -8,7 2,2 6,2 3,-10 z m 840,0 v 7 h 1 5 l 1,-4 -5,-3 z m 202,0 v 1 l 1,2 2,-1 v -1 z m 207,0 -9,4 5,8 h 5 l 3,-7 z m -1652,1 -4,3 3,7 15,8 4,-5 -5,-10 z m 1043,0 -8,4 1,6 3,5 4,-1 2,-13 z m 4,0 -1,16 7,2 1,-15 z m 263,0 -12,8 8,5 6,-4 2,-6 z m 508,0 -1,1 2,5 9,1 -1,-6 z m -710,1 -10,2 -2,10 6,2 11,-5 -3,-8 z m 444,0 -3,1 2,6 7,-1 -1,-3 -1,-1 z m 663,0 1,10 3,2 h 5 v -7 l -8,-5 z m -1507,1 4,8 9,3 -2,-11 z m 576,0 -5,1 v 10 l 2,1 7,-7 -3,-5 z m 796,0 -2,1 v 5 l 4,1 4,-1 -2,-5 z m -1982,1 -5,6 2,2 h 11 1 v -1 z m 494,0 -2,8 12,5 5,-3 -3,-7 -6,-3 z m 743,0 -3,2 3,3 3,-3 z m 348,0 -2,3 1,4 10,3 1,-1 -2,-4 z m 319,0 -5,12 h 16 l 1,-5 -8,-6 z m -1758,1 -7,5 12,8 6,-5 -2,-5 z m 529,0 v 1 h -1 l 2,4 h 6 v -3 z m 1194,0 -6,13 3,1 12,-4 -3,-6 z m -1645,1 -3,1 2,5 5,-2 -1,-1 z m 622,0 -2,1 -2,9 4,3 9,-1 -2,-11 z m 595,0 -2,1 v 1 l 4,5 2,-2 -1,-5 z m 637,0 -2,1 -2,6 2,4 h 8 l 1,-1 z m 130,0 -4,3 -3,4 3,8 8,-6 -1,-8 -1,-1 z m -1633,1 -1,6 3,1 3,-5 -3,-2 z m 302,0 -2,8 13,7 4,-5 -7,-10 z m -273,1 -5,3 2,8 h 4 l 2,-5 z m 435,0 -4,6 1,1 h 6 v -6 l -1,-1 z m 42,0 v 3 l 2,2 4,-3 v -2 h -1 z m 760,0 -5,1 -2,3 4,2 3,-1 z m 336,0 -3,6 h 1 2 l 4,-3 -2,-3 z m -1735,1 -1,1 v 2 l 2,2 4,-1 -1,-3 z m 270,0 -5,5 2,3 11,2 v -6 z m 1555,1 v 3 l 5,13 2,1 h 5 l 2,-2 1,-3 -4,-8 z m -2243,4 -3,4 5,8 5,2 6,-7 -2,-4 z m 109,0 -12,5 2,8 h 1 10 z m 617,0 -1,1 1,1 1,-2 z m -516,1 -11,3 -2,2 5,10 2,1 4,-3 5,-10 v -1 z m 441,1 v 1 l 3,6 5,-2 v -4 -1 z m 456,0 -3,13 h 10 l 4,-11 -3,-1 z m 1116,0 -2,1 -1,4 v 6 h 1 12 l -1,-6 z m -1576,1 -9,6 v 3 l 3,4 h 6 l 5,-3 z m 762,0 v 1 h 1 z m 183,0 -8,3 -1,1 -1,7 10,1 v -1 z m -599,1 -10,4 3,8 h 9 l 3,-3 v -5 -2 z m 789,2 -3,2 1,3 4,-2 v -2 z m 89,0 -8,1 v 10 l 3,4 11,-5 -5,-9 z m -1735,1 -3,2 -2,6 2,1 7,-3 1,-4 -1,-1 z m 754,0 v 6 l 10,7 4,-3 -7,-8 z m 575,0 -9,10 14,5 3,-3 v -2 l -3,-8 v -1 z m 87,0 -7,5 -1,1 1,2 12,5 5,-2 z m -1382,1 -6,3 v 8 l 1,1 8,-3 v -7 l -1,-1 z m -152,1 -8,9 2,7 15,-8 2,-3 h -1 z m 1752,0 -1,1 1,2 2,1 1,-1 -1,-3 z M 306,74 v 6 l 2,2 8,-2 -3,-6 z m 1561,0 -4,8 2,1 9,-3 -1,-4 z m 173,0 -3,4 v 3 l 8,3 6,-5 -8,-5 z m -1965,1 -1,5 4,-1 1,-2 v -1 l -1,-1 z m 2045,0 v 2 h 2 v -2 z m 134,0 -2,6 2,1 h 4 V 77 Z M 96,76 v 1 l 4,3 2,-4 z m 945,0 -3,4 2,2 6,-2 1,-2 -1,-1 -4,-1 z m 109,0 -3,1 v 4 l 4,-2 v -3 z m -1129,1 -1,1 -1,1 2,2 2,-1 v -3 z m 254,0 -1,2 1,2 4,1 v -5 z m 657,0 -2,2 1,3 2,1 1,-5 z m 205,0 v 1 l 1,-1 z m 1037,0 v 2 l 3,3 1,-5 z m 95,0 -1,8 3,3 h 1 l 4,-8 -3,-2 z m -778,3 v 1 h 1 1 z m -282,3 -1,1 2,2 h 1 v -2 z m -7,1 -3,1 -1,9 13,-1 z m -459,1 -1,1 h 1 l 1,-1 z m 498,0 3,11 3,-1 8,-7 -1,-2 z m 1118,0 -1,10 2,1 6,-11 h -1 z m -2136,2 1,4 3,-3 -1,-1 z m 109,0 -3,2 v 7 l 6,4 3,-1 v -8 z m -178,3 v 1 h 1 v -1 z m 1917,0 v 1 h 1 v -1 z m 232,0 -1,8 10,7 8,-3 -5,-12 z m -1930,2 -6,9 h 8 l 3,-6 z m -261,1 -1,1 -1,1 h 1 2 z m 1109,2 -3,2 v 6 l 13,5 h 4 l 2,-5 z m 930,1 v 4 h 3 v -1 l -2,-3 z M 766,98 v 1 h 1 v -1 z m -567,4 -10,8 -1,6 3,2 9,3 2,-17 z m 1687,0 v 1 h 1 v -1 z m -874,1 -5,10 4,5 6,-2 -2,-11 z m 1165,0 -3,1 v 1 l 1,3 v 1 l 2,-1 h 1 v -4 z m -1820,1 -4,3 3,7 4,-4 v -3 z m 1558,0 v 1 h 1 v -1 z m -1608,3 -1,1 -1,8 v 2 l 12,-4 -4,-7 z m 876,2 v 1 l 1,1 h 1 v -1 -1 h -1 z m 752,0 1,1 v -1 z m 326,0 1,2 h 2 l -1,-2 z m 58,2 -3,2 -2,4 2,1 5,-4 1,-2 z m -2081,1 h 1 z m 2003,2 v 1 l 2,1 v -1 -1 z m -235,1 -1,3 v 4 h 5 l 3,-4 -1,-2 z m -139,2 -1,2 3,3 h 1 l 2,-3 z m -684,9 -1,1 v 1 h 2 l 1,-2 z m -1047,1 -3,1 v 1 h 3 l 1,-1 z")]),O),H(Q,"path",F([S(K,"id","polygon1246"),S(K,"class",""),S(K,"d","m 502,60 -11,3 -6,8 -9,-5 -10,4 -11,-6 -1,1 -18,4 v -1 l -18,3 h -1 l 3,8 -7,10 2,11 4,2 14,-3 v 17 l 6,3 6,15 9,6 v 2 l -3,11 v 5 l 11,7 v 6 l 10,9 -4,15 -17,-14 -3,1 -3,19 1,1 4,2 16,-3 -2,18 h 1 19 l 2,-5 12,2 7,15 -16,1 -5,-6 -14,9 6,12 -11,8 h -8 l -3,4 -1,1 -1,3 9,19 -10,8 -7,-5 -14,3 -8,-1 -2,5 11,17 -6,9 1,3 -4,11 3,4 7,4 7,-3 11,2 5,-4 v -16 l 18,4 6,-5 8,4 3,14 2,2 7,-2 9,1 7,-3 4,-8 16,3 8,9 8,1 3,6 9,7 h 6 l 7,-4 h 10 l 4,-1 3,-12 9,-5 4,2 1,15 11,1 2,6 14,4 1,9 4,5 14,-10 8,4 8,-3 4,4 13,-4 2,-13 12,4 10,-12 9,14 9,-7 -2,-13 15,2 2,1 -4,16 v 2 2 l 2,2 11,8 7,-4 -7,-12 4,-6 16,11 -6,7 3,14 16,2 2,-2 4,-7 -1,-1 3,-20 9,-2 7,8 14,-10 -4,-10 4,-3 4,-11 13,-4 5,18 3,1 14,-7 -16,-16 10,-3 15,10 -4,9 4,11 20,-2 1,-2 16,-8 1,-8 8,-5 6,1 3,16 16,-6 1,-3 13,-2 5,-5 9,2 7,-5 -6,-14 3,-7 -1,-4 19,-11 15,4 1,-1 17,2 1,1 19,6 -1,8 2,4 11,7 10,-7 6,1 8,-8 13,2 3,6 10,4 6,-3 11,-3 1,-1 -5,-16 -1,-1 -6,-3 -4,-12 -3,-4 -15,4 -2,-2 1,-17 h -1 l 5,-11 -13,-8 -5,3 -7,-10 -15,-7 -1,-2 5,-12 -1,-2 -16,-9 -2,-3 17,-13 v -1 l 1,-10 17,-4 v -16 l 18,8 3,4 14,-5 -3,-16 3,-3 14,-2 1,-15 1,-1 3,-12 -10,-6 -11,5 -7,-14 -15,3 -10,-3 -10,13 h -8 l -17,6 v 3 l -15,11 3,10 -4,10 1,6 -13,5 -10,-6 -10,7 h -2 l -7,-14 -2,-1 -16,13 -6,-4 -2,-9 -14,-5 1,-14 -5,-4 -16,9 -5,-11 -13,-1 -5,6 h -5 l -1,-1 -19,3 1,11 -5,4 -14,-5 v -10 l -3,-3 -9,-2 -3,5 h -16 l -3,-6 -14,2 -6,11 1,6 -12,6 -15,-5 -2,1 -2,13 -3,6 -19,-10 v -3 l -12,-9 -1,-1 -13,1 -3,6 -10,4 -7,-18 -13,8 -11,-11 -8,2 -5,-4 4,-17 -3,-5 h -16 l -2,-4 -12,-7 -5,18 h -12 l 2,-14 -7,-6 -9,4 -14,-4 -1,1 -14,-17 -4,2 -6,18 -13,-7 -3,-7 -18,11 3,-17 -7,-5 -6,6 -7,-2 -10,3 z m -111,240 -13,15 13,8 5,-2 3,-16 z m -3,30 -13,7 v 3 l 21,11 4,-1 v -2 z")]),O),H(Q,"path",F([S(K,"id","polygon1266"),S(K,"class",""),S(K,"d","m 1332,67 -12,9 -2,5 -16,-4 -7,4 -3,3 7,15 -8,10 1,3 -5,18 7,6 -4,10 3,5 18,4 -5,-24 15,-2 1,20 8,1 6,13 h 5 l 4,-14 10,2 6,-5 1,-8 9,-2 2,-21 7,-2 v -8 l -8,-8 7,-13 -21,-3 h -17 l -4,-10 -2,-4 z m 113,36 -13,4 -2,8 11,9 6,-13 -1,-7 z m -51,12 -5,3 v 12 l -16,7 7,11 -5,15 3,2 7,-2 13,-13 13,10 6,-9 14,-4 v -10 l -7,-5 2,-13 -17,-2 -1,1 z")]),O),H(Q,"polygon",F([S(K,"points","1652,189 1645,201 1660,205 1663,212 1645,219 1649,229 1662,231 1665,240 1657,252 1662,257 1663,269 1656,273 1646,273 1641,268 1632,269 1619,252 1613,252 1612,251 1607,241 1595,240 1591,242 1580,238 1581,222 1570,220 1564,212 1567,203 1559,193 1559,186 1574,180 1571,166 1576,162 1578,148 1580,144 1590,147 1599,130 1605,134 1615,128 1615,122 1625,115 1635,122 1643,120 1647,101 1659,102 1662,118 1677,116 1679,113 1695,116 1699,113 1713,116 1714,117 1723,120 1735,111 1744,114 1746,128 1735,133 1728,128 1710,144 1694,147 1688,143 1674,147 1672,152 1666,154 1665,167 1660,174 1662,184 1661,185 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1344")]),O),H(Q,"polygon",F([S(K,"points","95,149 92,149 91,149 70,151 69,166 49,167 48,165 50,152 36,145 30,158 16,154 21,137 34,136 38,132 36,122 16,117 13,113 0,116.54545 0,194.47368 8,197 12,205 27,197 33,206 45,205 47,218 54,221 64,215 72,219 84,211 85,212 99,214 101,204 116,204 117,218 137,216 138,215 130,198 134,194 134,192 129,182 115,185 112,167 105,165 99,153 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1360")]),O),H(Q,"path",F([S(K,"id","polygon1368"),S(K,"class",""),S(K,"d","m 1496,112 -6,11 2,11 2,2 11,2 -8,21 v 2 l 11,3 1,4 1,12 -5,3 -9,17 -13,-2 -7,18 19,5 -6,15 5,8 15,-11 v -9 l 9,-7 1,-2 -19,-13 18,-5 -2,-14 16,-3 -3,-14 1,-5 -6,-9 -12,6 -6,-20 6,-4 v -12 z m -26,107 -7,15 1,5 7,4 h 1 l 11,-7 -11,-17 z")]),O),H(Q,"path",F([S(K,"id","polygon1376"),S(K,"class",""),S(K,"d","m 1933,136 -17,2 -2,12 v 1 l -18,1 -1,1 3,9 -6,7 1,16 3,1 6,-2 16,16 h 7 l 1,14 3,4 19,-9 5,11 -4,10 4,6 -14,17 h 2 l 14,16 -2,3 -5,10 -1,2 7,14 -14,9 h -3 l -5,-6 -17,1 -3,2 -15,-2 -3,17 -8,1 -2,11 -16,-3 -4,5 -14,1 -4,6 -11,-2 -13,12 9,8 15,-15 v 22 l -7,2 -1,6 6,14 -1,1 -5,14 9,9 14,-12 1,-5 11,-3 7,-10 11,7 6,-10 11,6 9,-7 9,7 10,-18 h 1 l 5,-1 1,-5 18,-11 6,5 9,1 2,-3 16,-5 3,5 14,4 1,7 14,2 7,-12 7,1 7,-5 2,-7 10,-8 h 1 l 9,19 9,-1 3,-3 -4,-19 -10,-3 1,-11 h 12 l 6,-3 1,-9 7,-2 7,-6 v -10 l 8,-3 3,-8 10,-10 -8,-9 6,-10 h 11 l 2,-18 -2,-1 -3,-4 5,-12 5,-2 7,-5 5,3 10,-2 6,-8 17,2 2,-16 -1,-1 -1,-14 -19,-6 2,-10 -17,-7 -4,4 -7,3 -4,5 -17,-1 -2,1 -13,-12 -5,2 -4,19 -9,-2 -6,-5 v -4 l -15,-14 -4,4 -8,3 1,14 -7,6 8,12 -11,5 -10,-2 -2,13 -18,3 -1,2 -15,-3 -5,-12 h -1 l -13,-10 -7,3 -7,10 -10,-7 -6,-15 -3,-1 -1,-7 2,-9 1,-8 z m 287,14 -7,5 2,11 -2,4 -14,-1 -5,11 14,5 -6,19 18,-2 3,1 11,-1 1,2 3,2 13,1 9,-7 -12,-15 v -1 l 20,-7 -16,-16 v -7 l -2,-2 -18,1 -3,-2 z")]),O),H(Q,"path",F([S(K,"id","polygon1380"),S(K,"class",""),S(K,"d","m 2347,146 -12,9 v 11 l 3,4 -5,12 -13,2 -7,-16 -11,4 -2,1 -3,7 3,2 3,17 12,1 3,7 4,-1 19,11 3,-2 12,4 3,-1 10,5 14,-8 -1,-3 18,-23.68359 V 173.69922 L 2382,162 l -1,-6 -9,-4 -11,6 -10,-4 z")]),O),H(Q,"polygon",F([S(K,"points","1323,269 1329,265 1340,263 1341,260 1345,253 1365,256 1361,264 1342,266 1346,283 1326,280 1324,279 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1398")]),O),H(Q,"path",F([S(K,"id","polygon1406"),S(K,"class",""),S(K,"d","m 232,319 -7,2 -5,10 -3,3 -12,-6 -4,4 4,16 -9,2 1,19 h 1 l 6,10 -18,11 -2,6 1,3 2,1 17,-1 2,1 11,4 4,-3 -4,-19 -2,-2 7,-11 11,-3 4,-13 -3,-3 v -15 l 3,-5 z m -128,66 -9,8 v 3 h 1 l 18,4 -8,16 7,5 20,-11 -16,-12 1,-2 -7,-10 z m 29,25 -4,21 8,3 11,-5 v -2 l -14,-17 z")]),O),H(Q,"polygon",F([S(K,"points","2235,338 2234,342 2241,352 2246,351 2264,359 2270,351 2267,343 2255,339 2252,325 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1410")]),O),H(Q,"path",F([S(K,"id","polygon1412"),S(K,"class",""),S(K,"d","m 544,372 -14,15 5,5 v 10 l 6,6 10,-2 3,4 h 13 v 14 l 3,3 2,1 12,-3 7,-6 -13,-13 -8,-1 -5,-12 -10,-3 -2,-16 z m -21,49 -1,6 3,14 -5,10 23,4 -4,-15 8,-7 -8,-11 z m 36,29 -1,1 -14,5 -3,12 15,3 4,4 15,-6 -4,-16 z")]),O),H(Q,"polygon",F([S(K,"points","2400,400.26923 2381,401 2379,400 2371,400 2363,391 2369,382 2362,373 2364,370 2384,370 2386,368 2400,365.45455 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1414")]),O),H(Q,"polygon",F([S(K,"points","750,402 740,404 739,405 738,419 743,425 754,429 756,429 762,415 759,410 772,397 762,387 758,388 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1418")]),O),H(Q,"polygon",F([S(K,"points","1481,398 1480,397 1478,389 1492,380 1499,389 1492,400 1487,401 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1420")]),O),H(Q,"polygon",F([S(K,"points","2221,413 2220,400 2214,397 2200,408 2190,405 2184,407 2180,416 2183,423 2197,427 2206,419 2212,421 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1422")]),O),H(Q,"polygon",F([S(K,"points","1429,417 1442,417 1445,422 1438,434 1452,437 1447,449 1440,450 1437,468 1422,466 1422,449 1409,443 1401,454 1385,451 1388,437 1395,430 1393,419 1395,416 1411,416 1413,418 1415,432 1429,431 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1426")]),O),H(Q,"polygon",F([S(K,"points","458,484 457,498 453,500 438,494 436,491 436,487 450,480 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1430")]),O),H(Q,"polygon",F([S(K,"points","1831,533 1828,541 1802,538 1800,537 1820,523 1831,531 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1432")]),O),H(Q,"polygon",F([S(K,"points","1760,556 1760,569 1742,577 1739,575 1742,558 1757,553 "),S(K,"type","iceShield"),S(K,"class",""),S(K,"id","polygon1434")]),O),H(Q,"path",F([S(K,"id","polygon1436"),S(K,"class",""),S(K,"d","m 2131,599 -19,13 -5,-5 -5,-2 -9,5 -13,-3 -4,-4 h -7 l -6,13 17,8 v 1 l -4,7 5,12 1,4 1,1 -9,20 h -2 l -11,7 6,12 -3,8 h -3 l -13,-12 -10,4 -7,-6 -16,2 -3,7 3,11 -4,6 -3,1 -4,22 -7,1 v 1 l 1,18 -3,1 -2,16 8,6 -1,11 15,8 6,-3 -2,-15 18,-2 -6,15 10,5 11,-13 h 1 l 17,-6 v 16 l 9,9 h 2 l 5,-18 14,10 5,-15 7,-1 2,-2 17,-4 1,5 10,5 11,-7 8,1 3,-4 20,-1 3,-2 -1,-15 -2,-6 v -6 l -2,-3 -21,1 -1,-17 18,2 2,-5 -2,-14 4,-4 -1,-8 1,-2 2,-18 h -1 l -13,-15 h -4 l -5,-2 -13,5 -7,-6 5,-15 -4,-5 1,-6 -10,-11 4,-13 -4,-4 z")]),O),H(Q,"path",F([S(K,"id","polygon1442"),S(K,"class",""),S(K,"d","m 1172,792 -8,3 -4,9 2,4 -8,16 8,6 5,6 -1,4 7,14 h 3 l 11,-2 2,-5 6,-4 h 10 l 5,-6 1,-7 -5,-8 -1,-11 h -10 l -11,-5 -1,1 z m -116,29 -3,13 8,8 -2,10 -18,-2 -1,-2 -19,13 1,7 5,4 -7,17 -12,-3 -1,3 v 18 l 14,-4 v -11 l 17,-3 1,10 -16,5 7,14 10,-1 1,-1 17,5 2,2 h 4 l 11,6 11,-8 1,-2 18,2 5,-3 v -3 l -17,-18 v -1 l 8,-7 1,-1 15,-1 3,-12 11,-2 v -18 l -6,-1 -9,-11 h -6 l -3,-22 -9,8 -9,-5 -13,8 -4,-8 -15,-3 z")]),O),H(Q,"path",F([S(K,"id","polygon1444"),S(K,"class",""),S(K,"d","m 388,806 -6,15 -9,-1 -4,3 v 17 l -8,2 -9,-10 -14,6 -14,5 -6,13 4,3 -3,19 -4,12 4,6 -1,6 3,3 12,1 2,16 14,-5 2,-13 6,-3 16,12 v 4 l 15,1 5,-15 6,-2 1,-6 -1,-4 10,-15 5,-1 3,-17 5,-4 -3,-12 -20,-3 -4,-13 8,-7 -1,-6 z m 65,99 -5,4 3,13 3,7 16,-4 2,-4 -5,-15 z m 0,25 -8,5 -4,6 -18,1 -3,14 h -10 l -11,5 11,15 10,-4 2,-13 13,2 9,-13 14,8 v 1 l 6,2 2,4 h 14 l 8,-15 v -2 l -5,-3 -4,-1 h -1 l -19,-1 z")]),O),H(Q,"path",F([S(K,"id","polygon1450"),S(K,"class",""),S(K,"d","m 720,909 -4,20 -11,1 -4,-2 h -9 l -2,2 -3,7 1,2 -7,18 h -8 l -3,2 -7,-1 -13,19 1,2 16,1 4,10 2,1 6,11 -16,6 12,13 3,-1 8,7 13,1 5,-4 11,4 3,9 22,5 v -1 l 13,-8 10,8 5,-1 8,-8 1,-6 8,-1 14,14 8,-16 14,2 v -16 l -1,-2 2,-13 10,-4 1,-1 -12,-17 11,-5 3,-14 h -16 l -2,1 -12,-2 -2,-10 -1,-1 -13,-4 v -16 l -2,-2 -14,4 -2,2 -17,-8 -6,4 -10,-3 h -4 z")]),O),H(Q,"path",F([S(K,"id","polygon1454"),S(K,"d","m 61,958 -12,3 -2,3 1,9 -20,4 v 3 l 3,11 -1,6 7,12 h 1 l -9,19 1,5 -1,5 15,6 2,13 5,6 -5,10 -4,1 -8,7 -20,-10 -3,3 4,12 6,6 -12,15 -9,-4.0918 V 1176 h 101.66602 l 3.33398,-1 2,1 h 130 467 313 l 4,-1 0.666,1 H 1829 h 404 163.5 l 2.5,-1 1,-1.8887 v -61.2109 l -9,-0.9004 -7,-15 -9,-4 -6,1 -2,-2 v -10 l 9,-9 11,-2 v -12 l -4,-5 h -13 l -2,-12 -1,-2 2,-7 -3,-4 7,-18 -7,-6 -2,-8 15,-6 5,-6 v -1 l -16,-10 -1,-4 h -17 l -4,7 h -11 l -2,3 5,13 7,5 -1,4 -12,10 -4,-15 -9,-9 -2,2 -6,17 9,7 11,-2 8,11 -2,9 1,4 -9,13 3,5 -3,8 8,11 -1,4 -18,2 v 11 h -1 l -16,4 -3,-5 h -16 l -2,1 v 12 l -11,5 -3,5 -13,-1 -7,-5 -13,5 h -1 -12 l -9,-13 -5,-2 -3,2 -18,-3 -3,-3 -11,1 -5,-4 h -1 l -19,7 -2,-1 3,-27 -16,8 1,14 -11,3 -4,4 -2,13 -13,4 -10,-18 -14,13 2,6 -4,7 -8,1 -4,-3 -15,7 v 3 l -13,7 -10,-6 -9,4 -3,8 -11,-1 -3,-3 -14,11 4,8 -6,3 -20,-3 -1,3 -9,3 -11,-5 2,-10 -14,-13 -3,9 -2,14 -11,3 -3,-3 -18,4 -4,2 -9,-5 v -1 l -22,-1 -1,-12 -2,-3 -8,-1 -5,-16 v -1 l -13,4 -3,14 -15,-1 -5,3 h -11 l -11,-3 -4,-6 3,-11 -6,-6 -11,10 -2,6 -15,-1 -1,-11 2,-5 -9,-10 2,-13 h 2 l 10,-17 -13,-4 2,-15 h -15 l -4,6 h -14 l -2,-2 -7,-1 -13,12 -4,-1 -3,-3 -6,-2 -11,18 2,5 h 7 l 2,-1 13,1 6,12 17,-10 5,3 -2,19 h -1 l -1,11 v 1 l -2,12 -5,4 h -5 l -10,7 3,8 -10,7 -7,-7 h -9 l -2,-2 -14,3 -5,-4 v -8 l -21,-3 -1,-2 -13,-2 -7,2 -10,-1 -2,1 -12,-4 -9,10 -8,-4 -6,3 -10,-1 -6,-6 -5,2 -13,-3 -3,-15 -13,1 -3,3 -1,1 -8,5 -20,-7 -1,2 -20,3 2,14 -21,1 -8,-5 -1,-2 -17,3 -8,-5 -3,2 -12,-13 3,-4 1,-6 -16,-6 3,-10 16,-5 2,15 13,6 3,-8 13,-2 2,-11 v -1 l -3,-15 -13,2 -8,-9 -14,5 -2,2 -10,-2 -4,1 -3,16 -6,1 -10,-6 -9,4 -10,-13 h -2 l -8,21 1,2 -7,11 -11,-2 -1,1 -12,-14 h -2 l -5,-6 h -16 l -4,-4 -14,2 -2,4 -9,2 -1,16 -18,-5 -4,5 -9,-3 -13,18 h -1 l -7,-4 -3,-8 -1,-1 -11,-2 -1,-4 -22,1 5,-19 -2,-2 -18,9 -9,-17 v -1 l -8,21 -18,-8 3,-10 -13,-11 -10,7 1,11 -10,2 -3,15 -9,-2 -8,10 5,9 -2,4 -1,14 -12,-3 -12,-12 -9,-5 -13,7 -8,-4 2,-12 -3,-6 -7,-4 -6,5 -16,-3 -6,5 6,11 -14,12 -6,-3 -2,1 -6,-5 -18,3 -1,-6 -12,-3 -7,5 -15,1 -1,-7 4,-6 -2,-17 -19,3 v 1 l 1,9 -8,8 -8,-3 -12,10 -3,-1 -5,6 -12,-2 -4,16 -10,-7 -13,5 13,17 -27,-3 -1,3 h -9 l -7,-3 -14,16 -14,-15 v -5 l -4,-6 v -10 l -4,-4 -10,-1 -3,-2 -8,-1 -5,-17 h -1 l -13,2 -1,12 -15,8 -3,-4 -20,1 -2,3 -14,-2 -9,13 -7,-1 -3,-2 h -5 l -6,4 -6,10 h -12 v -15 l -1,-4 -18,8 -2,3 -13,2 -2,-2 -15,2 -5,-9 8,-13 -1,-1 -19,-5 -4,-9 -3,-2 -8,2 -9,-5 -16,5 -3,-1 h -5 l -6,-11 -17,-4 -2,-3 h -3 l -6,-2 -4,-17 -12,-2 -6,8 -8,-1 -10,-6 -7,4 -5,11 -15,-18 -8,5 h -5 l -8,-12 -17,5 -1,1 -11,6 -6,-13 -14,-1 -1,-2 -12,2 -2,-1 -8,-16 -4,-1 -9,14 -9,-3 -2,-4 -10,-5 -6,1 -4,11 h -14 l -11,-13 -5,1 -5,-1 -9,2 -3,-4 -18,-7 2,-14 -4,-5 h -1 l -16,9 v 1 l -17,9 -4,-11 v -10 l -16,-4 h -1 l -13,-3 -3,-7 -5,-6 H 80 l -3,-18 -10,-3 -1,-8 z m 2161,31 -7,5 2,9 -8,11 -4,-2 -9,-12 -8,12 -12,-6 -9,7 -5,-2 -3,-18 -11,4 -4,12 -15,-4 -5,2 7,18 -6,5 -13,-1 -2,10 8,12 1,9 -9,4 -4,-1 -13,7 9,13 8,-5 6,4 11,-10 -7,-12 14,-4 12,5 6,-18 h 5 l 15,13 6,-8 21,2 v -17 l 13,-7 17,-2 1,-11 -2,-4 11,-14 -5,-6 z m -155,34 -4,17 5,5 15,-7 3,-4 v -7 l -4,-3 z m -72,15 -2,3 h -14 v 15 l -6,3 -7,-1 -5,5 -10,-2 -7,-16 -9,1 -4,7 v 3 l 3,4 8,5 4,7 -9,8 1,10 -8,3 -2,13 8,8 5,-1 6,-6 13,2 2,-1 v -15 l 1,-1 17,-3 6,4 7,-1 9,5 12,-5 8,5 11,-10 -2,-6 3,-9 -12,-9 7,-4 6,-14 -22,3 -1,2 z m -1568,6 h 1 z m 687,2 -1,1 h 1 l 1,1 v -1 z m -641,3 v 1 l 1,3 3,-2 v -2 z m 1391,2 -16,5 -5,-3 -13,7 -5,-3 -12,1 -4,15 -16,-3 -4,10 10,12 12,-2 2,-2 13,5 8,-6 h 6 l 15,-8 v -4 l 16,-17 z m -1467,2 v 1 h 1 v -1 z m 597,0 1,1 v -1 z m -654,1 v 1 h 1 v -1 z m 889,7 v 3 l 1,4 2,2 4,2 3,-1 v -9 z m -520,1 1,1 v -1 z m 317,1 -1,1 v 6 l 1,1 5,-2 v -4 -1 z m -462,2 -1,1 -2,6 3,3 4,-3 -2,-6 z m 264,1 -1,1 -2,4 2,3 5,-3 -1,-4 z m 1084,0 -11,19 -4,-1 -2,-5 -16,-9 -2,6 2,16 v 1 l 2,8 14,3 9,-16 7,3 8,-3 1,-12 -5,-9 z m -1129,1 -2,4 4,3 2,-1 -3,-6 z m 676,5 -10,5 v 18 l 4,1 7,12 13,4 v -17 l 16,-3 5,6 9,1 5,-9 1,-7 -14,-6 -2,2 -16,-1 -6,16 -1,-1 -10,-20 z m -903,6 -1,1 2,1 v -1 z m 368,0 -1,7 3,6 9,-2 1,-9 -2,-2 z m -276,2 v 1 l 1,-1 z m 583,4 v 1 z m -440,5 v 1 h 1 v -1 z m -189,6 v 1 h 1 l 1,-1 h -1 z m 23,0 -3,2 3,9 4,3 3,-2 2,-7 z m 152,17 -1,5 1,1 h 3 v -4 z m 12,4 v 2 l 1,1 2,-2 v -1 z m 854,9 -3,1 8,18 17,-6 -1,-1 z m -888,13 -6,10 17,5 v -14 z")]),O)])),H(Q,"g",F([S(K,"inkscape:groupmode","layer"),S(K,"id","layer1"),S(K,"inkscape:label","Labels"),S(K,"style","display:inline")]),F([H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","-234.19965"),S(K,"y","709.50055"),S(K,"id","text709"),S(K,"transform","rotate(-59.37762)")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan707"),S(K,"x","-234.19965"),S(K,"y","709.50055"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("The vast continent of R")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1078.3359"),S(K,"y","47.320759"),S(K,"id","text815"),S(K,"transform","rotate(22.449543)")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan813"),S(K,"x","1078.3359"),S(K,"y","47.320759"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle")]),F([E("Programming")])),H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"x","1078.3359"),S(K,"y","97.434967"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),S(K,"id","tspan817")]),F([E("Ocean")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","209.73439"),S(K,"y","-71.457466"),S(K,"id","text1242"),S(K,"transform","rotate(45.986589)")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1240"),S(K,"x","209.73439"),S(K,"y","-71.457466"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Bay of Bayes")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","214.50117"),S(K,"y","400.50565"),S(K,"id","text1246"),S(K,"transform","rotate(-3.5262992)"),S(K,"inkscape:transform-center-x","-20.413001"),S(K,"inkscape:transform-center-y","1.4179341")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1244"),S(K,"x","214.50117"),S(K,"y","400.50565"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Sea 14")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","299.10535"),S(K,"y","344.67349"),S(K,"id","text1250"),S(K,"transform","rotate(37.849424)"),S(K,"inkscape:transform-center-x","-13.907201"),S(K,"inkscape:transform-center-y","15.846844")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1248"),S(K,"x","299.10535"),S(K,"y","344.67349"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Land of Dating")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","357.46152"),S(K,"y","576.42523"),S(K,"id","text1254"),S(K,"transform","rotate(30.154136)"),S(K,"inkscape:transform-center-x","-15.744578"),S(K,"inkscape:transform-center-y","10.872309")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1252"),S(K,"x","357.46152"),S(K,"y","576.42523"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("South Artefact Ocean")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","-437.99774"),S(K,"y","557.47095"),S(K,"id","text1258"),S(K,"transform","rotate(-61.581071)"),S(K,"inkscape:transform-center-x","-10.309419"),S(K,"inkscape:transform-center-y","-16.206225")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1256"),S(K,"x","-437.99774"),S(K,"y","557.47095"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Gulf of calibration")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","634.62994"),S(K,"y","424.33575"),S(K,"id","text1262"),S(K,"transform","rotate(33.699223)"),S(K,"inkscape:transform-center-x","-15.494072"),S(K,"inkscape:transform-center-y","11.752989")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1260"),S(K,"x","634.62994"),S(K,"y","424.33575"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Data Storage Avalon")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","634.00623"),S(K,"y","564.82593"),S(K,"id","text1266"),S(K,"transform","rotate(33.699223)"),S(K,"inkscape:transform-center-x","-15.494072"),S(K,"inkscape:transform-center-y","11.752989")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1264"),S(K,"x","634.00623"),S(K,"y","564.82593"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("(R)Markdown reef")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","332.49655"),S(K,"y","860.86316"),S(K,"id","text1339"),S(K,"transform","rotate(15.02823)"),S(K,"inkscape:transform-center-x","-18.04214"),S(K,"inkscape:transform-center-y","6.3837415")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1337"),S(K,"x","332.49655"),S(K,"y","860.86316"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Icy Plateau of Latex")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","640.65735"),S(K,"y","811.8045"),S(K,"id","text1343"),S(K,"transform","rotate(1.5599143)"),S(K,"inkscape:transform-center-x","-16.256403"),S(K,"inkscape:transform-center-y","11.543572")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1341"),S(K,"x","640.65735"),S(K,"y","811.8045"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle")]),F([E("Linked Open")])),H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"x","640.65735"),S(K,"y","845.21399"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),S(K,"id","tspan1345")]),F([E("Island")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1061.6815"),S(K,"y","-136.37398"),S(K,"id","text1349"),S(K,"transform","rotate(53.510639)"),S(K,"inkscape:transform-center-x","-10.068006"),S(K,"inkscape:transform-center-y","16.659193")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1347"),S(K,"x","1061.6815"),S(K,"y","-136.37398"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Shoals of Wikidata")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","819.34967"),S(K,"y","965.08252"),S(K,"id","text1353"),S(K,"transform","rotate(-1.9812092)"),S(K,"inkscape:transform-center-x","-19.803371"),S(K,"inkscape:transform-center-y","2.7586301")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1351"),S(K,"x","819.34967"),S(K,"y","965.08252"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Blogging Coast")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","503.2959"),S(K,"y","1220.7661"),S(K,"id","text1357"),S(K,"transform","rotate(-26.913675)"),S(K,"inkscape:transform-center-x","-18.67202"),S(K,"inkscape:transform-center-y","-5.6640496")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1355"),S(K,"x","503.2959"),S(K,"y","1220.7661"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Javascript Sea")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","381.1861"),S(K,"y","1080.525"),S(K,"id","text1361"),S(K,"transform","rotate(-26.913675)"),S(K,"inkscape:transform-center-x","-18.67202"),S(K,"inkscape:transform-center-y","-5.6640496")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1359"),S(K,"x","381.1861"),S(K,"y","1080.525"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Public Outreach Island")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","488.69992"),S(K,"y","685.71515"),S(K,"id","text1774"),S(K,"transform","rotate(-12.297004)"),S(K,"inkscape:transform-center-x","-20.102851"),S(K,"inkscape:transform-center-y","-4.8405568")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1772"),S(K,"x","488.69992"),S(K,"y","685.71515"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle")]),F([E("Jungle of")])),H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"x","488.69992"),S(K,"y","719.12463"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),S(K,"id","tspan1776")]),F([E("incomprehensible")])),H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"x","488.69992"),S(K,"y","752.53418"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),S(K,"id","tspan1778")]),F([E("statistics")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","475.84653"),S(K,"y","252.16711"),S(K,"id","text1782"),S(K,"transform","rotate(-5.9729606)")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1780"),S(K,"x","475.84653"),S(K,"y","252.16711"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("HighR mountain range")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","707.16949"),S(K,"y","432.37146"),S(K,"id","text1786"),S(K,"transform","rotate(-12.289979)"),S(K,"inkscape:transform-center-x","-19.885997"),S(K,"inkscape:transform-center-y","0.0015220918")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1784"),S(K,"x","707.16949"),S(K,"y","432.37146"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Bash Forests")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","325.50275"),S(K,"y","-919.94769"),S(K,"id","text1790"),S(K,"transform","rotate(71.880184)"),S(K,"inkscape:transform-center-x","-3.7779208"),S(K,"inkscape:transform-center-y","18.814873")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1788"),S(K,"x","325.50275"),S(K,"y","-919.94769"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Archaeological Theory Passage")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1297.9855"),S(K,"y","-400.19702"),S(K,"id","text1794"),S(K,"transform","rotate(45.565803)"),S(K,"inkscape:transform-center-x","-10.006552"),S(K,"inkscape:transform-center-y","17.142197")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1792"),S(K,"x","1297.9855"),S(K,"y","-400.19702"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Rolling Hills of Photography")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1056.0248"),S(K,"y","1007.8676"),S(K,"id","text1798"),S(K,"transform","rotate(-16.058922)"),S(K,"inkscape:transform-center-x","-19.62393"),S(K,"inkscape:transform-center-y","-1.665494")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1796"),S(K,"x","1056.0248"),S(K,"y","1007.8676"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Digital Fieldwork Desert")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1427.3667"),S(K,"y","1342.5848"),S(K,"id","text1804"),S(K,"transform","rotate(-20.93002)")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"x","1427.3667"),S(K,"y","1342.5848"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman';text-align:center;text-anchor:middle"),S(K,"id","tspan1802")]),F([E("South Artefact Ocean")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1617.7301"),S(K,"y","-926.66522"),S(K,"id","text1810"),S(K,"transform","rotate(44.474421)"),S(K,"inkscape:transform-center-x","-11.834589"),S(K,"inkscape:transform-center-y","13.726068")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1808"),S(K,"x","1617.7301"),S(K,"y","-926.66522"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("GIS Passage")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1848.709"),S(K,"y","-408.39664"),S(K,"id","text1814"),S(K,"transform","rotate(25.631027)"),S(K,"inkscape:transform-center-x","-16.021199"),S(K,"inkscape:transform-center-y","11.918389")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1812"),S(K,"x","1848.709"),S(K,"y","-408.39664"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Geophysics Marshes")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1478.6812"),S(K,"y","1066.475"),S(K,"id","text1818"),S(K,"transform","rotate(-16.058922)"),S(K,"inkscape:transform-center-x","-19.62393"),S(K,"inkscape:transform-center-y","-1.665494")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1816"),S(K,"x","1478.6812"),S(K,"y","1066.475"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("3D peak")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","774.11865"),S(K,"y","1516.2793"),S(K,"id","text1822"),S(K,"transform","rotate(-42.620968)"),S(K,"inkscape:transform-center-x","-17.416968"),S(K,"inkscape:transform-center-y","-9.4917185")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1820"),S(K,"x","774.11865"),S(K,"y","1516.2793"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Lake LIDAR")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1715.6658"),S(K,"y","-371.70309"),S(K,"id","text1826"),S(K,"transform","rotate(22.034727)"),S(K,"inkscape:transform-center-x","-16.380753"),S(K,"inkscape:transform-center-y","7.604309")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1824"),S(K,"x","1715.6658"),S(K,"y","-371.70309"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Spatial Data Wastelands")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1857.8152"),S(K,"y","125.45741"),S(K,"id","text1830"),S(K,"transform","rotate(3.481433)"),S(K,"inkscape:transform-center-x","-19.966129"),S(K,"inkscape:transform-center-y","4.7864199")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1828"),S(K,"x","1857.8152"),S(K,"y","125.45741"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Satellite Sea")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1928.8497"),S(K,"y","46.259201"),S(K,"id","text1834"),S(K,"transform","rotate(3.481433)"),S(K,"inkscape:transform-center-x","-19.966129"),S(K,"inkscape:transform-center-y","4.7864199")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1832"),S(K,"x","1928.8497"),S(K,"y","46.259201"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Big Datia")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","959.85822"),S(K,"y","1366.3275"),S(K,"id","text1838"),S(K,"transform","rotate(-45.304885)"),S(K,"inkscape:transform-center-x","-16.8386"),S(K,"inkscape:transform-center-y","-10.503359")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan1836"),S(K,"x","959.85822"),S(K,"y","1366.3275"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Machine Learning Mountains")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","671.63116"),S(K,"y","1028.9729"),S(K,"id","text2238"),S(K,"transform","rotate(-38.201327)"),S(K,"inkscape:transform-center-x","-18.106222"),S(K,"inkscape:transform-center-y","-8.1069245")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan2236"),S(K,"x","671.63116"),S(K,"y","1028.9729"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Isla DNA")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1088.3958"),S(K,"y","736.54938"),S(K,"id","text2242"),S(K,"transform","rotate(-13.401477)"),S(K,"inkscape:transform-center-x","-18.194865"),S(K,"inkscape:transform-center-y","-2.2701272")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan2240"),S(K,"x","1088.3958"),S(K,"y","736.54938"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Bio- and Zooarch Coast")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:26.66670036px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1437.9337"),S(K,"y","-293.51471"),S(K,"id","text2246"),S(K,"transform","rotate(18.998404)"),S(K,"inkscape:transform-center-x","-16.803955"),S(K,"inkscape:transform-center-y","7.9853467")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan2244"),S(K,"x","1437.9337"),S(K,"y","-293.51471"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66670036px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Python bay")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1206.5577"),S(K,"y","185.63713"),S(K,"id","text2250"),S(K,"transform","rotate(2.861159)"),S(K,"inkscape:transform-center-x","-19.323032"),S(K,"inkscape:transform-center-y","2.4058416")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan2248"),S(K,"x","1206.5577"),S(K,"y","185.63713"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("ABMtis")]))])),H(Q,"text",F([S(K,"xml:space","preserve"),S(K,"style","font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"),S(K,"x","1161.3313"),S(K,"y","-855.96277"),S(K,"id","text2254"),S(K,"transform","rotate(39.103562)"),S(K,"inkscape:transform-center-x","-12.336889"),S(K,"inkscape:transform-center-y","15.311423")]),F([H(Q,"tspan",F([S(K,"sodipodi:role","line"),S(K,"id","tspan2252"),S(K,"x","1161.3313"),S(K,"y","-855.96277"),S(K,"style","font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman'")]),F([E("Netlogostan")]))]))]))])))])),H(We,function(t){return t.N},F([S(g8,function(t){return t.P},F([dn(0)]))]),H(i3,Qt,F([0,0,200,200]),F([0,100,100,0]))),S(ft,x0(b),T(function(t,n){var e,r=Lt(n),a=Pt(n),i=S($,a,r);return F([B(pr,n,F([on(0),a7("#fcf9e9")]),F([S(D,"opacity","0.8")]),F([_(1===i.$?"":(a=i.a).Y+": "+a.as)])),(e=function(t){return 1===i.$?O:o(i.a)},{$:10,a:T(function(t,n){return e(t)})})])})),H(We,function(t){return t.N},F([S(C8,T(function(t,n){return F([I6(function(){switch(n.fs){case 0:return"#71c614";case 1:return"#FFCA00";default:return"#F5325B"}}())])}),H(n7,b,function(t){return F([O9(12)])},S(u8,"Teaching resource",S(g8,function(t){return t.P},F([O9(2),_7,Rt(.6),Ht(2),St("#292929")])))))]),A),h.$?an:(x=h.a,B(Jt,gn(96),gn(2),F([lt(7)]),F([E("x: "+W(wn(x.N))),E(" y: "+W(wn(x.P)))])))]));return S(G,O,F([S(J9,O,j(t?F([or]):O,F([E9,S(Wn,O,F([S(G9,O,F([S(G,F([S(D,"overflow","hidden"),S(D,"margin","auto"),S(D,"height","100%"),S(D,"width","100%")]),F([w]))]))])),S(Wn,O,F([S(G9,O,F([S(c7,O,O),S(G,O,F([S(tt,F([S(D,"font-size","30px")]),F([_("The didactic map of computational archaeology")])),S(tt,F([S(D,"display","inline-block"),S(D,"width","20px")]),O),_(" a project by the "),S(Q4,F([i8("https://sslarch.github.io")]),F([_("SIG SSLA")]))])),S(er,O,F([S(J9,O,F([S(Wn,F([w7]),F([S(G9,O,F([S(G,F([S(D,"display","inline-block"),S(D,"width","100%")]),F([V8(ut),_(" Filter the list ("+W(a3(A))+("/"+W(a3(f)))+") "),S(g7,F([{$:4,a:F([S(D,"float","right")])},ir,pn,{$:4,a:F([sn(O4)])}]),F([V8(st),_(" Clear filters")]))]))])),(n=O,{$:1,a:S(G,j(F([X("w-100")]),n),O)}),S(G9,O,F([S(_t,k0,S(G,O,F([B(ri,l.c6,l.bC,l.dw,l.V)])))]))]))]))])),H(gi,c,u,A)]))]))]))),C,y,k]))})(!1)});n1={Main:{init:A(z5)(0)}},t.Elm?function t(n,e){for(var r in e)r in n?"init"==r?x(6):t(n[r],e[r]):n[r]=e[r]}(t.Elm,n1):t.Elm=n1}(this); \ No newline at end of file